diff --git a/inc/api.php b/inc/api.php
index 55272e0d..3337c613 100644
--- a/inc/api.php
+++ b/inc/api.php
@@ -43,9 +43,7 @@ class Api {
$this->threadsPageFields = array(
'id' => 'no',
- 'bump' => 'last_modified',
- 'replies' => 'replies',
- 'images' => 'images',
+ 'bump' => 'last_modified'
);
if (isset($config['api']['extra_fields']) && gettype($config['api']['extra_fields']) == 'array'){
diff --git a/inc/config.php b/inc/config.php
index b2f62f5e..79631e79 100644
--- a/inc/config.php
+++ b/inc/config.php
@@ -523,11 +523,13 @@
// When true, users are instead presented a selectbox for email. Contains, blank, noko and sage.
$config['field_email_selectbox'] = false;
- // Attach country flags to posts. Requires the PHP "geoip" extension to be installed:
- // http://www.php.net/manual/en/intro.geoip.php. In the future, maybe I will find and include a proper
- // pure-PHP geolocation library.
+ // Attach country flags to posts.
$config['country_flags'] = false;
+ // Load all country flags from one file
+ $config['country_flags_condensed'] = true;
+ $config['country_flags_condensed_css'] = 'static/flags/flags.css';
+
/*
* ====================
* Ban settings
@@ -1071,6 +1073,9 @@
// Home directory. Used by themes.
$config['dir']['home'] = '';
+ // Location of a blank 1x1 gif file. Only used when country_flags_condensed is enabled
+ // $config['image_blank'] = 'static/blank.gif';
+
// Static images. These can be URLs OR base64 (data URI scheme). These are only used if
// $config['font_awesome'] is false (default).
// $config['image_sticky'] = 'static/sticky.gif';
@@ -1461,7 +1466,7 @@
// Whether or not to enable the 4chan-compatible API, disabled by default. See
// https://github.com/4chan/4chan-API for API specification.
- $config['api']['enabled'] = false;
+ $config['api']['enabled'] = true;
// Extra fields in to be shown in the array that are not in the 4chan-API. You can get these by taking a
// look at the schema for posts_ tables. The array should be formatted as $db_column => $translated_name.
diff --git a/inc/functions.php b/inc/functions.php
index 4c3f6a4e..488a4117 100644
--- a/inc/functions.php
+++ b/inc/functions.php
@@ -28,8 +28,25 @@ register_shutdown_function('fatal_error_handler');
mb_internal_encoding('UTF-8');
loadConfig();
+function init_locale($locale, $error='error') {
+ if (_setlocale(LC_ALL, $locale) === false) {
+ $error('The specified locale (' . $locale . ') does not exist on your platform!');
+ }
+ if (extension_loaded('gettext')) {
+ bindtextdomain('tinyboard', './inc/locale');
+ bind_textdomain_codeset('tinyboard', 'UTF-8');
+ textdomain('tinyboard');
+ } else {
+ _bindtextdomain('tinyboard', './inc/locale');
+ _bind_textdomain_codeset('tinyboard', 'UTF-8');
+ _textdomain('tinyboard');
+ }
+}
+$current_locale = 'en';
+
+
function loadConfig() {
- global $board, $config, $__ip, $debug, $__version, $microtime_start;
+ global $board, $config, $__ip, $debug, $__version, $microtime_start, $current_locale;
$error = function_exists('error') ? 'error' : 'basic_error_function_because_the_other_isnt_loaded_yet';
@@ -70,16 +87,43 @@ function loadConfig() {
$config[$key] = array();
}
- require 'inc/config.php';
if (!file_exists('inc/instance-config.php'))
$error('Tinyboard is not configured! Create inc/instance-config.php.');
+ // Initialize locale as early as possible
+
+ $config['locale'] = 'en';
+
+ $configstr = file_get_contents('inc/instance-config.php');
+
+ if (isset($board['dir']) && file_exists($board['dir'] . '/config.php')) {
+ $configstr .= file_get_contents($board['dir'] . '/config.php');
+ }
+ $matches = array();
+ preg_match_all('/[^\/*#]\$config\s*\[\s*[\'"]locale[\'"]\s*\]\s*=\s*([\'"])(.*?)\1/', $configstr, $matches);
+ if ($matches && isset ($matches[2]) && $matches[2]) {
+ $matches = $matches[2];
+ $config['locale'] = $matches[count($matches)-1];
+ }
+
+ if ($config['locale'] != $current_locale) {
+ $current_locale = $config['locale'];
+ init_locale($config['locale'], $error);
+ }
+
+ require 'inc/config.php';
+
require 'inc/instance-config.php';
if (isset($board['dir']) && file_exists($board['dir'] . '/config.php')) {
require $board['dir'] . '/config.php';
}
+ if ($config['locale'] != $current_locale) {
+ $current_locale = $config['locale'];
+ init_locale($config['locale'], $error);
+ }
+
if (!isset($__version))
$__version = file_exists('.installed') ? trim(file_get_contents('.installed')) : false;
$config['version'] = $__version;
@@ -124,6 +168,9 @@ function loadConfig() {
if (!isset($config['dir']['static']))
$config['dir']['static'] = $config['root'] . 'static/';
+ if (!isset($config['image_blank']))
+ $config['image_blank'] = $config['dir']['static'] . 'blank.gif';
+
if (!isset($config['image_sticky']))
$config['image_sticky'] = $config['dir']['static'] . 'sticky.gif';
if (!isset($config['image_locked']))
@@ -174,21 +221,6 @@ function loadConfig() {
if (preg_match('/^\:\:(ffff\:)?(\d+\.\d+\.\d+\.\d+)$/', $__ip, $m))
$_SERVER['REMOTE_ADDR'] = $m[2];
- if ($config['locale'] != 'en') {
- if (_setlocale(LC_ALL, $config['locale']) === false) {
- $error('The specified locale (' . $config['locale'] . ') does not exist on your platform!');
- }
- if (extension_loaded('gettext')) {
- bindtextdomain('tinyboard', './inc/locale');
- bind_textdomain_codeset('tinyboard', 'UTF-8');
- textdomain('tinyboard');
- } else {
- _bindtextdomain('tinyboard', './inc/locale');
- _bind_textdomain_codeset('tinyboard', 'UTF-8');
- _textdomain('tinyboard');
- }
- }
-
if ($config['syslog'])
openlog('tinyboard', LOG_ODELAY, LOG_SYSLOG); // open a connection to sysem logger
@@ -1057,7 +1089,7 @@ function clean() {
$query->execute() or error(db_error($query));
while ($post = $query->fetch(PDO::FETCH_ASSOC)) {
- deletePost($post['id']);
+ deletePost($post['id'], false, false);
}
}
@@ -1558,7 +1590,7 @@ function markup_url($matches) {
$markup_urls[] = $url;
$link = (object) array(
- 'href' => $url,
+ 'href' => $config['link_prefix'] . $url,
'text' => $url,
'rel' => 'nofollow',
'target' => '_blank',
diff --git a/inc/image.php b/inc/image.php
index ced3296f..eb8eb79b 100644
--- a/inc/image.php
+++ b/inc/image.php
@@ -338,10 +338,8 @@ class ImageConvert extends ImageBase {
$this->width,
$this->height,
escapeshellarg($this->temp)))) || !file_exists($this->temp)) {
- //if (!preg_match ('/sBIT: invalid/', $error)) {
- // $this->destroy();
- // error(_('Failed to resize image!'), null, $error);
- //}
+ $this->destroy();
+ error(_('Failed to resize image!'), null, $error);
}
if ($size = $this->get_size($this->temp)) {
$this->width = $size[0];
@@ -363,7 +361,7 @@ class ImageConvert extends ImageBase {
$this->width,
$this->height,
escapeshellarg($this->temp)))) || !file_exists($this->temp)) {
- if (!preg_match ('/sBIT: invalid/', $error)) {
+ if (!file_exists($this->temp)) {
$this->destroy();
error(_('Failed to resize image!'), null, $error);
}
diff --git a/inc/lib/geoip/GeoIPv6.dat b/inc/lib/geoip/GeoIPv6.dat
new file mode 100644
index 00000000..1c2658c5
Binary files /dev/null and b/inc/lib/geoip/GeoIPv6.dat differ
diff --git a/inc/lib/geoip/geoip.inc b/inc/lib/geoip/geoip.inc
new file mode 100644
index 00000000..16e8c392
--- /dev/null
+++ b/inc/lib/geoip/geoip.inc
@@ -0,0 +1,722 @@
+ 0, "AP" => 1, "EU" => 2, "AD" => 3, "AE" => 4, "AF" => 5,
+ "AG" => 6, "AI" => 7, "AL" => 8, "AM" => 9, "CW" => 10, "AO" => 11,
+ "AQ" => 12, "AR" => 13, "AS" => 14, "AT" => 15, "AU" => 16, "AW" => 17,
+ "AZ" => 18, "BA" => 19, "BB" => 20, "BD" => 21, "BE" => 22, "BF" => 23,
+ "BG" => 24, "BH" => 25, "BI" => 26, "BJ" => 27, "BM" => 28, "BN" => 29,
+ "BO" => 30, "BR" => 31, "BS" => 32, "BT" => 33, "BV" => 34, "BW" => 35,
+ "BY" => 36, "BZ" => 37, "CA" => 38, "CC" => 39, "CD" => 40, "CF" => 41,
+ "CG" => 42, "CH" => 43, "CI" => 44, "CK" => 45, "CL" => 46, "CM" => 47,
+ "CN" => 48, "CO" => 49, "CR" => 50, "CU" => 51, "CV" => 52, "CX" => 53,
+ "CY" => 54, "CZ" => 55, "DE" => 56, "DJ" => 57, "DK" => 58, "DM" => 59,
+ "DO" => 60, "DZ" => 61, "EC" => 62, "EE" => 63, "EG" => 64, "EH" => 65,
+ "ER" => 66, "ES" => 67, "ET" => 68, "FI" => 69, "FJ" => 70, "FK" => 71,
+ "FM" => 72, "FO" => 73, "FR" => 74, "SX" => 75, "GA" => 76, "GB" => 77,
+ "GD" => 78, "GE" => 79, "GF" => 80, "GH" => 81, "GI" => 82, "GL" => 83,
+ "GM" => 84, "GN" => 85, "GP" => 86, "GQ" => 87, "GR" => 88, "GS" => 89,
+ "GT" => 90, "GU" => 91, "GW" => 92, "GY" => 93, "HK" => 94, "HM" => 95,
+ "HN" => 96, "HR" => 97, "HT" => 98, "HU" => 99, "ID" => 100, "IE" => 101,
+ "IL" => 102, "IN" => 103, "IO" => 104, "IQ" => 105, "IR" => 106, "IS" => 107,
+ "IT" => 108, "JM" => 109, "JO" => 110, "JP" => 111, "KE" => 112, "KG" => 113,
+ "KH" => 114, "KI" => 115, "KM" => 116, "KN" => 117, "KP" => 118, "KR" => 119,
+ "KW" => 120, "KY" => 121, "KZ" => 122, "LA" => 123, "LB" => 124, "LC" => 125,
+ "LI" => 126, "LK" => 127, "LR" => 128, "LS" => 129, "LT" => 130, "LU" => 131,
+ "LV" => 132, "LY" => 133, "MA" => 134, "MC" => 135, "MD" => 136, "MG" => 137,
+ "MH" => 138, "MK" => 139, "ML" => 140, "MM" => 141, "MN" => 142, "MO" => 143,
+ "MP" => 144, "MQ" => 145, "MR" => 146, "MS" => 147, "MT" => 148, "MU" => 149,
+ "MV" => 150, "MW" => 151, "MX" => 152, "MY" => 153, "MZ" => 154, "NA" => 155,
+ "NC" => 156, "NE" => 157, "NF" => 158, "NG" => 159, "NI" => 160, "NL" => 161,
+ "NO" => 162, "NP" => 163, "NR" => 164, "NU" => 165, "NZ" => 166, "OM" => 167,
+ "PA" => 168, "PE" => 169, "PF" => 170, "PG" => 171, "PH" => 172, "PK" => 173,
+ "PL" => 174, "PM" => 175, "PN" => 176, "PR" => 177, "PS" => 178, "PT" => 179,
+ "PW" => 180, "PY" => 181, "QA" => 182, "RE" => 183, "RO" => 184, "RU" => 185,
+ "RW" => 186, "SA" => 187, "SB" => 188, "SC" => 189, "SD" => 190, "SE" => 191,
+ "SG" => 192, "SH" => 193, "SI" => 194, "SJ" => 195, "SK" => 196, "SL" => 197,
+ "SM" => 198, "SN" => 199, "SO" => 200, "SR" => 201, "ST" => 202, "SV" => 203,
+ "SY" => 204, "SZ" => 205, "TC" => 206, "TD" => 207, "TF" => 208, "TG" => 209,
+ "TH" => 210, "TJ" => 211, "TK" => 212, "TM" => 213, "TN" => 214, "TO" => 215,
+ "TL" => 216, "TR" => 217, "TT" => 218, "TV" => 219, "TW" => 220, "TZ" => 221,
+ "UA" => 222, "UG" => 223, "UM" => 224, "US" => 225, "UY" => 226, "UZ" => 227,
+ "VA" => 228, "VC" => 229, "VE" => 230, "VG" => 231, "VI" => 232, "VN" => 233,
+ "VU" => 234, "WF" => 235, "WS" => 236, "YE" => 237, "YT" => 238, "RS" => 239,
+ "ZA" => 240, "ZM" => 241, "ME" => 242, "ZW" => 243, "A1" => 244, "A2" => 245,
+ "O1" => 246, "AX" => 247, "GG" => 248, "IM" => 249, "JE" => 250, "BL" => 251,
+ "MF" => 252, "BQ" => 253, "SS" => 254
+ );
+ var $GEOIP_COUNTRY_CODES = array(
+ "","AP","EU","AD","AE","AF","AG","AI","AL","AM","CW",
+ "AO","AQ","AR","AS","AT","AU","AW","AZ","BA","BB",
+ "BD","BE","BF","BG","BH","BI","BJ","BM","BN","BO",
+ "BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD",
+ "CF","CG","CH","CI","CK","CL","CM","CN","CO","CR",
+ "CU","CV","CX","CY","CZ","DE","DJ","DK","DM","DO",
+ "DZ","EC","EE","EG","EH","ER","ES","ET","FI","FJ",
+ "FK","FM","FO","FR","SX","GA","GB","GD","GE","GF",
+ "GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT",
+ "GU","GW","GY","HK","HM","HN","HR","HT","HU","ID",
+ "IE","IL","IN","IO","IQ","IR","IS","IT","JM","JO",
+ "JP","KE","KG","KH","KI","KM","KN","KP","KR","KW",
+ "KY","KZ","LA","LB","LC","LI","LK","LR","LS","LT",
+ "LU","LV","LY","MA","MC","MD","MG","MH","MK","ML",
+ "MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV",
+ "MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI",
+ "NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF",
+ "PG","PH","PK","PL","PM","PN","PR","PS","PT","PW",
+ "PY","QA","RE","RO","RU","RW","SA","SB","SC","SD",
+ "SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO",
+ "SR","ST","SV","SY","SZ","TC","TD","TF","TG","TH",
+ "TJ","TK","TM","TN","TO","TL","TR","TT","TV","TW",
+ "TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE",
+ "VG","VI","VN","VU","WF","WS","YE","YT","RS","ZA",
+ "ZM","ME","ZW","A1","A2","O1","AX","GG","IM","JE",
+ "BL","MF", "BQ", "SS", "O1" );
+ var $GEOIP_COUNTRY_CODES3 = array(
+ "","AP","EU","AND","ARE","AFG","ATG","AIA","ALB","ARM","CUW",
+ "AGO","ATA","ARG","ASM","AUT","AUS","ABW","AZE","BIH","BRB",
+ "BGD","BEL","BFA","BGR","BHR","BDI","BEN","BMU","BRN","BOL",
+ "BRA","BHS","BTN","BVT","BWA","BLR","BLZ","CAN","CCK","COD",
+ "CAF","COG","CHE","CIV","COK","CHL","CMR","CHN","COL","CRI",
+ "CUB","CPV","CXR","CYP","CZE","DEU","DJI","DNK","DMA","DOM",
+ "DZA","ECU","EST","EGY","ESH","ERI","ESP","ETH","FIN","FJI",
+ "FLK","FSM","FRO","FRA","SXM","GAB","GBR","GRD","GEO","GUF",
+ "GHA","GIB","GRL","GMB","GIN","GLP","GNQ","GRC","SGS","GTM",
+ "GUM","GNB","GUY","HKG","HMD","HND","HRV","HTI","HUN","IDN",
+ "IRL","ISR","IND","IOT","IRQ","IRN","ISL","ITA","JAM","JOR",
+ "JPN","KEN","KGZ","KHM","KIR","COM","KNA","PRK","KOR","KWT",
+ "CYM","KAZ","LAO","LBN","LCA","LIE","LKA","LBR","LSO","LTU",
+ "LUX","LVA","LBY","MAR","MCO","MDA","MDG","MHL","MKD","MLI",
+ "MMR","MNG","MAC","MNP","MTQ","MRT","MSR","MLT","MUS","MDV",
+ "MWI","MEX","MYS","MOZ","NAM","NCL","NER","NFK","NGA","NIC",
+ "NLD","NOR","NPL","NRU","NIU","NZL","OMN","PAN","PER","PYF",
+ "PNG","PHL","PAK","POL","SPM","PCN","PRI","PSE","PRT","PLW",
+ "PRY","QAT","REU","ROU","RUS","RWA","SAU","SLB","SYC","SDN",
+ "SWE","SGP","SHN","SVN","SJM","SVK","SLE","SMR","SEN","SOM",
+ "SUR","STP","SLV","SYR","SWZ","TCA","TCD","ATF","TGO","THA",
+ "TJK","TKL","TKM","TUN","TON","TLS","TUR","TTO","TUV","TWN",
+ "TZA","UKR","UGA","UMI","USA","URY","UZB","VAT","VCT","VEN",
+ "VGB","VIR","VNM","VUT","WLF","WSM","YEM","MYT","SRB","ZAF",
+ "ZMB","MNE","ZWE","A1","A2","O1","ALA","GGY","IMN","JEY",
+ "BLM","MAF", "BES", "SSD", "O1"
+ );
+ var $GEOIP_COUNTRY_NAMES = array(
+ "","Asia/Pacific Region","Europe","Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Curacao",
+ "Angola","Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Azerbaijan","Bosnia and Herzegovina","Barbados",
+ "Bangladesh","Belgium","Burkina Faso","Bulgaria","Bahrain","Burundi","Benin","Bermuda","Brunei Darussalam","Bolivia",
+ "Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Cocos (Keeling) Islands","Congo, The Democratic Republic of the",
+ "Central African Republic","Congo","Switzerland","Cote D'Ivoire","Cook Islands","Chile","Cameroon","China","Colombia","Costa Rica",
+ "Cuba","Cape Verde","Christmas Island","Cyprus","Czech Republic","Germany","Djibouti","Denmark","Dominica","Dominican Republic",
+ "Algeria","Ecuador","Estonia","Egypt","Western Sahara","Eritrea","Spain","Ethiopia","Finland","Fiji",
+ "Falkland Islands (Malvinas)","Micronesia, Federated States of","Faroe Islands","France","Sint Maarten (Dutch part)","Gabon","United Kingdom","Grenada","Georgia","French Guiana",
+ "Ghana","Gibraltar","Greenland","Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala",
+ "Guam","Guinea-Bissau","Guyana","Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","Indonesia",
+ "Ireland","Israel","India","British Indian Ocean Territory","Iraq","Iran, Islamic Republic of","Iceland","Italy","Jamaica","Jordan",
+ "Japan","Kenya","Kyrgyzstan","Cambodia","Kiribati","Comoros","Saint Kitts and Nevis","Korea, Democratic People's Republic of","Korea, Republic of","Kuwait",
+ "Cayman Islands","Kazakhstan","Lao People's Democratic Republic","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania",
+ "Luxembourg","Latvia","Libya","Morocco","Monaco","Moldova, Republic of","Madagascar","Marshall Islands","Macedonia","Mali",
+ "Myanmar","Mongolia","Macau","Northern Mariana Islands","Martinique","Mauritania","Montserrat","Malta","Mauritius","Maldives",
+ "Malawi","Mexico","Malaysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua",
+ "Netherlands","Norway","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia",
+ "Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestinian Territory","Portugal","Palau",
+ "Paraguay","Qatar","Reunion","Romania","Russian Federation","Rwanda","Saudi Arabia","Solomon Islands","Seychelles","Sudan",
+ "Sweden","Singapore","Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname",
+ "Sao Tome and Principe","El Salvador","Syrian Arab Republic","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo","Thailand",
+ "Tajikistan","Tokelau","Turkmenistan","Tunisia","Tonga","Timor-Leste","Turkey","Trinidad and Tobago","Tuvalu","Taiwan",
+ "Tanzania, United Republic of","Ukraine","Uganda","United States Minor Outlying Islands","United States","Uruguay","Uzbekistan","Holy See (Vatican City State)","Saint Vincent and the Grenadines","Venezuela",
+ "Virgin Islands, British","Virgin Islands, U.S.","Vietnam","Vanuatu","Wallis and Futuna","Samoa","Yemen","Mayotte","Serbia","South Africa",
+ "Zambia","Montenegro","Zimbabwe","Anonymous Proxy","Satellite Provider","Other","Aland Islands","Guernsey","Isle of Man","Jersey",
+ "Saint Barthelemy","Saint Martin", "Bonaire, Saint Eustatius and Saba",
+ "South Sudan", "Other"
+ );
+
+ var $GEOIP_CONTINENT_CODES = array(
+ "--", "AS","EU","EU","AS","AS","NA","NA","EU","AS","NA",
+ "AF","AN","SA","OC","EU","OC","NA","AS","EU","NA",
+ "AS","EU","AF","EU","AS","AF","AF","NA","AS","SA",
+ "SA","NA","AS","AN","AF","EU","NA","NA","AS","AF",
+ "AF","AF","EU","AF","OC","SA","AF","AS","SA","NA",
+ "NA","AF","AS","AS","EU","EU","AF","EU","NA","NA",
+ "AF","SA","EU","AF","AF","AF","EU","AF","EU","OC",
+ "SA","OC","EU","EU","NA","AF","EU","NA","AS","SA",
+ "AF","EU","NA","AF","AF","NA","AF","EU","AN","NA",
+ "OC","AF","SA","AS","AN","NA","EU","NA","EU","AS",
+ "EU","AS","AS","AS","AS","AS","EU","EU","NA","AS",
+ "AS","AF","AS","AS","OC","AF","NA","AS","AS","AS",
+ "NA","AS","AS","AS","NA","EU","AS","AF","AF","EU",
+ "EU","EU","AF","AF","EU","EU","AF","OC","EU","AF",
+ "AS","AS","AS","OC","NA","AF","NA","EU","AF","AS",
+ "AF","NA","AS","AF","AF","OC","AF","OC","AF","NA",
+ "EU","EU","AS","OC","OC","OC","AS","NA","SA","OC",
+ "OC","AS","AS","EU","NA","OC","NA","AS","EU","OC",
+ "SA","AS","AF","EU","EU","AF","AS","OC","AF","AF",
+ "EU","AS","AF","EU","EU","EU","AF","EU","AF","AF",
+ "SA","AF","NA","AS","AF","NA","AF","AN","AF","AS",
+ "AS","OC","AS","AF","OC","AS","EU","NA","OC","AS",
+ "AF","EU","AF","OC","NA","SA","AS","EU","NA","SA",
+ "NA","NA","AS","OC","OC","OC","AS","AF","EU","AF",
+ "AF","EU","AF","--","--","--","EU","EU","EU","EU",
+ "NA","NA","NA", "AF", "--"
+ );
+
+}
+function geoip_load_shared_mem ($file) {
+
+ $fp = fopen($file, "rb");
+ if (!$fp) {
+ print "error opening $file: $php_errormsg\n";
+ exit;
+ }
+ $s_array = fstat($fp);
+ $size = $s_array['size'];
+ if ($shmid = @shmop_open (GEOIP_SHM_KEY, "w", 0, 0)) {
+ shmop_delete ($shmid);
+ shmop_close ($shmid);
+ }
+ $shmid = shmop_open (GEOIP_SHM_KEY, "c", 0644, $size);
+ shmop_write ($shmid, fread($fp, $size), 0);
+ shmop_close ($shmid);
+}
+
+function _setup_segments($gi){
+ $gi->databaseType = GEOIP_COUNTRY_EDITION;
+ $gi->record_length = STANDARD_RECORD_LENGTH;
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
+ $offset = @shmop_size ($gi->shmid) - 3;
+ for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
+ $delim = @shmop_read ($gi->shmid, $offset, 3);
+ $offset += 3;
+ if ($delim == (chr(255).chr(255).chr(255))) {
+ $gi->databaseType = ord(@shmop_read ($gi->shmid, $offset, 1));
+ if ( $gi->databaseType >= 106 ){
+ $gi->databaseType -= 105;
+ }
+ $offset++;
+
+ if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
+ } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
+ } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)||
+ ($gi->databaseType == GEOIP_CITY_EDITION_REV1)
+ || ($gi->databaseType == GEOIP_ORG_EDITION)
+ || ($gi->databaseType == GEOIP_ORG_EDITION_V6)
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION)
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
+ || ($gi->databaseType == GEOIP_ISP_EDITION)
+ || ($gi->databaseType == GEOIP_ISP_EDITION_V6)
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION)
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6)
+ || ($gi->databaseType == GEOIP_LOCATIONA_EDITION)
+ || ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION)
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1)
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6)
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION)
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){
+ $gi->databaseSegments = 0;
+ $buf = @shmop_read ($gi->shmid, $offset, SEGMENT_RECORD_LENGTH);
+ for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
+ $gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
+ }
+ if (($gi->databaseType == GEOIP_ORG_EDITION)
+ || ($gi->databaseType == GEOIP_ORG_EDITION_V6)
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION)
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
+ || ($gi->databaseType == GEOIP_ISP_EDITION)
+ || ($gi->databaseType == GEOIP_ISP_EDITION_V6)) {
+ $gi->record_length = ORG_RECORD_LENGTH;
+ }
+ }
+ break;
+ } else {
+ $offset -= 4;
+ }
+ }
+ if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
+ ($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)||
+ ($gi->databaseType == GEOIP_PROXY_EDITION)||
+ ($gi->databaseType == GEOIP_NETSPEED_EDITION)){
+ $gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
+ }
+ } else {
+ $filepos = ftell($gi->filehandle);
+ fseek($gi->filehandle, -3, SEEK_END);
+ for ($i = 0; $i < STRUCTURE_INFO_MAX_SIZE; $i++) {
+ $delim = fread($gi->filehandle,3);
+ if ($delim == (chr(255).chr(255).chr(255))){
+ $gi->databaseType = ord(fread($gi->filehandle,1));
+ if ( $gi->databaseType >= 106 ){
+ $gi->databaseType -= 105;
+ }
+ if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV0;
+ }
+ else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1){
+ $gi->databaseSegments = GEOIP_STATE_BEGIN_REV1;
+ } else if (($gi->databaseType == GEOIP_CITY_EDITION_REV0)
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1)
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
+ || ($gi->databaseType == GEOIP_ORG_EDITION)
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION)
+ || ($gi->databaseType == GEOIP_ISP_EDITION)
+ || ($gi->databaseType == GEOIP_ORG_EDITION_V6)
+ || ($gi->databaseType == GEOIP_DOMAIN_EDITION_V6)
+ || ($gi->databaseType == GEOIP_ISP_EDITION_V6)
+ || ($gi->databaseType == GEOIP_LOCATIONA_EDITION)
+ || ($gi->databaseType == GEOIP_ACCURACYRADIUS_EDITION)
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV0_V6)
+ || ($gi->databaseType == GEOIP_CITY_EDITION_REV1_V6)
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1)
+ || ($gi->databaseType == GEOIP_NETSPEED_EDITION_REV1_V6)
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION)
+ || ($gi->databaseType == GEOIP_USERTYPE_EDITION_V6)
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION)
+ || ($gi->databaseType == GEOIP_ASNUM_EDITION_V6)){
+ $gi->databaseSegments = 0;
+ $buf = fread($gi->filehandle,SEGMENT_RECORD_LENGTH);
+ for ($j = 0;$j < SEGMENT_RECORD_LENGTH;$j++){
+ $gi->databaseSegments += (ord($buf[$j]) << ($j * 8));
+ }
+ if ( ( $gi->databaseType == GEOIP_ORG_EDITION )
+ || ( $gi->databaseType == GEOIP_DOMAIN_EDITION )
+ || ( $gi->databaseType == GEOIP_ISP_EDITION )
+ || ( $gi->databaseType == GEOIP_ORG_EDITION_V6 )
+ || ( $gi->databaseType == GEOIP_DOMAIN_EDITION_V6 )
+ || ( $gi->databaseType == GEOIP_ISP_EDITION_V6 )) {
+ $gi->record_length = ORG_RECORD_LENGTH;
+ }
+ }
+ break;
+ } else {
+ fseek($gi->filehandle, -4, SEEK_CUR);
+ }
+ }
+ if (($gi->databaseType == GEOIP_COUNTRY_EDITION)||
+ ($gi->databaseType == GEOIP_COUNTRY_EDITION_V6)||
+ ($gi->databaseType == GEOIP_PROXY_EDITION)||
+ ($gi->databaseType == GEOIP_NETSPEED_EDITION)){
+ $gi->databaseSegments = GEOIP_COUNTRY_BEGIN;
+ }
+ fseek($gi->filehandle,$filepos,SEEK_SET);
+ }
+ return $gi;
+}
+
+function geoip_open($filename, $flags) {
+ $gi = new GeoIP;
+ $gi->flags = $flags;
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
+ $gi->shmid = @shmop_open (GEOIP_SHM_KEY, "a", 0, 0);
+ } else {
+ $gi->filehandle = fopen($filename,"rb") or die( "Can not open $filename\n" );
+ if ($gi->flags & GEOIP_MEMORY_CACHE) {
+ $s_array = fstat($gi->filehandle);
+ $gi->memory_buffer = fread($gi->filehandle, $s_array['size']);
+ }
+ }
+
+ $gi = _setup_segments($gi);
+ return $gi;
+}
+
+function geoip_close($gi) {
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
+ return true;
+ }
+
+ return fclose($gi->filehandle);
+}
+
+function geoip_country_id_by_name_v6($gi, $name) {
+ $rec = dns_get_record($name, DNS_AAAA);
+ if ( !$rec ) {
+ return false;
+ }
+ $addr = $rec[0]["ipv6"];
+ if (!$addr || $addr == $name) {
+ return false;
+ }
+ return geoip_country_id_by_addr_v6($gi, $addr);
+}
+
+function geoip_country_id_by_name($gi, $name) {
+ $addr = gethostbyname($name);
+ if (!$addr || $addr == $name) {
+ return false;
+ }
+ return geoip_country_id_by_addr($gi, $addr);
+}
+
+function geoip_country_code_by_name_v6($gi, $name) {
+ $country_id = geoip_country_id_by_name_v6($gi,$name);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
+ }
+ return false;
+}
+
+function geoip_country_code_by_name($gi, $name) {
+ $country_id = geoip_country_id_by_name($gi,$name);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
+ }
+ return false;
+}
+
+function geoip_country_name_by_name_v6($gi, $name) {
+ $country_id = geoip_country_id_by_name_v6($gi,$name);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
+ }
+ return false;
+}
+
+function geoip_country_name_by_name($gi, $name) {
+ $country_id = geoip_country_id_by_name($gi,$name);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
+ }
+ return false;
+}
+
+function geoip_country_id_by_addr_v6($gi, $addr) {
+ $ipnum = inet_pton($addr);
+ return _geoip_seek_country_v6($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
+}
+
+function geoip_country_id_by_addr($gi, $addr) {
+ $ipnum = ip2long($addr);
+ return _geoip_seek_country($gi, $ipnum) - GEOIP_COUNTRY_BEGIN;
+}
+
+function geoip_country_code_by_addr_v6($gi, $addr) {
+ $country_id = geoip_country_id_by_addr_v6($gi,$addr);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
+ }
+ return false;
+}
+
+function geoip_country_code_by_addr($gi, $addr) {
+ if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
+ $record = geoip_record_by_addr($gi,$addr);
+ if ( $record !== false ) {
+ return $record->country_code;
+ }
+ } else {
+ $country_id = geoip_country_id_by_addr($gi,$addr);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_CODES[$country_id];
+ }
+ }
+ return false;
+}
+
+function geoip_country_name_by_addr_v6($gi, $addr) {
+ $country_id = geoip_country_id_by_addr_v6($gi,$addr);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
+ }
+ return false;
+}
+
+function geoip_country_name_by_addr($gi, $addr) {
+ if ($gi->databaseType == GEOIP_CITY_EDITION_REV1) {
+ $record = geoip_record_by_addr($gi,$addr);
+ return $record->country_name;
+ } else {
+ $country_id = geoip_country_id_by_addr($gi,$addr);
+ if ($country_id !== false) {
+ return $gi->GEOIP_COUNTRY_NAMES[$country_id];
+ }
+ }
+ return false;
+}
+
+function _geoip_seek_country_v6($gi, $ipnum) {
+
+# arrays from unpack start with offset 1
+# yet another php mystery. array_merge work around
+# this broken behaviour
+ $v6vec = array_merge(unpack( "C16", $ipnum));
+
+ $offset = 0;
+ for ($depth = 127; $depth >= 0; --$depth) {
+ if ($gi->flags & GEOIP_MEMORY_CACHE) {
+ // workaround php's broken substr, strpos, etc handling with
+ // mbstring.func_overload and mbstring.internal_encoding
+ $enc = mb_internal_encoding();
+ mb_internal_encoding('ISO-8859-1');
+
+ $buf = substr($gi->memory_buffer,
+ 2 * $gi->record_length * $offset,
+ 2 * $gi->record_length);
+
+ mb_internal_encoding($enc);
+ } elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
+ $buf = @shmop_read ($gi->shmid,
+ 2 * $gi->record_length * $offset,
+ 2 * $gi->record_length );
+ } else {
+ fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0
+ or die("fseek failed");
+ $buf = fread($gi->filehandle, 2 * $gi->record_length);
+ }
+ $x = array(0,0);
+ for ($i = 0; $i < 2; ++$i) {
+ for ($j = 0; $j < $gi->record_length; ++$j) {
+ $x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8);
+ }
+ }
+
+ $bnum = 127 - $depth;
+ $idx = $bnum >> 3;
+ $b_mask = 1 << ( $bnum & 7 ^ 7 );
+ if (($v6vec[$idx] & $b_mask) > 0) {
+ if ($x[1] >= $gi->databaseSegments) {
+ return $x[1];
+ }
+ $offset = $x[1];
+ } else {
+ if ($x[0] >= $gi->databaseSegments) {
+ return $x[0];
+ }
+ $offset = $x[0];
+ }
+ }
+ trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR);
+ return false;
+}
+
+function _geoip_seek_country($gi, $ipnum) {
+ $offset = 0;
+ for ($depth = 31; $depth >= 0; --$depth) {
+ if ($gi->flags & GEOIP_MEMORY_CACHE) {
+ // workaround php's broken substr, strpos, etc handling with
+ // mbstring.func_overload and mbstring.internal_encoding
+ $enc = mb_internal_encoding();
+ mb_internal_encoding('ISO-8859-1');
+
+ $buf = substr($gi->memory_buffer,
+ 2 * $gi->record_length * $offset,
+ 2 * $gi->record_length);
+
+ mb_internal_encoding($enc);
+ } elseif ($gi->flags & GEOIP_SHARED_MEMORY) {
+ $buf = @shmop_read ($gi->shmid,
+ 2 * $gi->record_length * $offset,
+ 2 * $gi->record_length );
+ } else {
+ fseek($gi->filehandle, 2 * $gi->record_length * $offset, SEEK_SET) == 0
+ or die("fseek failed");
+ $buf = fread($gi->filehandle, 2 * $gi->record_length);
+ }
+ $x = array(0,0);
+ for ($i = 0; $i < 2; ++$i) {
+ for ($j = 0; $j < $gi->record_length; ++$j) {
+ $x[$i] += ord($buf[$gi->record_length * $i + $j]) << ($j * 8);
+ }
+ }
+ if ($ipnum & (1 << $depth)) {
+ if ($x[1] >= $gi->databaseSegments) {
+ return $x[1];
+ }
+ $offset = $x[1];
+ } else {
+ if ($x[0] >= $gi->databaseSegments) {
+ return $x[0];
+ }
+ $offset = $x[0];
+ }
+ }
+ trigger_error("error traversing database - perhaps it is corrupt?", E_USER_ERROR);
+ return false;
+}
+
+function _common_get_org($gi, $seek_org){
+ $record_pointer = $seek_org + (2 * $gi->record_length - 1) * $gi->databaseSegments;
+ if ($gi->flags & GEOIP_SHARED_MEMORY) {
+ $org_buf = @shmop_read ($gi->shmid, $record_pointer, MAX_ORG_RECORD_LENGTH);
+ } else {
+ fseek($gi->filehandle, $record_pointer, SEEK_SET);
+ $org_buf = fread($gi->filehandle,MAX_ORG_RECORD_LENGTH);
+ }
+ // workaround php's broken substr, strpos, etc handling with
+ // mbstring.func_overload and mbstring.internal_encoding
+ $enc = mb_internal_encoding();
+ mb_internal_encoding('ISO-8859-1');
+ $org_buf = substr($org_buf, 0, strpos($org_buf, "\0"));
+ mb_internal_encoding($enc);
+ return $org_buf;
+}
+
+function _get_org_v6($gi,$ipnum){
+ $seek_org = _geoip_seek_country_v6($gi,$ipnum);
+ if ($seek_org == $gi->databaseSegments) {
+ return NULL;
+ }
+ return _common_get_org($gi, $seek_org);
+}
+
+function _get_org($gi,$ipnum){
+ $seek_org = _geoip_seek_country($gi,$ipnum);
+ if ($seek_org == $gi->databaseSegments) {
+ return NULL;
+ }
+ return _common_get_org($gi, $seek_org);
+}
+
+
+
+function geoip_name_by_addr_v6 ($gi,$addr) {
+ if ($addr == NULL) {
+ return 0;
+ }
+ $ipnum = inet_pton($addr);
+ return _get_org_v6($gi, $ipnum);
+}
+
+function geoip_name_by_addr ($gi,$addr) {
+ if ($addr == NULL) {
+ return 0;
+ }
+ $ipnum = ip2long($addr);
+ return _get_org($gi, $ipnum);
+}
+
+function geoip_org_by_addr ($gi,$addr) {
+ return geoip_name_by_addr($gi, $addr);
+}
+
+function _get_region($gi,$ipnum){
+ if ($gi->databaseType == GEOIP_REGION_EDITION_REV0){
+ $seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV0;
+ if ($seek_region >= 1000){
+ $country_code = "US";
+ $region = chr(($seek_region - 1000)/26 + 65) . chr(($seek_region - 1000)%26 + 65);
+ } else {
+ $country_code = $gi->GEOIP_COUNTRY_CODES[$seek_region];
+ $region = "";
+ }
+ return array ($country_code,$region);
+ } else if ($gi->databaseType == GEOIP_REGION_EDITION_REV1) {
+ $seek_region = _geoip_seek_country($gi,$ipnum) - GEOIP_STATE_BEGIN_REV1;
+ //print $seek_region;
+ if ($seek_region < US_OFFSET){
+ $country_code = "";
+ $region = "";
+ } else if ($seek_region < CANADA_OFFSET) {
+ $country_code = "US";
+ $region = chr(($seek_region - US_OFFSET)/26 + 65) . chr(($seek_region - US_OFFSET)%26 + 65);
+ } else if ($seek_region < WORLD_OFFSET) {
+ $country_code = "CA";
+ $region = chr(($seek_region - CANADA_OFFSET)/26 + 65) . chr(($seek_region - CANADA_OFFSET)%26 + 65);
+ } else {
+ $country_code = $gi->GEOIP_COUNTRY_CODES[($seek_region - WORLD_OFFSET) / FIPS_RANGE];
+ $region = "";
+ }
+ return array ($country_code,$region);
+ }
+}
+
+function geoip_region_by_addr ($gi,$addr) {
+ if ($addr == NULL) {
+ return 0;
+ }
+ $ipnum = ip2long($addr);
+ return _get_region($gi, $ipnum);
+}
+
+function getdnsattributes ($l,$ip){
+ $r = new Net_DNS_Resolver();
+ $r->nameservers = array("ws1.maxmind.com");
+ $p = $r->search($l."." . $ip .".s.maxmind.com","TXT","IN");
+ $str = is_object($p->answer[0])?$p->answer[0]->string():'';
+ $str = substr( $str, 1, -1 );
+ return $str;
+}
+
+?>
diff --git a/inc/locale/es_ES/LC_MESSAGES/javascript.js b/inc/locale/es_ES/LC_MESSAGES/javascript.js
new file mode 100644
index 00000000..e21fa37f
--- /dev/null
+++ b/inc/locale/es_ES/LC_MESSAGES/javascript.js
@@ -0,0 +1 @@
+l10n = {"Style: ":"Estilo: ","File":"Archivo","hide":"ocultar","show":"mostrar","Show locked threads":"Mostrar hilos bloqueados","Hide locked threads":"Ocultar hilos bloqueados","URL":"URL","Select":"Seleccionar","Remote":"Remoto","Embed":"Incrustar","Oekaki":"Oekaki","hidden":"oculto","Show images":"Mostrar imagenes","Hide images":"Ocultar imagenes","Password":"Contrase\u00f1a","Delete file only":"Eliminar s\u00f3lo archivo","Delete":"Eliminar","Reason":"Raz\u00f3n","Report":"Reportar","Click reply to view.":"Click responder para ver.","Click to expand":"Click para expandir","Hide expanded replies":"Ocultar respuestas expandidas","Brush size":"Tama\u00f1o brush","Set text":"Establecer texto","Clear":"Limpiar","Save":"Guardar","Load":"Cargar","Toggle eraser":"Borrar marca","Get color":"Seleccionar color","Fill":"Llenar","Use oekaki instead of file?":"Usar oekaki en vez del archivo?","Edit in oekaki":"Editar en oekaki","Enter some text":"Pon alg\u00fan texto","Enter font or leave empty":"Pon una fuente o dejalo vac\u00edo","Forced anonymity":"Forzar anonimato","enabled":"activado","disabled":"desactivado","Sun":"Dom","Mon":"Lun","Tue":"Mar","Wed":"Mie","Thu":"Jue","Fri":"Vie","Sat":"S\u00e1","Catalog":"Cat\u00e1logo","Submit":"Enviar","Quick reply":"Respuesta r\u00e1pida","Posting mode: Replying to >>{0}<\/small>":"Respondiendo a >>{0}<\/small>","Return":"Volver","Expand all images":"Expandir todas las im\u00e1genes","Hello!":"Hola!","{0} users":"{0} usuarios","(hide threads from this board)":"(ocultar hilos de este tabl\u00f3n)","(show threads from this board)":"(mostrar hilos de este tabl\u00f3n)","No more threads to display":"No hay m\u00e1s hilos para mostrar","Loading...":"Cargando...","Save as original filename":"Guardar con el nombre original del archivo","Reported post(s).":"Post(s) reportados.","An unknown error occured!":"Ocurri\u00f3 un error desconocido!","Something went wrong... An unknown error occured!":"Algo fue mal... Ocurri\u00f3 un error desconocido!","Working...":"Trabajando...","Posting... (#%)":"Posteando... (#%)","Posted...":"Posteado...","An unknown error occured when posting!":"Ocurri\u00f3 un error desconocido mientras posteabas!","Posting...":"Posteando...","Upload URL":"Subir URL","Spoiler Image":"Imagen Spoiler","Comment":"Comentario","Quick Reply":"Respuesta r\u00e1pida","Stop watching this thread":"Para de ver este hilo","Watch this thread":"Ver este hilo","Unpin this board":"Desmarcar este hilo","Pin this board":"Marcar este hilo","Stop watching this board":"Para de ver este hilo","Watch this board":"Ver este hilo","Click on any image on this site to load it into oekaki applet":"Click en cualquier sitio para cargar el oekaki applet","Sunday":"Domingo","Monday":"Lunes","Tuesday":"Martes","Wednesday":"Mi\u00e9rcoles","Thursday":"Jueves","Friday":"Viernes","Saturday":"S\u00e1bado","January":"Enero","February":"Febrero","March":"Marzo","April":"Abril","May":"Mayo","June":"Junio","July":"Julio","August":"Agosto","September":"Septiembre","October":"Octubre","November":"Noviembre","December":"Diciembre","Jan":"Ene","Feb":"Feb","Mar":"Mar","Apr":"Abr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dic","AM":"AM","PM":"PM","am":"am","pm":"pm"};
\ No newline at end of file
diff --git a/inc/locale/es_ES/LC_MESSAGES/javascript.po b/inc/locale/es_ES/LC_MESSAGES/javascript.po
new file mode 100644
index 00000000..29a22118
--- /dev/null
+++ b/inc/locale/es_ES/LC_MESSAGES/javascript.po
@@ -0,0 +1,533 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR
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
+msgid "The file was too big."
+msgstr "El archivo es muy grande."
+
+#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:994
+#, php-format
+msgid "That file already exists!"
+msgstr "Ese archivo ya existe!"
+
+#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
+#: ../../../../inc/config.php:995
+#, 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
+#, 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
+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
+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
+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
+#, 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
+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
+msgid "You are not a mod…"
+msgstr "No eres un mod..."
+
+#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1005
+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
+msgid "Invalid/malformed cookies."
+msgstr "Cookies no válidas/malformadas."
+
+#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1007
+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
+#, 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
+#, 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
+#, 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
+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
+msgid "That post doesn't exist…"
+msgstr "Ese post no existe..."
+
+#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
+#: ../../../../inc/config.php:1013
+msgid "Page not found."
+msgstr "Página no encontrada."
+
+#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
+#: ../../../../inc/config.php:1014
+#, php-format
+msgid "That mod already exists!"
+msgstr "Ese mod ya existe!"
+
+#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
+#: ../../../../inc/config.php:1015
+msgid "That theme doesn't exist!"
+msgstr "Ese hilo no existe!"
+
+#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
+#: ../../../../inc/config.php:1016
+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).
+#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
+#: ../../../../inc/config.php:1180
+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
+#: ../../../../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
+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
+#: ../../../../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
+msgid "File"
+msgstr "Archivo"
+
+#. line 132
+#. line 14
+#. line 132
+#. line 14
+#. line 131
+#. line 14
+#. line 131
+#: ../../../../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
+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
+#: ../../../../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
+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
+#: ../../../../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
+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
+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
+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
+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
+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
+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
+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
+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
+#: ../../../../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
+msgid "Name"
+msgstr "Nombre"
+
+#. 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
+#: ../../../../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"
+
+#. 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
+#: ../../../../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"
+
+#: ../../../../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"
+
+#. line 90
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+msgid "Or URL"
+msgstr "O URL"
+
+#. line 100
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+msgid "Embed"
+msgstr "Incrustar"
+
+#. line 112
+#. line 111
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+msgid "Flags"
+msgstr "Banderas"
+
+#. 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
+#: ../../../../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
+msgid "Sticky"
+msgstr "Marca"
+
+#. 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
+#: ../../../../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
+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
+#: ../../../../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
+msgid "Raw HTML"
+msgstr "HTML puro"
+
+#. line 137
+#. line 136
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
+msgid "(For file deletion.)"
+msgstr "(Para eliminar archivo.)"
+
+#: ../../../../search.php:5
+msgid "Post search is disabled"
+msgstr "El buscador de posts está desactivado"
+
+#: ../../../../search.php:25 ../../../../search.php:31
+msgid "Wait a while before searching again, please."
+msgstr "Espera un poco antes de volver a buscar, por favor."
+
+#: ../../../../search.php:131
+msgid "Query too broad."
+msgstr "Query muy extenso."
+
+#: ../../../../search.php:152
+#, php-format
+msgid "%d result in"
+msgid_plural "%d results in"
+msgstr[0] "%d resultado en"
+msgstr[1] "%d resultados en"
+
+#: ../../../../search.php:163
+msgid "No results."
+msgstr "Ningún resultado."
+
+#. 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
+#: ../../../../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
+msgid "Search"
+msgstr "Buscar"
+
+#: ../../../../inc/mod/pages.php:939
+msgid "Ban appeal not found!"
+msgstr "Apelación del ban no encontrado!"
+
+#: ../../../../inc/mod/pages.php:989
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265
+msgid "Ban appeals"
+msgstr "Apelaciones de bans"
+
+#: ../../../../inc/mod/pages.php:1833
+msgid "New user"
+msgstr "Nuevo usuario"
+
+#: ../../../../inc/mod/pages.php:1888
+msgid "Impossible to promote/demote user."
+msgstr "Imposible al ascender/degradar usuario."
+
+#: ../../../../inc/mod/pages.php:2612
+msgid "Debug: APC"
+msgstr "Depurar: APC"
+
+#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
+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: "
+
+#. line 2
+#. line 6
+#. line 2
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38
+msgid "Boards"
+msgstr "Tablones"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215
+msgid "edit"
+msgstr "editar"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97
+msgid "Create new board"
+msgstr "Crear nuevo tablón"
+
+#. line 32
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108
+msgid "Messages"
+msgstr "Mensajes"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188
+msgid "View all noticeboard entries"
+msgstr "Ver todas las entradas del tablón de noticias"
+
+#. line 76
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222
+msgid "Administration"
+msgstr "Administración"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282
+msgid "Change password"
+msgstr "Cambiar contraseña"
+
+#: ../../../../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
+#: ../../../../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
+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
+#: ../../../../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
+msgid "Staff"
+msgstr "Staff"
+
+#. 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
+msgid "Note"
+msgstr "Nota"
+
+#. line 26
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89
+msgid "Date"
+msgstr "Fecha"
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96
+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
+#: ../../../../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
+#: ../../../../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
+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
+msgid "all boards"
+msgstr "Todos los tablones"
+
+#. line 128
+#. line 11
+#. line 43
+#. line 128
+#. line 43
+#. line 128
+#. line 11
+#. line 43
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
+msgid "Set"
+msgstr "Conjunto"
+
+#. line 132
+#. line 13
+#. line 47
+#. line 132
+#. line 47
+#. line 132
+#. line 13
+#. line 47
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
+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
+msgid "never"
+msgstr "nunca"
+
+#. line 142
+#. line 14
+#. line 57
+#. line 142
+#. line 57
+#. line 142
+#. line 14
+#. line 57
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
+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
+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
+msgid "No"
+msgstr "No"
+
+#. line 163
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419
+msgid "Remove ban"
+msgstr "Eliminar baneo"
+
+#. line 183
+#. line 5
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34
+msgid "Time"
+msgstr "Tiempo"
+
+#. line 185
+#. line 89
+#. line 185
+#. line 89
+#. line 185
+#. line 7
+#. line 89
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
+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
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117
+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
+#: ../../../../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
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39
+msgid "IP address/mask"
+msgstr "Dirección IP"
+
+#. line 12
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55
+msgid "Duration"
+msgstr "Duración"
+
+#. line 92
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269
+msgid "Unban selected"
+msgstr "Desban seleccionado"
+
+#. line 6
+#. line 4
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30
+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
+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
+msgid "You cannot appeal a ban of this length."
+msgstr "No puedes apelar el ban de esa longitud."
+
+#: ../../../../post.php:813 ../../../../post.php:822
+msgid "You cannot appeal this ban again."
+msgstr "No puedes volver a apelar este ban."
+
+#: ../../../../post.php:818 ../../../../post.php:827
+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
+#: ../../../../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
+#: ../../../../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
+#: ../../../../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
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30
+msgid "IP address"
+msgstr "Dirección IP"
+
+#. line 3
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26
+msgid "ID"
+msgstr "ID"
+
+#. line 5
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34
+msgid "Type"
+msgstr "Tipo"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45
+msgid "Last action"
+msgstr "Última acción"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80
+msgid "Unknown"
+msgstr "Desconocido"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94
+msgid "none"
+msgstr "nada"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174
+msgid "Promote"
+msgstr "Ascender"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187
+msgid "Demote"
+msgstr "Degradar"
+
+#: ../../../../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?"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204
+msgid "log"
+msgstr "log"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226
+msgid "PM"
+msgstr "MP"
+
+#. line 6
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36
+msgid "Thread ID"
+msgstr "ID Hilo"
+
+#. line 14
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51
+msgid "Leave shadow thread"
+msgstr "Dejar la sombra del hilo"
+
+#. 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."
+
+#. line 22
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65
+msgid "Target board"
+msgstr "Hilo objetivo"
+
+#. line 8
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40
+msgid "Select board"
+msgstr "Selecciona un hilo"
+
+#. 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."
+
+#. 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?"
+
+#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31
+msgid "Click to proceed to"
+msgstr "Click para prodecer a"
+
+#. 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."
diff --git a/inc/locale/lt_LT/LC_MESSAGES/javascript.po b/inc/locale/lt_LT/LC_MESSAGES/javascript.po
new file mode 100644
index 00000000..6a80516e
--- /dev/null
+++ b/inc/locale/lt_LT/LC_MESSAGES/javascript.po
@@ -0,0 +1,391 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR
Your file's size: %filesz% bytes"
+msgstr ""
+"Maksimalus failo didys: %maxsz% baitai
Tavo failo didys: %filesz% baitai"
+
+#: ../../inc/config.php:716 ../../../../inc/config.php:723
+#: ../../../../inc/config.php:834 ../../../../inc/config.php:892
+#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:993
+msgid "The file was too big."
+msgstr "Failas buvo per didelis."
+
+#: ../../inc/config.php:717 ../../../../inc/config.php:724
+#: ../../../../inc/config.php:835
+msgid "Invalid archive!"
+msgstr "Netinkamas archyvas."
+
+#: ../../inc/config.php:718 ../../../../inc/config.php:725
+#: ../../../../inc/config.php:836 ../../../../inc/config.php:893
+#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:994
+#, php-format
+msgid "That file already exists!"
+msgstr "Tas failas jau egzistuoja!"
+
+#: ../../inc/config.php:719 ../../../../inc/config.php:726
+#: ../../../../inc/config.php:837 ../../../../inc/config.php:894
+#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
+#: ../../../../inc/config.php:995
+#, php-format
+msgid "That file already exists in this thread!"
+msgstr "Tas failas jau egzistuoja šioje diskusijoje!"
+
+#: ../../inc/config.php:720 ../../../../inc/config.php:727
+#: ../../../../inc/config.php:838 ../../../../inc/config.php:895
+#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
+#: ../../../../inc/config.php:996
+#, php-format
+msgid "You'll have to wait another %s before deleting that."
+msgstr "Tu turėsi palaukti dar %s prieš ištrindamas šitai."
+
+#: ../../inc/config.php:721 ../../../../inc/config.php:728
+#: ../../../../inc/config.php:839 ../../../../inc/config.php:896
+#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:997
+msgid "MIME type detection XSS exploit (IE) detected; post discarded."
+msgstr "MIME tipo detekcija XSS eksploitas (IE) aptiktas; komentaras išmestas."
+
+#: ../../inc/config.php:722 ../../../../inc/config.php:729
+#: ../../../../inc/config.php:840 ../../../../inc/config.php:897
+#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:998
+msgid "Couldn't make sense of the URL of the video you tried to embed."
+msgstr "Tavo video URL, kurį bandei patalpinti, buvo nesuprastas."
+
+#: ../../inc/config.php:723 ../../../../inc/config.php:730
+#: ../../../../inc/config.php:841 ../../../../inc/config.php:898
+#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:999
+msgid "You seem to have mistyped the verification."
+msgstr "Atrodo tu įvedei neteisingą patvirtinimą."
+
+#: ../../inc/config.php:726 ../../../../inc/config.php:734
+#: ../../../../inc/config.php:845 ../../../../inc/config.php:902
+#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1003
+msgid "Invalid username and/or password."
+msgstr "Neteisingas slapyvardis ir/ar slaptažodis."
+
+#: ../../inc/config.php:727 ../../../../inc/config.php:735
+#: ../../../../inc/config.php:846 ../../../../inc/config.php:903
+#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1004
+msgid "You are not a mod…"
+msgstr "Tu nesi moderatorius..."
+
+#: ../../inc/config.php:728 ../../../../inc/config.php:736
+#: ../../../../inc/config.php:847 ../../../../inc/config.php:904
+#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1005
+msgid ""
+"Invalid username and/or password. Your user may have been deleted or changed."
+msgstr ""
+"Neteisingas slapyvardis ir/ar slaptažodis. Tavo vartotojas buvo ištrintas ar "
+"pakeistas."
+
+#: ../../inc/config.php:729 ../../../../inc/config.php:737
+#: ../../../../inc/config.php:848 ../../../../inc/config.php:905
+#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1006
+msgid "Invalid/malformed cookies."
+msgstr "Neteisingi/netaip suformuoti slapukai."
+
+#: ../../inc/config.php:730 ../../../../inc/config.php:738
+#: ../../../../inc/config.php:849 ../../../../inc/config.php:906
+#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1007
+msgid "Your browser didn't submit an input when it should have."
+msgstr "Tavo naršyklė nepateikė įvesties, kai turėjo."
+
+#: ../../inc/config.php:731 ../../../../inc/config.php:739
+#: ../../../../inc/config.php:850 ../../../../inc/config.php:907
+#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1008
+#, php-format
+msgid "The %s field is required."
+msgstr "Laukas %s reikalingas."
+
+#: ../../inc/config.php:732 ../../../../inc/config.php:740
+#: ../../../../inc/config.php:851 ../../../../inc/config.php:908
+#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1009
+#, php-format
+msgid "The %s field was invalid."
+msgstr "Laukas %s buvo neteisingas."
+
+#: ../../inc/config.php:733 ../../../../inc/config.php:741
+#: ../../../../inc/config.php:852 ../../../../inc/config.php:909
+#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1010
+#, php-format
+msgid "There is already a %s board."
+msgstr "Jau egzistuoja %s lenta."
+
+#: ../../inc/config.php:734 ../../../../inc/config.php:742
+#: ../../../../inc/config.php:853 ../../../../inc/config.php:910
+#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1011
+msgid "You don't have permission to do that."
+msgstr "Tu neturi teisių tai padaryti."
+
+#: ../../inc/config.php:735 ../../../../inc/config.php:743
+#: ../../../../inc/config.php:854 ../../../../inc/config.php:911
+#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1012
+msgid "That post doesn't exist…"
+msgstr "Tas komentaras neegzistuoja..."
+
+#: ../../inc/config.php:736 ../../../../inc/config.php:744
+#: ../../../../inc/config.php:855 ../../../../inc/config.php:912
+#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
+#: ../../../../inc/config.php:1013
+msgid "Page not found."
+msgstr "Nerastas puslapis."
+
+#: ../../inc/config.php:737 ../../../../inc/config.php:745
+#: ../../../../inc/config.php:856 ../../../../inc/config.php:913
+#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
+#: ../../../../inc/config.php:1014
+#, php-format
+msgid "That mod already exists!"
+msgstr "Tas moderatorius jau egzistuoja!"
+
+#: ../../inc/config.php:738 ../../../../inc/config.php:746
+#: ../../../../inc/config.php:857 ../../../../inc/config.php:914
+#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
+#: ../../../../inc/config.php:1015
+msgid "That theme doesn't exist!"
+msgstr "Ta tema neegzistuoja!"
+
+#: ../../inc/config.php:739 ../../../../inc/config.php:747
+#: ../../../../inc/config.php:858 ../../../../inc/config.php:915
+#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
+#: ../../../../inc/config.php:1016
+msgid "Invalid security token! Please go back and try again."
+msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl."
+
+#: ../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:66
+#: ../../../../inc/mod/pages.php:64
+msgid "Confirm action"
+msgstr "Patvirtink veiksmą."
+
+#: ../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:110
+#: ../../../../inc/mod/pages.php:108
+msgid "Could not find current version! (Check .installed)"
+msgstr "Dabartinė versija nebuvo rasta! (Žiūrėk .installed)"
+
+#: ../../inc/mod/pages.php:151 ../../../../inc/mod/pages.php:162
+msgid "Dashboard"
+msgstr "Administratoriaus lenta."
+
+#: ../../inc/mod/pages.php:228 ../../../../inc/mod/pages.php:239
+#: ../../../../inc/mod/pages.php:431 ../../../../inc/mod/pages.php:436
+#: ../../../../inc/mod/pages.php:438
+msgid "Edit board"
+msgstr "Modifikuoti lenta"
+
+#: ../../inc/mod/pages.php:261 ../../../../inc/mod/pages.php:272
+#: ../../../../inc/mod/pages.php:481 ../../../../inc/mod/pages.php:486
+#: ../../../../inc/mod/pages.php:491
+msgid "Couldn't open board after creation."
+msgstr "Nesugebėjome atidaryti naujos lentos po sukūrimo."
+
+#: ../../inc/mod/pages.php:276 ../../../../inc/mod/pages.php:287
+#: ../../../../inc/mod/pages.php:501 ../../../../inc/mod/pages.php:506
+#: ../../../../inc/mod/pages.php:511
+msgid "New board"
+msgstr "Nauja lenta"
+
+#. line 31
+#. line 37
+#: ../../inc/mod/pages.php:322
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:96
+#: ../../../../inc/mod/pages.php:333 ../../../../inc/mod/pages.php:548
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:103
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:118
+#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121
+msgid "Noticeboard"
+msgstr "Pranešimų lenta"
+
+#: ../../inc/mod/pages.php:382
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:166
+#: ../../../../inc/mod/pages.php:393 ../../../../inc/mod/pages.php:609
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:176
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:191
+#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194
+msgid "News"
+msgstr "Naujienos"
+
+#: ../../inc/mod/pages.php:422 ../../inc/mod/pages.php:449
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:255
+#: ../../../../inc/mod/pages.php:433 ../../../../inc/mod/pages.php:460
+#: ../../../../inc/mod/pages.php:649 ../../../../inc/mod/pages.php:676
+#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:72
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:273
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:288
+#: ../../../../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 "Moderacijos žurnalas"
+
+#. line 102
+#. line 20
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 18
+#. line 104
+#. line 20
+#. line 18
+#: ../../inc/mod/pages.php:592
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:247
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:65
+#: ../../../../inc/mod/pages.php:612 ../../../../inc/mod/pages.php:832
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:264
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:68
+#: ../../../../inc/mod/pages.php:830 ../../../../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 169
+#. line 171
+#: ../../inc/mod/pages.php:602 ../../inc/mod/pages.php:993
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:377
+#: ../../../../inc/mod/pages.php:622 ../../../../inc/mod/pages.php:1028
+#: ../../../../inc/mod/pages.php:842 ../../../../inc/mod/pages.php:1262
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:429
+#: ../../../../inc/mod/pages.php:840 ../../../../inc/mod/pages.php:1356
+#: ../../../../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 "Naujas draudimas"
+
+#: ../../inc/mod/pages.php:670
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:224
+#: ../../../../inc/mod/pages.php:705 ../../../../inc/mod/pages.php:925
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:238
+#: ../../../../inc/mod/pages.php:923
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:253
+#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256
+msgid "Ban list"
+msgstr "Draudimų sąrašas"
+
+#: ../../inc/mod/pages.php:765 ../../../../inc/mod/pages.php:800
+#: ../../../../inc/mod/pages.php:1027 ../../../../inc/mod/pages.php:1120
+#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191
+msgid "Target and source board are the same."
+msgstr "Nurodyta ir šaltinio lenta yra ta pati."
+
+#: ../../inc/mod/pages.php:927 ../../../../inc/mod/pages.php:962
+#: ../../../../inc/mod/pages.php:1191 ../../../../inc/mod/pages.php:1285
+#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357
+msgid "Impossible to move thread; there is only one board."
+msgstr "Neįmanoma perkelti diskusijos; yra tik vieną lenta."
+
+#. line 39
+#: ../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:966
+#: ../../../../inc/mod/pages.php:1195 ../../../../inc/mod/pages.php:1289
+#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114
+msgid "Move thread"
+msgstr "Perkelti diskusiją"
+
+#: ../../inc/mod/pages.php:1045 ../../../../inc/mod/pages.php:1080
+#: ../../../../inc/display.php:351 ../../../../inc/display.php:476
+#: ../../../../inc/mod/pages.php:1320 ../../../../inc/display.php:475
+#: ../../../../inc/mod/pages.php:1414 ../../../../inc/display.php:388
+#: ../../../../inc/display.php:512 ../../../../inc/mod/pages.php:1425
+#: ../../../../inc/mod/pages.php:1494 ../../../../inc/display.php:405
+#: ../../../../inc/display.php:534 ../../../../inc/display.php:408
+#: ../../../../inc/display.php:537
+msgid "Edit post"
+msgstr "Modifikuoti komentarą"
+
+#: ../../inc/mod/pages.php:1271 ../../inc/mod/pages.php:1320
+#: ../../../../inc/mod/pages.php:1307 ../../../../inc/mod/pages.php:1356
+#: ../../../../inc/mod/pages.php:1555 ../../../../inc/mod/pages.php:1608
+#: ../../../../inc/mod/pages.php:1687 ../../../../inc/mod/pages.php:1740
+#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751
+#: ../../../../inc/mod/pages.php:1775
+msgid "Edit user"
+msgstr "Modifikuoti naudotoją"
+
+#: ../../inc/mod/pages.php:1333
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:232
+#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1621
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:247
+#: ../../../../inc/mod/pages.php:1753
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:262
+#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274
+msgid "Manage users"
+msgstr "Administruoti naudotojus"
+
+#. deleted?
+#: ../../inc/mod/pages.php:1395 ../../inc/mod/pages.php:1467
+#: ../../../../inc/mod/pages.php:1431 ../../../../inc/mod/pages.php:1503
+#: ../../../../inc/mod/pages.php:1683 ../../../../inc/mod/pages.php:1756
+#: ../../../../inc/mod/pages.php:1815 ../../../../inc/mod/pages.php:1888
+#: ../../../../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 "Naujas privatus pranešimas"
+
+#: ../../inc/mod/pages.php:1399 ../../../../inc/mod/pages.php:1435
+#: ../../../../inc/mod/pages.php:1687 ../../../../inc/mod/pages.php:1819
+#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952
+msgid "Private message"
+msgstr "Privatus pranešimas"
+
+#. line 62
+#. line 68
+#: ../../inc/mod/pages.php:1420
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:171
+#: ../../../../inc/mod/pages.php:1456 ../../../../inc/mod/pages.php:1708
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:182
+#: ../../../../inc/mod/pages.php:1840
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:197
+#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200
+msgid "PM inbox"
+msgstr "Privačių pranešimų dežutė"
+
+#: ../../inc/mod/pages.php:1531 ../../inc/mod/pages.php:1535
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:263
+#: ../../../../inc/mod/pages.php:1567 ../../../../inc/mod/pages.php:1571
+#: ../../../../inc/mod/pages.php:1820 ../../../../inc/mod/pages.php:1824
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:282
+#: ../../../../inc/mod/pages.php:1952 ../../../../inc/mod/pages.php:1956
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:297
+#: ../../../../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
+msgid "Rebuild"
+msgstr "Perkompiliuoti"
+
+#: ../../inc/mod/pages.php:1621
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:207
+#: ../../../../inc/mod/pages.php:1657 ../../../../inc/mod/pages.php:1910
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:220
+#: ../../../../inc/mod/pages.php:2032
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:235
+#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238
+msgid "Report queue"
+msgstr "Pranešimų eilė"
+
+#: ../../inc/mod/pages.php:1743 ../../../../inc/mod/pages.php:1779
+#: ../../../../inc/mod/pages.php:1978 ../../../../inc/mod/pages.php:2077
+#: ../../../../inc/mod/pages.php:2100 ../../../../inc/mod/pages.php:2199
+#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210
+#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350
+msgid "Config editor"
+msgstr "Konfiguracijos redagavimas"
+
+#: ../../inc/mod/pages.php:1753 ../../../../inc/mod/pages.php:1789
+#: ../../../../inc/mod/pages.php:2093 ../../../../inc/mod/pages.php:2215
+#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367
+msgid "Themes directory doesn't exist!"
+msgstr "Temų katalogas neegzistuoja!"
+
+#: ../../inc/mod/pages.php:1755 ../../../../inc/mod/pages.php:1791
+#: ../../../../inc/mod/pages.php:2095 ../../../../inc/mod/pages.php:2217
+#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369
+msgid "Cannot open themes directory; check permissions."
+msgstr "Neįmanoma atidaryti temų katalogo; peržvelkite leidimus."
+
+#: ../../inc/mod/pages.php:1769
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:247
+#: ../../../../inc/mod/pages.php:1805 ../../../../inc/mod/pages.php:2109
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:264
+#: ../../../../inc/mod/pages.php:2231
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:279
+#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291
+msgid "Manage themes"
+msgstr "Administruoti temas"
+
+#: ../../inc/mod/pages.php:1831 ../../../../inc/mod/pages.php:1867
+#: ../../../../inc/mod/pages.php:2171 ../../../../inc/mod/pages.php:2293
+#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453
+#, php-format
+msgid "Installed theme: %s"
+msgstr "Įrašyta tema: %s"
+
+#: ../../inc/mod/pages.php:1841 ../../../../inc/mod/pages.php:1878
+#: ../../../../inc/mod/pages.php:2182 ../../../../inc/mod/pages.php:2304
+#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464
+#, php-format
+msgid "Configuring theme: %s"
+msgstr "Konfiguruojama tema: %s"
+
+#: ../../inc/mod/pages.php:1869 ../../../../inc/mod/pages.php:1906
+#: ../../../../inc/mod/pages.php:2210 ../../../../inc/mod/pages.php:2332
+#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493
+#, php-format
+msgid "Rebuilt theme: %s"
+msgstr "Perkompiliuota tema: %s"
+
+#: ../../inc/mod/pages.php:1908 ../../../../inc/mod/pages.php:1945
+#: ../../../../inc/mod/pages.php:2249 ../../../../inc/mod/pages.php:2371
+#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532
+msgid "Debug: Anti-spam"
+msgstr "Derinimas: Prieš-spam'ą"
+
+#: ../../inc/mod/pages.php:1932 ../../../../inc/mod/pages.php:1969
+#: ../../../../inc/mod/pages.php:2273 ../../../../inc/mod/pages.php:2395
+#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566
+msgid "Debug: Recent posts"
+msgstr "Derinimas: Neseni komentarai"
+
+#: ../../inc/mod/pages.php:1956 ../../../../inc/mod/pages.php:1993
+#: ../../../../inc/mod/pages.php:2297 ../../../../inc/mod/pages.php:2419
+#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590
+msgid "Debug: SQL"
+msgstr "Derinimas: SQL"
+
+#. line 2
+#. line 6
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:19
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:29
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:22
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38
+msgid "Boards"
+msgstr "Lentos"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:57
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:183
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:61
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:76
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215
+msgid "edit"
+msgstr "modifikuoti"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:74
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:79
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:94
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97
+msgid "Create new board"
+msgstr "Sukūrti naują lentą"
+
+#. line 26
+#. line 32
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:84
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:90
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:105
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108
+msgid "Messages"
+msgstr "Pranešimai"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:120
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:98
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:125
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:128
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:143
+#: ../../../../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 "Jokio subjekto"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:161
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:170
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:185
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188
+msgid "View all noticeboard entries"
+msgstr "Žiūrėti visas pranešimų lentos įvestis"
+
+#. line 70
+#. line 76
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:192
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:204
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:219
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222
+msgid "Administration"
+msgstr "Administracija"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:239
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:255
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:270
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282
+msgid "Change password"
+msgstr "Pakeisti slaptažodį"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:271
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:291
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:306
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318
+msgid "Configuration"
+msgstr "Konfiguracija"
+
+#. line 16
+#. line 106
+#. line 16
+#. line 112
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. line 2
+#. line 13
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:282
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:293
+#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:80
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:307
+#: ../../../../search.php:168
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:322
+#: ../../../../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
+msgid "Search"
+msgstr "Ieškoti"
+
+#. line 2
+#. line 5
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:289
+#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:22
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
+msgid "Phrase:"
+msgstr "Frazė:"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:297
+msgid ""
+"(Search is case-insensitive, and based on keywords. To match exact phrases, "
+"use \"quotes\". Use an asterisk (*) for wildcard.)"
+msgstr ""
+"(Paieška neskiria mažųjų ir didžiųjų raidžių ir paremta raktažodžiais.Kad "
+"suderinti tam tikras frazes, naudokite \"quotes\". Naudokite asteriksą (*) "
+"kaip wildcard'ą.)"
+
+#. line 130
+#. line 136
+#. line 139
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:309
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:364
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:379
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391
+msgid "Debug"
+msgstr "Derinimas"
+
+#. line 132
+#. line 138
+#. line 141
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:313
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:369
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:384
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396
+msgid "Anti-spam"
+msgstr "Anti-spamas"
+
+#. line 133
+#. line 139
+#. line 142
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:316
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:373
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:388
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400
+msgid "Recent posts"
+msgstr "Neseni pranešimai"
+
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:322
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:380
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:395
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407
+msgid "SQL"
+msgstr "SQL"
+
+#. line 155
+#. line 161
+#. line 164
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:360
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:419
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:434
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446
+msgid "User account"
+msgstr "Naudotojo paskyra"
+
+#. line 158
+#. line 164
+#: ../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:365
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:425
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:440
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454
+msgid "Logout"
+msgstr "Atsijungti"
+
+#. line 3
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:21
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:21
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27
+msgid "New post"
+msgstr "Naujas komentaras"
+
+#. line 11
+#. line 7
+#. line 14
+#. line 7
+#. line 14
+#. line 8
+#. line 14
+#. line 7
+#. line 8
+#. line 14
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:27
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:31
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:36
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:27
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:55
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:55
+#: ../../../../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
+msgid "Name"
+msgstr "Vardas"
+
+#. line 34
+#. line 23
+#. line 37
+#. line 46
+#. line 23
+#. line 46
+#. line 12
+#. line 24
+#. line 46
+#. line 23
+#. line 12
+#. line 46
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:36
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:63
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:53
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:98
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:116
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:130
+#: ../../../../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 "Subjektas"
+
+#. line 16
+#. line 28
+#. line 16
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:42
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:69
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83
+msgid "Body"
+msgstr "Kūnas"
+
+#. line 21
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:49
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63
+msgid "Post to noticeboard"
+msgstr "Patalptinti į pranešimų lentą"
+
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:73
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:100
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118
+msgid "delete"
+msgstr "ištrinti"
+
+#. line 44
+#. line 56
+#. line 44
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:106
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:133
+#: ../../../../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 "sukūrta"
+
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:118
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:112
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:344
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:120
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:394
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:493
+#: ../../../../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
+msgid "deleted?"
+msgstr "ištrinta?"
+
+#. line 50
+#: ../../templates/cache/26/6f/05ca0da8ac09e2c2216cba2b6f95.php:125
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:136
+#: ../../../../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 24
+#. line 62
+#. line 150
+#. line 180
+#. 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
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:74
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:169
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:331
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:78
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:179
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:380
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:453
+#: ../../../../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
+msgid "Staff"
+msgstr "Administracija"
+
+#. line 25
+#. line 67
+#. line 25
+#. line 68
+#. line 25
+#. line 68
+#. line 25
+#. line 68
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:77
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:179
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:82
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:190
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
+msgid "Note"
+msgstr "Pastaba"
+
+#. line 26
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:80
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:86
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89
+msgid "Date"
+msgstr "Data"
+
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:86
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:93
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96
+msgid "Actions"
+msgstr "Veiksmai"
+
+#. line 49
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:142
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:151
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154
+msgid "remove"
+msgstr "pašalinti"
+
+#. line 75
+#. line 76
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:189
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:201
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208
+msgid "New note"
+msgstr "Nauja pastaba"
+
+#. line 92
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:226
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:240
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
+msgid "Status"
+msgstr "Statusas"
+
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:233
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:248
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44
+msgid "Expired"
+msgstr "Pasibaigė"
+
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:238
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:254
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50
+msgid "Active"
+msgstr "Aktyvus"
+
+#. line 8
+#. line 106
+#. line 8
+#. line 32
+#. line 8
+#. line 5
+#. 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
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:256
+#: ../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:32
+#: ../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:30
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:90
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:32
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:274
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:96
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:34
+#: ../../../../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
+msgid "Reason"
+msgstr "Priežastis"
+
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:269
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:288
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91
+msgid "no reason"
+msgstr "jokios priežasties"
+
+#. line 116
+#. line 182
+#. line 65
+#. line 3
+#. 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
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:278
+#: ../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:20
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:142
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:298
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:461
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:157
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:23
+#: ../../../../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
+msgid "Board"
+msgstr "Lenta"
+
+#. line 71
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:291
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:150
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:83
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:312
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:74
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:166
+#: ../../../../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
+msgid "all boards"
+msgstr "visos lentos"
+
+#. line 126
+#. line 128
+#. line 11
+#. line 43
+#. line 128
+#. line 43
+#. line 128
+#. line 11
+#. line 43
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:300
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:322
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
+msgid "Set"
+msgstr "Nustatyti"
+
+#. line 130
+#. line 132
+#. line 13
+#. line 47
+#. line 132
+#. line 47
+#. line 132
+#. line 13
+#. line 47
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:309
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:332
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
+msgid "Expires"
+msgstr "Pasibaigs"
+
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:322
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:137
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:346
+#: ../../../../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
+msgid "never"
+msgstr "niekada"
+
+#. line 161
+#. line 163
+#: ../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:357
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:408
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419
+msgid "Remove ban"
+msgstr "Pašalinti draudimą"
+
+#: ../../templates/cache/72/55/0d64283f30702de83ecfcb71f86a.php:25
+#: ../../../../templates/cache/72/55/0d64283f30702de83ecfcb71f86a.php:28
+#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31
+msgid "There are no reports."
+msgstr "Nėra pranešimų."
+
+#. line 2
+#: ../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:19
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:19
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25
+msgid "Delete Post"
+msgstr "Ištrinti komentarą"
+
+#. line 3
+#. line 87
+#. line 3
+#. line 87
+#. line 3
+#. line 87
+#. line 3
+#. line 87
+#. line 3
+#. line 75
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#: ../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:218
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:233
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
+msgid "File"
+msgstr "Failas"
+
+#. line 129
+#. line 117
+#. line 14
+#. line 132
+#. line 14
+#. line 132
+#. line 14
+#. line 131
+#. line 14
+#: ../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:23
+#: ../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:41
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:310
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:23
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:342
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
+#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:45
+#: ../../../../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
+msgid "Password"
+msgstr "Slaptažodis"
+
+#. line 5
+#: ../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:27
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:27
+#: ../../../../inc/display.php:429
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33
+#: ../../../../inc/display.php:424 ../../../../inc/display.php:461
+#: ../../../../inc/display.php:483
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36
+#: ../../../../inc/display.php:486
+msgid "Delete"
+msgstr "Ištrinti"
+
+#. line 10
+#: ../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:36
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:36
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47
+msgid "Report"
+msgstr "Pranešti"
+
+#. line 6
+#. line 4
+#: ../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:28
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:23
+#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:31
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30
+msgid "Username"
+msgstr "Slapyvardis"
+
+#. line 23
+#: ../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:52
+#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:57
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60
+msgid "Continue"
+msgstr "Toliau"
+
+#: ../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:94
+#: ../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:175
+#: ../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:63
+#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:121
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:98
+#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:62
+#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:135
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:119
+#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65
+#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134
+#: ../../../../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 "Grįžti į administratoriaus lentą"
+
+#. line 7
+#: ../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:36
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:41
+msgid "Report date"
+msgstr "Pranešimo data"
+
+#: ../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:45
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:51
+msgid "Reported by"
+msgstr "Pranešta "
+
+#: ../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:63
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:70
+msgid "Discard abuse report"
+msgstr "Pašalinti išnaudojimo pranešimą"
+
+#: ../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:80
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:88
+msgid "Discard all abuse reports by this IP address"
+msgstr "Pašalinti visus šio IP adreso išnaudojimo pranešimus."
+
+#. line 27
+#. line 32
+#. line 39
+#. line 33
+#: ../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:183
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:106
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:128
+#: ../../../../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 "Komentarų statusas: Atsiliepimas"
+
+#: ../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:186
+#: ../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:232
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:109
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:155
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:132
+#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:180
+#: ../../../../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 "Grįžti"
+
+#. line 33
+#: ../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:76
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
+msgid "Post news entry"
+msgstr "Patalpinti naujienų įvęstį"
+
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:66
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:70
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73
+msgid "(or subnet)"
+msgstr "(arba potinklis)"
+
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:80
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:85
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88
+msgid "hidden"
+msgstr "paslėpta"
+
+#. line 41
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:107
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:114
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117
+msgid "Message"
+msgstr "Pranešimas"
+
+#. line 46
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:117
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:130
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
+msgid "public; attached to post"
+msgstr "vieša; prisegta prie komentaro"
+
+#. line 58
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:133
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:147
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
+msgid "Length"
+msgstr "Ilgis"
+
+#. line 88
+#: ../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:192
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:209
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212
+msgid "New Ban"
+msgstr "Naujas draudimas"
+
+#. line 3
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:20
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26
+msgid "ID"
+msgstr "ID"
+
+#. line 5
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:26
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34
+msgid "Type"
+msgstr "Tipas"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:35
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45
+msgid "Last action"
+msgstr "Paskutinis veiksmas"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:61
+msgid "Janitor"
+msgstr "Valytojas"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:64
+msgid "Mod"
+msgstr "Moderatorius"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:67
+msgid "Admin"
+msgstr "Administratorius"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:78
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94
+msgid "none"
+msgstr "joks"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:153
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174
+msgid "Promote"
+msgstr "Paaukštinti"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:163
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187
+msgid "Demote"
+msgstr "Pažeminti"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:173
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204
+msgid "log"
+msgstr "Žurnalas"
+
+#: ../../templates/cache/c5/a7/fac83da087ee6e24edaf09e01122.php:193
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226
+msgid "PM"
+msgstr "Privatus pranešimas"
+
+#: ../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:105
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:107
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105
+msgid "File:"
+msgstr "Failas:"
+
+#: ../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:117
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:129
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:119
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:100
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:133
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:172
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:113
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:148
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:189
+#: ../../../../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
+msgid "Spoiler Image"
+msgstr "Paveiksliukas, galintis atskleisti svarbias detales"
+
+#: ../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:463
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:461
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:503
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:528
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506
+msgid "Reply"
+msgstr "Atsiliepimas"
+
+#: ../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:490
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:488
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:531
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:596
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574
+msgid "1 post"
+msgid_plural "%count% posts"
+msgstr[0] "1 pranešimas"
+msgstr[1] "%count% pranešimai"
+
+#: ../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:496
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:494
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:117
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:537
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:602
+#: ../../../../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
+msgid "and"
+msgstr "ir"
+
+#: ../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:507
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:505
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:549
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:614
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592
+msgid "1 image reply"
+msgid_plural "%count% image replies"
+msgstr[0] "1 atsiliepimas su paveiksliuku"
+msgstr[1] "%count% atsiliepimai su paveiksliukais"
+
+#: ../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:512
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:510
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:554
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:619
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597
+msgid "omitted. Click reply to view."
+msgstr "nerodomi. Paspauskite atsliepimą, kad peržiūrėti."
+
+#. line 21
+#. line 15
+#. line 24
+#. line 15
+#. line 24
+#. line 15
+#. line 24
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:40
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:76
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:76
+#: ../../../../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 27
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:62
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71
+msgid "Update"
+msgstr "Atnaujinti"
+
+#. line 45
+#. line 32
+#. line 48
+#. line 57
+#. line 32
+#. line 57
+#. line 32
+#. line 57
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:69
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:138
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:145
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:161
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79
+msgid "Comment"
+msgstr "Komentuoti"
+
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:89
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100
+msgid "Currently editing raw HTML."
+msgstr "Šiuo metu modifikuojamas grynas HTML."
+
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:96
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108
+msgid "Edit markup instead?"
+msgstr "Modifikuoti žymę?"
+
+#: ../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118
+msgid "Edit raw HTML instead?"
+msgstr "Modifikuoti gryną HTML?"
+
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:111
+msgid "Submit"
+msgstr "Įkelti"
+
+#. line 61
+#. line 73
+#. line 61
+#. line 73
+#. line 61
+#. line 73
+#. line 61
+#. line 73
+#. line 64
+#. line 73
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:159
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:185
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:191
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:217
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:209
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229
+msgid "Verification"
+msgstr "Patvirtinimas"
+
+#. line 97
+#. line 85
+#. line 100
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:236
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:268
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:252
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+msgid "Embed"
+msgstr "Įterpti"
+
+#. line 109
+#. line 97
+#. line 112
+#. line 111
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:259
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:291
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:276
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+msgid "Flags"
+msgstr "Vėliavos"
+
+#. line 113
+#. line 114
+#. line 113
+#. line 114
+#. line 113
+#. line 114
+#. line 113
+#. line 114
+#. line 101
+#. line 102
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:268
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:271
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:300
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:303
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:286
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:290
+#: ../../../../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
+msgid "Sticky"
+msgstr "Sticky"
+
+#. line 117
+#. line 118
+#. line 117
+#. line 118
+#. line 117
+#. line 118
+#. line 117
+#. line 118
+#. line 105
+#. line 106
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:280
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:283
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:312
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:315
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:300
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:304
+#: ../../../../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
+msgid "Lock"
+msgstr "Užrakinti"
+
+#. line 121
+#. line 122
+#. line 121
+#. line 122
+#. line 121
+#. line 122
+#. line 121
+#. line 122
+#. line 109
+#. line 110
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:292
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:295
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:324
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:327
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:314
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:318
+#: ../../../../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
+msgid "Raw HTML"
+msgstr "Grynas HTML"
+
+#. line 134
+#. line 122
+#. line 137
+#. line 136
+#: ../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:319
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:351
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
+msgid "(For file deletion.)"
+msgstr "(Failų trynimui.)"
+
+#: ../../../../inc/config.php:704 ../../../../inc/config.php:815
+#: ../../../../inc/config.php:873 ../../../../inc/config.php:878
+#: ../../../../inc/config.php:983 ../../../../inc/config.php:974
+msgid "Thread has reached its maximum reply limit."
+msgstr ""
+
+#: ../../../../inc/config.php:705 ../../../../inc/config.php:816
+#: ../../../../inc/config.php:874 ../../../../inc/config.php:879
+#: ../../../../inc/config.php:984 ../../../../inc/config.php:975
+msgid "Thread has reached its maximum image limit."
+msgstr ""
+
+#. Moderator errors
+#: ../../../../inc/config.php:733 ../../../../inc/config.php:844
+#: ../../../../inc/config.php:901 ../../../../inc/config.php:906
+#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1002
+#, php-format
+msgid ""
+"You are only allowed to unban %s users at a time. You tried to unban %u "
+"users."
+msgstr ""
+
+#: ../../../../inc/functions.php:578 ../../../../inc/functions.php:595
+#: ../../../../inc/functions.php:583 ../../../../inc/functions.php:600
+#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../../../inc/functions.php:580 ../../../../inc/functions.php:597
+#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602
+#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../../../inc/functions.php:582 ../../../../inc/functions.php:599
+#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604
+#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../../../inc/functions.php:584 ../../../../inc/functions.php:601
+#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606
+#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614
+msgid "day"
+msgid_plural "days"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../../../inc/functions.php:586 ../../../../inc/functions.php:603
+#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608
+#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606
+#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611
+#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619
+msgid "year"
+msgid_plural "years"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:628
+#: ../../../../inc/functions.php:670
+msgid "Banned!"
+msgstr ""
+
+#: ../../../../inc/display.php:79 ../../../../inc/display.php:83
+#: ../../../../inc/display.php:93 ../../../../inc/display.php:105
+#: ../../../../inc/display.php:108
+msgid "Error"
+msgstr ""
+
+#: ../../../../inc/display.php:80 ../../../../inc/display.php:84
+#: ../../../../inc/display.php:94 ../../../../inc/display.php:106
+#: ../../../../inc/display.php:109
+msgid "An error has occured."
+msgstr ""
+
+#: ../../../../inc/display.php:215 ../../../../inc/display.php:219
+#: ../../../../inc/display.php:229 ../../../../inc/display.php:241
+#: ../../../../inc/display.php:244
+#, php-format
+msgid "Post too long. Click here to view the full text."
+msgstr ""
+
+#: ../../../../inc/display.php:339 ../../../../inc/display.php:441
+#: ../../../../inc/display.php:331 ../../../../inc/display.php:436
+#: ../../../../inc/display.php:368 ../../../../inc/display.php:473
+#: ../../../../inc/display.php:385 ../../../../inc/display.php:495
+#: ../../../../inc/display.php:388 ../../../../inc/display.php:498
+msgid "Ban"
+msgstr ""
+
+#: ../../../../inc/display.php:343 ../../../../inc/display.php:445
+#: ../../../../inc/display.php:335 ../../../../inc/display.php:440
+#: ../../../../inc/display.php:372 ../../../../inc/display.php:477
+#: ../../../../inc/display.php:389 ../../../../inc/display.php:499
+#: ../../../../inc/display.php:392 ../../../../inc/display.php:502
+msgid "Ban & Delete"
+msgstr ""
+
+#: ../../../../inc/display.php:347 ../../../../inc/display.php:449
+#: ../../../../inc/display.php:339 ../../../../inc/display.php:444
+#: ../../../../inc/display.php:376 ../../../../inc/display.php:481
+#: ../../../../inc/display.php:393 ../../../../inc/display.php:503
+#: ../../../../inc/display.php:396 ../../../../inc/display.php:506
+msgid "Delete file"
+msgstr ""
+
+#: ../../../../inc/display.php:347 ../../../../inc/display.php:449
+#: ../../../../inc/display.php:339 ../../../../inc/display.php:444
+#: ../../../../inc/display.php:376 ../../../../inc/display.php:481
+#: ../../../../inc/display.php:393 ../../../../inc/display.php:503
+#: ../../../../inc/display.php:396 ../../../../inc/display.php:506
+msgid "Are you sure you want to delete this file?"
+msgstr ""
+
+#: ../../../../inc/display.php:429 ../../../../inc/display.php:424
+#: ../../../../inc/display.php:461 ../../../../inc/display.php:483
+#: ../../../../inc/display.php:486
+msgid "Are you sure you want to delete this?"
+msgstr ""
+
+#: ../../../../inc/display.php:433 ../../../../inc/display.php:428
+#: ../../../../inc/display.php:465 ../../../../inc/display.php:487
+#: ../../../../inc/display.php:490
+msgid "Delete all posts by IP"
+msgstr ""
+
+#: ../../../../inc/display.php:433 ../../../../inc/display.php:428
+#: ../../../../inc/display.php:465 ../../../../inc/display.php:487
+#: ../../../../inc/display.php:490
+msgid "Are you sure you want to delete all posts by this IP address?"
+msgstr ""
+
+#: ../../../../inc/display.php:437 ../../../../inc/display.php:432
+#: ../../../../inc/display.php:469 ../../../../inc/display.php:491
+#: ../../../../inc/display.php:494
+msgid "Delete all posts by IP across all boards"
+msgstr ""
+
+#: ../../../../inc/display.php:437 ../../../../inc/display.php:432
+#: ../../../../inc/display.php:469 ../../../../inc/display.php:491
+#: ../../../../inc/display.php:494
+msgid ""
+"Are you sure you want to delete all posts by this IP address, across all "
+"boards?"
+msgstr ""
+
+#: ../../../../inc/display.php:454 ../../../../inc/display.php:453
+#: ../../../../inc/display.php:490 ../../../../inc/display.php:512
+#: ../../../../inc/display.php:515
+msgid "Make thread not sticky"
+msgstr ""
+
+#: ../../../../inc/display.php:456 ../../../../inc/display.php:455
+#: ../../../../inc/display.php:492 ../../../../inc/display.php:514
+#: ../../../../inc/display.php:517
+msgid "Make thread sticky"
+msgstr ""
+
+#: ../../../../inc/display.php:460 ../../../../inc/display.php:459
+#: ../../../../inc/display.php:496 ../../../../inc/display.php:518
+#: ../../../../inc/display.php:521
+msgid "Allow thread to be bumped"
+msgstr ""
+
+#: ../../../../inc/display.php:462 ../../../../inc/display.php:461
+#: ../../../../inc/display.php:498 ../../../../inc/display.php:520
+#: ../../../../inc/display.php:523
+msgid "Prevent thread from being bumped"
+msgstr ""
+
+#: ../../../../inc/display.php:467 ../../../../inc/display.php:466
+#: ../../../../inc/display.php:503 ../../../../inc/display.php:525
+#: ../../../../inc/display.php:528
+msgid "Unlock thread"
+msgstr ""
+
+#: ../../../../inc/display.php:469 ../../../../inc/display.php:468
+#: ../../../../inc/display.php:505 ../../../../inc/display.php:527
+#: ../../../../inc/display.php:530
+msgid "Lock thread"
+msgstr ""
+
+#: ../../../../inc/display.php:472 ../../../../inc/display.php:471
+#: ../../../../inc/display.php:508 ../../../../inc/display.php:530
+#: ../../../../inc/display.php:533
+msgid "Move thread to another board"
+msgstr ""
+
+#. How long before Tinyboard forgets about a mute?
+#. 2 weeks
+#. If you want to alter the algorithm a bit. Default value is 2.
+#. (n^x where x is the number of previous mutes)
+#: ../../../../inc/config.php:342 ../../../../inc/config.php:343
+#: ../../../../inc/config.php:346 ../../../../inc/config.php:473
+msgid "You have been muted for unoriginal content."
+msgstr ""
+
+#. The names on the post buttons. (On most imageboards, these are both just "Post").
+#: ../../../../inc/config.php:641 ../../../../inc/config.php:672
+#: ../../../../inc/config.php:677 ../../../../inc/config.php:781
+#: ../../../../inc/config.php:772
+msgid "New Topic"
+msgstr ""
+
+#: ../../../../inc/config.php:642 ../../../../inc/config.php:673
+#: ../../../../inc/config.php:678 ../../../../inc/config.php:782
+#: ../../../../inc/config.php:773
+msgid "New Reply"
+msgstr ""
+
+#. Additional lines added to the footer of all pages.
+#: ../../../../inc/config.php:653 ../../../../inc/config.php:684
+#: ../../../../inc/config.php:689 ../../../../inc/config.php:793
+#: ../../../../inc/config.php:784
+msgid ""
+"All trademarks, copyrights, comments, and images on this page are owned by "
+"and are the responsibility of their respective parties."
+msgstr ""
+
+#. 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:1019 ../../../../inc/config.php:1081
+#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
+#: ../../../../inc/config.php:1180
+msgid "USER WAS BANNED FOR THIS POST"
+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 ""
+
+#. 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 ""
+
+#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:35
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38
+msgid "Posts"
+msgstr ""
+
+#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:46
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49
+msgid "IP address notes"
+msgstr ""
+
+#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:59
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62
+msgid "Bans"
+msgstr ""
+
+#. line 18
+#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:85
+#: ../../../../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 ""
+
+#. line 118
+#. line 124
+#. line 127
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:330
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:345
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357
+msgid "Other"
+msgstr ""
+
+#. line 140
+#. line 142
+#. line 14
+#. line 57
+#. line 142
+#. line 57
+#. line 142
+#. line 14
+#. line 57
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:356
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
+msgid "Seen"
+msgstr ""
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:364
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167
+msgid "Yes"
+msgstr ""
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:370
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173
+msgid "No"
+msgstr ""
+
+#. line 181
+#. line 183
+#. line 5
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:457
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34
+msgid "Time"
+msgstr ""
+
+#. line 183
+#. line 185
+#. line 89
+#. line 185
+#. line 89
+#. line 185
+#. line 7
+#. line 89
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:465
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
+msgid "Action"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:36
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35
+msgid "You were banned! ;_;"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:42
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41
+msgid "You are banned! ;_;"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:53
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
+msgid "You were banned from"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:59
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
+msgid "You have been banned from"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:83
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
+msgid "for the following reason:"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:89
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88
+msgid "for an unspecified reason."
+msgstr ""
+
+#. line 32
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:111
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110
+msgid "Your ban was filed on"
+msgstr ""
+
+#. line 51
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:124
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:157
+#: ../../../../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/e5/22/4711dd22e4c786b4de405db7a449.php:130
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129
+msgid "expires"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:134
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133
+msgid "from now, which is on"
+msgstr ""
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:184
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183
+msgid "will not expire"
+msgstr ""
+
+#. line 78
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:193
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192
+msgid "Your IP address is"
+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 ""
+
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61
+#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64
+msgid "(No news to show.)"
+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] ""
+
+#: ../../../../search.php:5
+msgid "Post search is disabled"
+msgstr ""
+
+#: ../../../../search.php:25 ../../../../search.php:31
+msgid "Wait a while before searching again, please."
+msgstr ""
+
+#: ../../../../search.php:131
+msgid "Query too broad."
+msgstr ""
+
+#: ../../../../search.php:152
+#, php-format
+msgid "%d result in"
+msgid_plural "%d results in"
+msgstr[0] ""
+msgstr[1] ""
+
+#: ../../../../search.php:163
+msgid "No results."
+msgstr ""
+
+#: ../../../../inc/display.php:343 ../../../../inc/display.php:448
+#: ../../../../inc/display.php:380 ../../../../inc/display.php:485
+#: ../../../../inc/display.php:397 ../../../../inc/display.php:507
+#: ../../../../inc/display.php:400 ../../../../inc/display.php:510
+msgid "Spoiler File"
+msgstr ""
+
+#: ../../../../inc/display.php:343 ../../../../inc/display.php:448
+#: ../../../../inc/display.php:380 ../../../../inc/display.php:485
+#: ../../../../inc/display.php:397 ../../../../inc/display.php:507
+#: ../../../../inc/display.php:400 ../../../../inc/display.php:510
+msgid "Are you sure you want to spoiler this file?"
+msgstr ""
+
+#: ../../../../inc/display.php:347 ../../../../inc/display.php:384
+#: ../../../../inc/display.php:401 ../../../../inc/display.php:404
+msgid "Move reply to another board"
+msgstr ""
+
+#: ../../../../inc/mod/pages.php:1094 ../../../../inc/mod/pages.php:1105
+#: ../../../../inc/mod/pages.php:1165
+msgid "Move reply"
+msgstr ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:542
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520
+msgid "View All"
+msgstr ""
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:559
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537
+msgid "Last 1 Post"
+msgid_plural "Last %count% Posts"
+msgstr[0] ""
+msgstr[1] ""
+
+#. line 90
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+msgid "Or URL"
+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
+msgid ""
+"Your code contained PHP syntax errors. Please go back and correct them. PHP "
+"says: "
+msgstr ""
+
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25
+msgid "There are no active bans."
+msgstr ""
+
+#. line 8
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39
+msgid "IP address/mask"
+msgstr ""
+
+#. line 12
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55
+msgid "Duration"
+msgstr ""
+
+#. line 92
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269
+msgid "Unban selected"
+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 ""
+
+#: ../../../../post.php:802 ../../../../post.php:811
+msgid "That ban doesn't exist or is not for you."
+msgstr ""
+
+#: ../../../../post.php:806 ../../../../post.php:815
+msgid "You cannot appeal a ban of this length."
+msgstr ""
+
+#: ../../../../post.php:813 ../../../../post.php:822
+msgid "You cannot appeal this ban again."
+msgstr ""
+
+#: ../../../../post.php:818 ../../../../post.php:827
+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
+msgid "Failed to resize image!"
+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
+#: ../../../../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
+#: ../../../../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
+#: ../../../../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
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30
+msgid "IP address"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80
+msgid "Unknown"
+msgstr ""
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191
+msgid "Are you sure you want to demote yourself?"
+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 ""
diff --git a/inc/locale/pl_PL/LC_MESSAGES/javascript.js b/inc/locale/pl_PL/LC_MESSAGES/javascript.js
index efbb9ecd..cc9f4e69 100644
--- a/inc/locale/pl_PL/LC_MESSAGES/javascript.js
+++ b/inc/locale/pl_PL/LC_MESSAGES/javascript.js
@@ -1 +1 @@
-l10n = {"Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to >>{0}<\/small>":"Tryb postowania: Odpowied\u017a na >>{0}<\/small>","Return":"Powr\u00f3t","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Sun":"nie","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","File":"Plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","hide":"ukryj","show":"poka\u017c","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Style: ":"Styl: ","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Catalog":"Katalog","Expand all images":"Rozwi\u0144 wszystkie obrazki","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 oberwowa\u0107 ten board","Watch this board":"Obserwuj ten board"};
\ No newline at end of file
+l10n = {"Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to >>{0}<\/small>":"Tryb postowania: Odpowied\u017a na >>{0}<\/small>","Return":"Powr\u00f3t","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Sun":"nie","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","File":"Plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","hide":"ukryj","show":"poka\u017c","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Style: ":"Styl: ","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Catalog":"Katalog","Expand all images":"Rozwi\u0144 wszystkie obrazki","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 oberwowa\u0107 ten board","Watch this board":"Obserwuj ten board","Sunday":"Niedziela","Monday":"Poniedzia\u0142ek","Tuesday":"Wtorek","Wednesday":"\u015aroda","Thursday":"Czwartek","Friday":"Pi\u0105tek","Saturday":"Sobota","January":"stycznia","February":"lutego","March":"marca","April":"kwietnia","May":"maj","June":"czerwca","July":"lipca","August":"sierpnia","September":"wrze\u015bnia","October":"pa\u017adziernika","November":"listopada","December":"grudnia","Jan":"sty","Feb":"lut","Mar":"mar","Apr":"kwi","Jun":"cze","Jul":"lip","Aug":"sie","Sep":"wrz","Oct":"pa\u017a","Nov":"lis","Dec":"gru","AM":"AM","PM":"PM","am":"am","pm":"pm"};
\ No newline at end of file
diff --git a/inc/locale/pl_PL/LC_MESSAGES/javascript.po b/inc/locale/pl_PL/LC_MESSAGES/javascript.po
index b2e82739..09dd14a1 100644
--- a/inc/locale/pl_PL/LC_MESSAGES/javascript.po
+++ b/inc/locale/pl_PL/LC_MESSAGES/javascript.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-12-29 01:35+0100\n"
+"POT-Creation-Date: 2014-02-23 19:40+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME
Your file's size: %filesz% bytes"
msgstr ""
"Maksymalny rozmiar pliku: %maxsz% bajtów
Rozmiar twojego pliku: %filesz% "
@@ -370,6 +403,7 @@ msgstr ""
#: ../../../../inc/config.php:726 ../../../../inc/config.php:732
#: ../../../../inc/config.php:834 ../../../../inc/config.php:892
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:993
msgid "The file was too big."
msgstr "Plik jest za duży."
@@ -385,6 +419,7 @@ msgstr "Niepoprawne archiwum!"
#: ../../../../inc/config.php:728 ../../../../inc/config.php:734
#: ../../../../inc/config.php:836 ../../../../inc/config.php:893
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:994
#, php-format
msgid "That file already exists!"
msgstr "Ten plik już istnieje!"
@@ -394,6 +429,7 @@ msgstr "Ten plik już istnieje!"
#: ../../../../inc/config.php:730 ../../../../inc/config.php:736
#: ../../../../inc/config.php:838 ../../../../inc/config.php:895
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
+#: ../../../../inc/config.php:996
#, php-format
msgid "You'll have to wait another %s before deleting that."
msgstr "Musisz poczekać kolejne %s przed usunięciem tego."
@@ -403,6 +439,7 @@ msgstr "Musisz poczekać kolejne %s przed usunięciem tego."
#: ../../../../inc/config.php:731 ../../../../inc/config.php:737
#: ../../../../inc/config.php:839 ../../../../inc/config.php:896
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:997
msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr ""
"Wykryto próbę wykorzystania luki wykrywania typu MIME (XSS w IE); post "
@@ -413,6 +450,7 @@ msgstr ""
#: ../../../../inc/config.php:732 ../../../../inc/config.php:738
#: ../../../../inc/config.php:840 ../../../../inc/config.php:897
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:998
msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "Nie można było zrozumieć URL-a wideo, którego próbowano zapostować."
@@ -421,6 +459,7 @@ msgstr "Nie można było zrozumieć URL-a wideo, którego próbowano zapostować
#: ../../../../inc/config.php:733 ../../../../inc/config.php:739
#: ../../../../inc/config.php:841 ../../../../inc/config.php:898
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:999
msgid "You seem to have mistyped the verification."
msgstr "Wygląda na to, że przepisano źle weryfikację."
@@ -429,6 +468,7 @@ msgstr "Wygląda na to, że przepisano źle weryfikację."
#: ../../../../inc/config.php:737 ../../../../inc/config.php:743
#: ../../../../inc/config.php:845 ../../../../inc/config.php:902
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1003
msgid "Invalid username and/or password."
msgstr "Błędna nazwa użytkownika, bądź hasło"
@@ -437,6 +477,7 @@ msgstr "Błędna nazwa użytkownika, bądź hasło"
#: ../../../../inc/config.php:738 ../../../../inc/config.php:744
#: ../../../../inc/config.php:846 ../../../../inc/config.php:903
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1004
msgid "You are not a mod…"
msgstr "Nie jesteś moderatorem"
@@ -445,6 +486,7 @@ msgstr "Nie jesteś moderatorem"
#: ../../../../inc/config.php:739 ../../../../inc/config.php:745
#: ../../../../inc/config.php:847 ../../../../inc/config.php:904
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1005
msgid ""
"Invalid username and/or password. Your user may have been deleted or changed."
msgstr ""
@@ -456,6 +498,7 @@ msgstr ""
#: ../../../../inc/config.php:740 ../../../../inc/config.php:746
#: ../../../../inc/config.php:848 ../../../../inc/config.php:905
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1006
msgid "Invalid/malformed cookies."
msgstr "Niepoprawne/zmodyfikowane pliki cookie."
@@ -464,6 +507,7 @@ msgstr "Niepoprawne/zmodyfikowane pliki cookie."
#: ../../../../inc/config.php:741 ../../../../inc/config.php:747
#: ../../../../inc/config.php:849 ../../../../inc/config.php:906
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1007
msgid "Your browser didn't submit an input when it should have."
msgstr "Twoja przeglądarka nie wysłała pola, kiedy powinna."
@@ -472,6 +516,7 @@ msgstr "Twoja przeglądarka nie wysłała pola, kiedy powinna."
#: ../../../../inc/config.php:742 ../../../../inc/config.php:748
#: ../../../../inc/config.php:850 ../../../../inc/config.php:907
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1008
#, php-format
msgid "The %s field is required."
msgstr "Pole %s jest wymagane."
@@ -481,6 +526,7 @@ msgstr "Pole %s jest wymagane."
#: ../../../../inc/config.php:743 ../../../../inc/config.php:749
#: ../../../../inc/config.php:851 ../../../../inc/config.php:908
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1009
#, php-format
msgid "The %s field was invalid."
msgstr "Pole %s jest niepoprawne."
@@ -490,6 +536,7 @@ msgstr "Pole %s jest niepoprawne."
#: ../../../../inc/config.php:744 ../../../../inc/config.php:750
#: ../../../../inc/config.php:852 ../../../../inc/config.php:909
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1010
#, php-format
msgid "There is already a %s board."
msgstr "Już istnieje board %s"
@@ -499,6 +546,7 @@ msgstr "Już istnieje board %s"
#: ../../../../inc/config.php:745 ../../../../inc/config.php:751
#: ../../../../inc/config.php:853 ../../../../inc/config.php:910
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1011
msgid "You don't have permission to do that."
msgstr "Nie masz uprawnień do wykonania tej czynności."
@@ -507,6 +555,7 @@ msgstr "Nie masz uprawnień do wykonania tej czynności."
#: ../../../../inc/config.php:746 ../../../../inc/config.php:752
#: ../../../../inc/config.php:854 ../../../../inc/config.php:911
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1012
msgid "That post doesn't exist…"
msgstr "Ten post nie istnieje..."
@@ -515,6 +564,7 @@ msgstr "Ten post nie istnieje..."
#: ../../../../inc/config.php:747 ../../../../inc/config.php:753
#: ../../../../inc/config.php:855 ../../../../inc/config.php:912
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
+#: ../../../../inc/config.php:1013
msgid "Page not found."
msgstr "Strona nie znaleziona."
@@ -523,6 +573,7 @@ msgstr "Strona nie znaleziona."
#: ../../../../inc/config.php:748 ../../../../inc/config.php:754
#: ../../../../inc/config.php:856 ../../../../inc/config.php:913
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
+#: ../../../../inc/config.php:1014
#, php-format
msgid "That mod already exists!"
msgstr "Ten moderator już istnieje!"
@@ -532,6 +583,7 @@ msgstr "Ten moderator już istnieje!"
#: ../../../../inc/config.php:749 ../../../../inc/config.php:755
#: ../../../../inc/config.php:857 ../../../../inc/config.php:914
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
+#: ../../../../inc/config.php:1015
msgid "That theme doesn't exist!"
msgstr "Ten dodatek nie istnieje!"
@@ -574,7 +626,7 @@ msgstr "[Przenieś]"
#: /var/www/html/Tinyboard/inc/config.php:801 ../../../../inc/config.php:911
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1081 ../../../../inc/config.php:1086
-#: ../../../../inc/config.php:1189
+#: ../../../../inc/config.php:1189 ../../../../inc/config.php:1180
msgid "USER WAS BANNED FOR THIS POST"
msgstr "UŻYTKOWNIK ZOSTAŁ ZBANOWANY ZA TEGO POSTA"
@@ -762,6 +814,9 @@ msgstr "Przenieś wątek na inny board"
#. line 14
#. line 8
#. line 14
+#. line 7
+#. line 8
+#. line 14
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:48
#: /var/www/html/Tinyboard/mod.php:667 /var/www/html/Tinyboard/mod.php:750
#: /var/www/html/Tinyboard/mod.php:833
@@ -776,6 +831,7 @@ msgstr "Przenieś wątek na inny board"
#: ../../../../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
msgid "Name"
msgstr "Nazwa"
@@ -786,12 +842,15 @@ msgstr "Nazwa"
#. line 24
#. line 15
#. line 24
+#. line 15
+#. line 24
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:62
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:76
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:76
#: ../../../../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 "E-mail"
@@ -808,6 +867,9 @@ msgstr "E-mail"
#. line 12
#. line 24
#. line 46
+#. line 23
+#. line 12
+#. line 46
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:96
#: /var/www/html/Tinyboard/mod.php:753 /var/www/html/Tinyboard/mod.php:839
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:95
@@ -819,6 +881,7 @@ msgstr "E-mail"
#: ../../../../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 "Temat"
@@ -852,6 +915,8 @@ msgstr "Schowaj obrazek"
#. line 57
#. line 32
#. line 57
+#. line 32
+#. line 57
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:119
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:121
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:145
@@ -859,6 +924,7 @@ msgstr "Schowaj obrazek"
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:161
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79
msgid "Comment"
msgstr "Komentarz"
@@ -998,6 +1064,16 @@ msgstr "Weryfikacja"
#. 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
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:149
#: /var/www/html/Tinyboard/templates/cache/dd/1a/77e08f0c1b4ecf707c5a3e5a70be.php:22
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:165
@@ -1114,6 +1190,16 @@ msgstr "Flagi"
#. 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
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:188
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:191
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:215
@@ -1204,6 +1290,16 @@ msgstr "Przyklejony"
#. 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
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:200
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:203
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:227
@@ -1294,6 +1390,16 @@ msgstr "Zablokowany"
#. 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
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:212
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:215
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:239
@@ -1323,6 +1429,8 @@ msgstr "Czysty HTML"
#. line 132
#. line 14
#. line 131
+#. line 14
+#. line 131
#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:230
#: /var/www/html/Tinyboard/templates/cache/dd/1a/77e08f0c1b4ecf707c5a3e5a70be.php:23
#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:257
@@ -1555,6 +1663,12 @@ msgstr "Usuń post"
#. line 8
#. line 32
#. line 23
+#. line 8
+#. line 108
+#. line 32
+#. line 9
+#. line 23
+#. line 8
#: /var/www/html/Tinyboard/templates/cache/dd/1a/77e08f0c1b4ecf707c5a3e5a70be.php:32
#: /var/www/html/Tinyboard/mod.php:1801
#: ../../../../templates/cache/a8/a6/1022091d3402e085395b12e6279a.php:32
@@ -1711,11 +1825,21 @@ msgstr "Zarządzaj dodatkami"
#. line 2
#. line 5
#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
+#. line 2
+#. line 5
#: /var/www/html/Tinyboard/mod.php:170
#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:19
#: ../../../../templates/cache/c3/de/6ff26042c5b94cc80055e6f209d2.php:24
#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:22
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:"
msgstr "Wyrażenie:"
@@ -1735,6 +1859,26 @@ msgstr "Wyrażenie:"
#. 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 115
+#. line 16
+#. line 2
+#. line 13
#: /var/www/html/Tinyboard/mod.php:172
#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:72
#: ../../../../templates/cache/c3/de/6ff26042c5b94cc80055e6f209d2.php:19
@@ -1746,6 +1890,8 @@ msgstr "Wyrażenie:"
#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:322
#: ../../../../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
msgid "Search"
msgstr "Szukaj"
@@ -1786,9 +1932,11 @@ msgstr "Użytkownik"
#. line 16
#. line 134
+#. line 4
#: /var/www/html/Tinyboard/mod.php:403 /var/www/html/Tinyboard/mod.php:1801
#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:48
#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:349
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30
msgid "IP address"
msgstr "Adres IP"
@@ -1820,6 +1968,12 @@ msgstr "temu"
#. line 184
#. line 65
#. line 33
+#. line 118
+#. line 184
+#. line 65
+#. line 10
+#. line 6
+#. line 33
#: /var/www/html/Tinyboard/mod.php:405 /var/www/html/Tinyboard/mod.php:1801
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:278
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:427
@@ -1836,6 +1990,7 @@ msgstr "temu"
#: ../../../../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
msgid "Board"
msgstr "Board"
@@ -1846,12 +2001,16 @@ msgstr "Board"
#. line 89
#. line 185
#. line 89
+#. line 185
+#. line 7
+#. line 89
#: /var/www/html/Tinyboard/mod.php:406
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:430
#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:358
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:465
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
msgid "Action"
msgstr "Akcja"
@@ -1947,6 +2106,7 @@ msgstr "Odinstaluj wszystkie dodatki"
#. line 27
#. line 16
#. line 28
+#. line 16
#: /var/www/html/Tinyboard/mod.php:756 /var/www/html/Tinyboard/mod.php:842
#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:69
#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55
@@ -1990,31 +2150,41 @@ msgstr "puste"
msgid "unread"
msgstr "nieprzeczytane"
+#. line 3
#: /var/www/html/Tinyboard/mod.php:1221
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26
msgid "ID"
msgstr "ID"
#. line 6
+#. line 4
#: /var/www/html/Tinyboard/mod.php:1221
#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:28
#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:31
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30
msgid "Username"
msgstr "Nazwa użytkownika"
+#. line 5
#: /var/www/html/Tinyboard/mod.php:1221
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34
msgid "Type"
msgstr "Typ"
+#. line 2
+#. line 6
#. line 2
#: /var/www/html/Tinyboard/mod.php:1221
#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:19
#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:22
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38
msgid "Boards"
msgstr "Boardy"
#: /var/www/html/Tinyboard/mod.php:1221
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45
msgid "Last action"
msgstr "Ostatnia akcja"
@@ -2034,6 +2204,9 @@ msgstr "Nie można się ponownie zalogować po zmianie hasła. (?)"
#. line 43
#. line 128
#. line 43
+#. line 128
+#. line 11
+#. line 43
#: /var/www/html/Tinyboard/mod.php:1801
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:300
#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:134
@@ -2052,6 +2225,9 @@ msgstr "Ustawione"
#. line 47
#. line 132
#. line 47
+#. line 132
+#. line 13
+#. line 47
#: /var/www/html/Tinyboard/mod.php:1801
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:309
#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:140
@@ -2092,6 +2268,13 @@ msgstr "Wygasa"
#. line 152
#. line 182
#. line 67
+#. line 24
+#. line 63
+#. line 152
+#. line 182
+#. line 15
+#. line 3
+#. line 67
#: /var/www/html/Tinyboard/mod.php:1801
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:74
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:169
@@ -2110,6 +2293,7 @@ msgstr "Wygasa"
#: ../../../../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
msgid "Staff"
msgstr "Ekipa"
@@ -2149,7 +2333,7 @@ msgstr "Nie ma boardu na który można to przenieść; istnieje tylko jeden."
#: ../../../../inc/config.php:753 ../../../../inc/config.php:750
#: ../../../../inc/config.php:756 ../../../../inc/config.php:858
#: ../../../../inc/config.php:915 ../../../../inc/config.php:920
-#: ../../../../inc/config.php:1025
+#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1016
msgid "Invalid security token! Please go back and try again."
msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponownie."
@@ -2186,6 +2370,9 @@ msgstr "Nowy board"
#. line 104
#. line 20
#. line 18
+#. line 104
+#. line 20
+#. line 18
#: ../../../../inc/mod/pages.php:586 ../../../../inc/mod/pages.php:612
#: ../../../../inc/mod/pages.php:628 ../../../../inc/mod/pages.php:762
#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:247
@@ -2234,6 +2421,7 @@ msgstr "Nie można przenieść wątku; istnieje tylko jeden board."
#: ../../../../inc/mod/pages.php:1188 ../../../../inc/mod/pages.php:1195
#: ../../../../inc/mod/pages.php:1289 ../../../../inc/mod/pages.php:1300
#: ../../../../inc/mod/pages.php:1361
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114
msgid "Move thread"
msgstr "Przenieś wątek"
@@ -2342,6 +2530,7 @@ msgstr ""
#: ../../../../inc/config.php:707 ../../../../inc/config.php:713
#: ../../../../inc/config.php:815 ../../../../inc/config.php:873
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983
+#: ../../../../inc/config.php:974
msgid "Thread has reached its maximum reply limit."
msgstr "Ten temat osiągnął swój maksymalny limit odpowiedzi."
@@ -2349,6 +2538,7 @@ msgstr "Ten temat osiągnął swój maksymalny limit odpowiedzi."
#: ../../../../inc/config.php:708 ../../../../inc/config.php:714
#: ../../../../inc/config.php:816 ../../../../inc/config.php:874
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984
+#: ../../../../inc/config.php:975
msgid "Thread has reached its maximum image limit."
msgstr "Ten temat osiągnął swój maksymalny limit obrazków."
@@ -2356,6 +2546,7 @@ msgstr "Ten temat osiągnął swój maksymalny limit obrazków."
#: ../../../../inc/config.php:729 ../../../../inc/config.php:735
#: ../../../../inc/config.php:837 ../../../../inc/config.php:894
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
+#: ../../../../inc/config.php:995
#, php-format
msgid "That file already exists in this thread!"
msgstr "Ten plik już istnieje w tym temacie!"
@@ -2365,6 +2556,7 @@ msgstr "Ten plik już istnieje w tym temacie!"
#: ../../../../inc/config.php:736 ../../../../inc/config.php:742
#: ../../../../inc/config.php:844 ../../../../inc/config.php:901
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1002
#, php-format
msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u "
@@ -2438,11 +2630,13 @@ msgstr ""
#. line 8
#: ../../../../templates/cache/c3/de/6ff26042c5b94cc80055e6f209d2.php:32
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40
msgid "Select board"
msgstr "Wybierz board"
#. line 17
#: ../../../../templates/cache/c3/de/6ff26042c5b94cc80055e6f209d2.php:61
+#: ../../../../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.
>>{0}<\/small>":"Re\u017eim prispievania: Odpove\u010f na >>{0}<\/small>","Return":"N\u00e1vrat","Click reply to view.":"Klikni na Odpove\u010f pre ich zobrazenie.","Click to expand":"Klikni sem pre zobrazenie","Hide expanded replies":"Skry\u0165 zobrazen\u00e9 odpovede","Reported post(s).":"Pr\u00edspevok nahl\u00e1sen\u00fd.","An unknown error occured!":"Nastala nezn\u00e1ma chyba!","Something went wrong... An unknown error occured!":"Stalo sa nie\u010do zl\u00e9... Nastala nezn\u00e1ma chyba!","Working...":"Pracujem...","Posting... (#%)":"Odosielam... (#%)","Posted...":"Odoslan\u00e9...","An unknown error occured when posting!":"Pri odosielan\u00ed nastala nezn\u00e1ma chyba!","Posting...":"Odosielam...","Password":"Heslo","Delete file only":"Odstr\u00e1ni\u0165 iba s\u00fabor","Delete":"Odstr\u00e1ni\u0165","Reason":"D\u00f4vod","Report":"Nahl\u00e1si\u0165","Catalog":"Katal\u00f3g","URL":"Adresa","Select":"Vybra\u0165","Remote":"Vzdialen\u00fd","Embed":"Vlo\u017ei\u0165","Oekaki":"Oekaki","hidden":"skryt\u00fd","Show images":"Zobrazi\u0165 obr\u00e1zky","Hide images":"Skry\u0165 obr\u00e1zky","Expand all images":"Otvori\u0165 v\u0161etky obr\u00e1zky","Save as original filename":"Ulo\u017ei\u0165 s p\u00f4vodn\u00fdm n\u00e1zvom","(hide threads from this board)":"(skry\u0165 vl\u00e1kna z tejto dosky)","(show threads from this board)":"(zobrazi\u0165 vl\u00e1kna z tejto dosky)","No more threads to display":"\u017diadne \u010fal\u0161ie vl\u00e1kna na zobrazenie","Loading...":"Na\u010d\u00edtanie...","Hello!":"Ahoj!","{0} users":"{0} u\u017e\u00edvate\u013eov","Sunday":"Nede\u013ea","Monday":"Pondelok","Tuesday":"Utorok","Wednesday":"Streda","Thursday":"\u0160tvrtok","Friday":"Piatok","Saturday":"Sobota","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"Marec","April":"Apr\u00edl","May":"M\u00e1j","June":"J\u00fan","July":"J\u00fal","August":"August","September":"September","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"J\u00fan","Jul":"J\u00fal","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"Doobeda","PM":"Poobede","am":"doobeda","pm":"poobede"};
\ No newline at end of file
diff --git a/inc/locale/sk_SK/LC_MESSAGES/javascript.po b/inc/locale/sk_SK/LC_MESSAGES/javascript.po
new file mode 100644
index 00000000..6f356389
--- /dev/null
+++ b/inc/locale/sk_SK/LC_MESSAGES/javascript.po
@@ -0,0 +1,431 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR
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 "" +"Vyhľadávanie nezáleží od veľkosti znakov a je založené na kľúčových slovách. " +"Pre vyhľadávanie presnej frázy použi \"úvodzovky\". Použi hviezdičku (*) ako " +"ľubovoľný znak.
Pri vyhľadávaní "
+"môžeš použiť nasledovné filtre: id, thread"
+"strong>, subject a name. Pre použitie "
+"filtra jednoducho pridaj do svojej požiadavky napríklad: name:Anonymous"
+"em> alebo subject:\"Nejaké vlákno\". Hviezdičky vo filtroch nemôžu "
+"byť použité."
+
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:57
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:61
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:76
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79
+msgid "edit"
+msgstr "upraviť"
+
+#. line 26
+#. line 32
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:84
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:90
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:105
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108
+msgid "Messages"
+msgstr "Správy"
+
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:161
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:170
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:185
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188
+msgid "View all noticeboard entries"
+msgstr "Zobraziť všetky položky na nástenke"
+
+#. line 70
+#. line 76
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:192
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:204
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:219
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222
+msgid "Administration"
+msgstr "Administrácia"
+
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:239
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:255
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:270
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282
+msgid "Change password"
+msgstr "Zmeniť heslo"
+
+#. line 118
+#. line 130
+#. line 136
+#. line 139
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:308
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:341
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:364
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:379
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391
+msgid "Debug"
+msgstr "Debug"
+
+#. line 120
+#. line 132
+#. line 138
+#. line 141
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:312
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:345
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:369
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:384
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396
+msgid "Anti-spam"
+msgstr "Antispam"
+
+#. line 121
+#. line 133
+#. line 139
+#. line 142
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:315
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:348
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:373
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:388
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400
+msgid "Recent posts"
+msgstr "Posledné príspevky"
+
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:321
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:354
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:380
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:395
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407
+msgid "SQL"
+msgstr "SQL"
+
+#. line 143
+#. line 155
+#. line 161
+#. line 164
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:359
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:392
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:419
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:434
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446
+msgid "User account"
+msgstr "Účet užívateľa"
+
+#. line 25
+#. line 67
+#. line 18
+#. line 25
+#. line 67
+#. line 25
+#. line 67
+#. line 25
+#. line 67
+#. line 25
+#. line 68
+#. line 25
+#. line 68
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:77
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:179
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:54
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:82
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:190
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
+msgid "Note"
+msgstr "Poznámka"
+
+#. line 26
+#. line 19
+#. line 26
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:80
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:57
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:86
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89
+msgid "Date"
+msgstr "Dátum"
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:112
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:365
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:457
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:88
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:321
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:385
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:120
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:394
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:493
+#: ../../../../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
+msgid "deleted?"
+msgstr "odstránené?"
+
+#. line 49
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:142
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:151
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154
+msgid "remove"
+msgstr "odstrániť"
+
+#. line 75
+#. line 76
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:189
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:201
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208
+msgid "New note"
+msgstr "Nová poznámka"
+
+#. line 92
+#. line 94
+#. line 7
+#. line 94
+#. line 7
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:226
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:240
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
+msgid "Status"
+msgstr "Stav"
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:233
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:248
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44
+msgid "Expired"
+msgstr "Vypršané"
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:238
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:254
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50
+msgid "Active"
+msgstr "Aktívné"
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:269
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:288
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91
+msgid "no reason"
+msgstr "bez dôvodu"
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:322
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:246
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:346
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149
+msgid "never"
+msgstr "nikdy"
+
+#. line 140
+#. line 53
+#. line 140
+#. line 142
+#. line 14
+#. line 57
+#. line 142
+#. line 57
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:331
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:143
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:356
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
+msgid "Seen"
+msgstr "Videné"
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:338
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:273
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:364
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167
+msgid "Yes"
+msgstr "Áno"
+
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:343
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:278
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:370
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173
+msgid "No"
+msgstr "Nie"
+
+#. line 161
+#. line 163
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:378
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:408
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419
+msgid "Remove ban"
+msgstr "Odstrániť ban"
+
+#. line 181
+#. line 135
+#. line 181
+#. line 183
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:424
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:352
+#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:457
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468
+msgid "Time"
+msgstr "Čas"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:41
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:36
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35
+msgid "You were banned! ;_;"
+msgstr "Bol si zabanovaný! ;_;"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:46
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:42
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41
+msgid "You are banned! ;_;"
+msgstr "Si zabanovaný! ;_;"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:56
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:53
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
+msgid "You were banned from"
+msgstr "Bol si zabanovaný z"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:61
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:59
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
+msgid "You have been banned from"
+msgstr "Bol si zabanovaný z"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:83
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
+msgid "for the following reason:"
+msgstr "z nasledujúceho dôvodu:"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:88
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:89
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88
+msgid "for an unspecified reason."
+msgstr "z nešpecifikovaného dôvodu."
+
+#. line 32
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:109
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:111
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110
+msgid "Your ban was filed on"
+msgstr "Tvoj ban bol udelený"
+
+#. line 51
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:120
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:150
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:124
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:157
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156
+msgid "has since expired. Refresh the page to continue."
+msgstr "už vypršal. Pre pokračovanie obnov stránku."
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:125
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:130
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129
+msgid "expires"
+msgstr "vyprší"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:128
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:134
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133
+msgid "from now, which is on"
+msgstr "od teraz, čo je"
+
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:176
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:184
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183
+msgid "will not expire"
+msgstr "nevyprší"
+
+#. line 78
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:184
+#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:193
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192
+msgid "Your IP address is"
+msgstr "Tvoja IP adresa je"
+
+#. line 23
+#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:52
+#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:57
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60
+msgid "Continue"
+msgstr "Pokračovať"
+
+#. line 6
+#: ../../../../templates/cache/dd/1a/7d548894242b9d7bff167de40716.php:30
+msgid "Thread ID"
+msgstr "ID vlákna"
+
+#. line 14
+#: ../../../../templates/cache/dd/1a/7d548894242b9d7bff167de40716.php:44
+msgid "Leave shadow thread"
+msgstr "Ponechať tieňové vlákno"
+
+#. line 18
+#: ../../../../templates/cache/dd/1a/7d548894242b9d7bff167de40716.php:50
+msgid "locks thread; replies to it with a link."
+msgstr "zamkne vlákno; odpovie naň odkazom."
+
+#. line 22
+#: ../../../../templates/cache/dd/1a/7d548894242b9d7bff167de40716.php:56
+msgid "Target board"
+msgstr "Cieľová doska"
+
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:66
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:70
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73
+msgid "(or subnet)"
+msgstr "(alebo podsieť)"
+
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:80
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:85
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88
+msgid "hidden"
+msgstr "skryté"
+
+#. line 41
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:107
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:114
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117
+msgid "Message"
+msgstr "Správa"
+
+#. line 46
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:117
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:122
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:130
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
+msgid "public; attached to post"
+msgstr "verejný; pripojený ku príspevku"
+
+#. line 58
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:133
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:138
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:147
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
+msgid "Length"
+msgstr "Dĺžka"
+
+#. line 88
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:192
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:197
+#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:209
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212
+msgid "New Ban"
+msgstr "Nový ban"
+
+#. line 47
+#. line 8
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:125
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39
+msgid "IP address/mask"
+msgstr "IP adresa/maska"
+
+#. line 51
+#. line 12
+#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:137
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55
+msgid "Duration"
+msgstr "Trvanie"
+
+#: ../../../../search.php:5
+msgid "Post search is disabled"
+msgstr "Vyhľadávanie príspevkov je vypnuté"
+
+#: ../../../../search.php:25 ../../../../search.php:31
+msgid "Wait a while before searching again, please."
+msgstr "Prosím, chvíľu počkaj pred ďalším vyhľadávaním."
+
+#: ../../../../search.php:128 ../../../../search.php:131
+msgid "Query too broad."
+msgstr "Príliš všeobecný dotaz."
+
+#: ../../../../search.php:149 ../../../../search.php:152
+#, php-format
+msgid "%d result in"
+msgid_plural "%d results in"
+msgstr[0] "%d výsledok v"
+msgstr[1] "%d výsledky v"
+msgstr[2] "%d výsledkov v"
+
+#: ../../../../search.php:160 ../../../../search.php:163
+msgid "No results."
+msgstr "Žiadne výsledky."
+
+#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:603
+#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:628
+#: ../../../../inc/functions.php:670
+msgid "Banned!"
+msgstr "Zabanovaný!"
+
+#: ../../../../banned.php:4
+msgid "Banned?"
+msgstr "Zabanovaný?"
+
+#: ../../../../banned.php:5
+msgid "You are not banned."
+msgstr "Niesi zabanovaný."
+
+#: ../../../../inc/functions.php:549 ../../../../inc/functions.php:566
+#: ../../../../inc/functions.php:558 ../../../../inc/functions.php:575
+#: ../../../../inc/functions.php:578 ../../../../inc/functions.php:595
+#: ../../../../inc/functions.php:583 ../../../../inc/functions.php:600
+#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608
+msgid "second"
+msgid_plural "seconds"
+msgstr[0] "sekunda"
+msgstr[1] "sekundy"
+msgstr[2] "sekúnd"
+
+#: ../../../../inc/functions.php:551 ../../../../inc/functions.php:568
+#: ../../../../inc/functions.php:560 ../../../../inc/functions.php:577
+#: ../../../../inc/functions.php:580 ../../../../inc/functions.php:597
+#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602
+#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610
+msgid "minute"
+msgid_plural "minutes"
+msgstr[0] "minúta"
+msgstr[1] "minúty"
+msgstr[2] "minút"
+
+#: ../../../../inc/functions.php:553 ../../../../inc/functions.php:570
+#: ../../../../inc/functions.php:562 ../../../../inc/functions.php:579
+#: ../../../../inc/functions.php:582 ../../../../inc/functions.php:599
+#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604
+#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612
+msgid "hour"
+msgid_plural "hours"
+msgstr[0] "hodina"
+msgstr[1] "hodiny"
+msgstr[2] "hodín"
+
+#: ../../../../inc/functions.php:555 ../../../../inc/functions.php:572
+#: ../../../../inc/functions.php:564 ../../../../inc/functions.php:581
+#: ../../../../inc/functions.php:584 ../../../../inc/functions.php:601
+#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606
+#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614
+msgid "day"
+msgid_plural "days"
+msgstr[0] "deň"
+msgstr[1] "dni"
+msgstr[2] "dní"
+
+#: ../../../../inc/functions.php:557 ../../../../inc/functions.php:574
+#: ../../../../inc/functions.php:566 ../../../../inc/functions.php:583
+#: ../../../../inc/functions.php:586 ../../../../inc/functions.php:603
+#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608
+#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616
+msgid "week"
+msgid_plural "weeks"
+msgstr[0] "týždeň"
+msgstr[1] "týždne"
+msgstr[2] "týždňov"
+
+#: ../../../../inc/functions.php:560 ../../../../inc/functions.php:577
+#: ../../../../inc/functions.php:569 ../../../../inc/functions.php:586
+#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606
+#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611
+#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619
+msgid "year"
+msgid_plural "years"
+msgstr[0] "rok"
+msgstr[1] "roky"
+msgstr[2] "rokov"
+
+#. line 118
+#. line 124
+#. line 127
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:308
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:330
+#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:345
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357
+msgid "Other"
+msgstr "Iné"
+
+#: ../../../../templates/cache/b7/7d/de31d12a1684acbc7c0d7ee71653.php:30
+msgid "Successfully installed and built theme."
+msgstr "Téma bola úspešne nainštalovaná a zostavená."
+
+#. line 9
+#: ../../../../templates/cache/b7/7d/de31d12a1684acbc7c0d7ee71653.php:37
+msgid "Go back to themes"
+msgstr "Návrat do tém"
+
+#. line 3
+#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:21
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27
+msgid "New post"
+msgstr "Nový príspevok"
+
+#. line 32
+#. line 33
+#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:76
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
+msgid "Post news entry"
+msgstr "Prispieť do noviniek"
+
+#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:100
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118
+msgid "delete"
+msgstr "odstrániť"
+
+#. line 55
+#. line 44
+#. line 56
+#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:133
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:94
+#: ../../../../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 "od"
+
+#. line 50
+#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:136
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:97
+#: ../../../../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 "dňa"
+
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:66
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61
+#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64
+msgid "(No news to show.)"
+msgstr "(Žiadne novinky na zobrazenie.)"
+
+#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:19
+msgid "There are no themes available."
+msgstr "Žiadne témy nie sú dostupné."
+
+#. line 25
+#: ../../../../templates/cache/d1/99/467985632043e204070d354b8290.php:91
+msgid "Install theme"
+msgstr "Nainštalovať tému"
+
+#: ../../../../inc/display.php:211 ../../../../inc/display.php:215
+#: ../../../../inc/display.php:219 ../../../../inc/display.php:229
+#: ../../../../inc/display.php:241 ../../../../inc/display.php:244
+#, php-format
+msgid "Post too long. Click here to view the full text."
+msgstr ""
+"Príliš dlhý príspevok. Klikni sem pre zobrazenie celého "
+"textu."
+
+#: ../../../../inc/display.php:342 ../../../../inc/display.php:443
+#: ../../../../inc/display.php:347 ../../../../inc/display.php:449
+#: ../../../../inc/display.php:339 ../../../../inc/display.php:444
+#: ../../../../inc/display.php:376 ../../../../inc/display.php:481
+#: ../../../../inc/display.php:393 ../../../../inc/display.php:503
+#: ../../../../inc/display.php:396 ../../../../inc/display.php:506
+msgid "Delete file"
+msgstr "Odstrániť súbor"
+
+#: ../../../../inc/display.php:342 ../../../../inc/display.php:443
+#: ../../../../inc/display.php:347 ../../../../inc/display.php:449
+#: ../../../../inc/display.php:339 ../../../../inc/display.php:444
+#: ../../../../inc/display.php:376 ../../../../inc/display.php:481
+#: ../../../../inc/display.php:393 ../../../../inc/display.php:503
+#: ../../../../inc/display.php:396 ../../../../inc/display.php:506
+msgid "Are you sure you want to delete this file?"
+msgstr "Naozaj chceš odstrániť tento súbor?"
+
+#: ../../../../inc/display.php:431 ../../../../inc/display.php:437
+#: ../../../../inc/display.php:432 ../../../../inc/display.php:469
+#: ../../../../inc/display.php:491 ../../../../inc/display.php:494
+msgid "Delete all posts by IP across all boards"
+msgstr "Odstrániť všetky príspevky IP adresy na všetkých doskách"
+
+#: ../../../../inc/display.php:431 ../../../../inc/display.php:437
+#: ../../../../inc/display.php:432 ../../../../inc/display.php:469
+#: ../../../../inc/display.php:491 ../../../../inc/display.php:494
+msgid ""
+"Are you sure you want to delete all posts by this IP address, across all "
+"boards?"
+msgstr ""
+"Naozaj chceš odstrániť všetky príspevky tejto IP adresy na všetkých doskách?"
+
+#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265
+msgid "There are no boards to search!"
+msgstr "Neexistujú žiadne dosky, v ktorých by sa mohlo hľadať."
+
+#. Print error
+#: ../../../../inc/database.php:72 ../../../../inc/database.php:94
+msgid "Database error: "
+msgstr "Chyba databázy: "
+
+#. line 13
+#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56
+#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59
+msgid "Error information"
+msgstr "Informácie o chybe"
+
+#. line 27
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68
+msgid "Update"
+msgstr "Aktualizácia"
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97
+msgid "Currently editing raw HTML."
+msgstr "Teraz upravuješ čisté HTML."
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105
+msgid "Edit markup instead?"
+msgstr "Upraviť miesto toho markup?"
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115
+msgid "Edit raw HTML instead?"
+msgstr "Upraviť miesto toho čisté HTML?"
+
+#: ../../../../inc/display.php:343 ../../../../inc/display.php:448
+#: ../../../../inc/display.php:380 ../../../../inc/display.php:485
+#: ../../../../inc/display.php:397 ../../../../inc/display.php:507
+#: ../../../../inc/display.php:400 ../../../../inc/display.php:510
+msgid "Spoiler File"
+msgstr "Skrytý súbor"
+
+#: ../../../../inc/display.php:343 ../../../../inc/display.php:448
+#: ../../../../inc/display.php:380 ../../../../inc/display.php:485
+#: ../../../../inc/display.php:397 ../../../../inc/display.php:507
+#: ../../../../inc/display.php:400 ../../../../inc/display.php:510
+msgid "Are you sure you want to spoiler this file?"
+msgstr "Naozaj chceš skryť tento súbor?"
+
+#: ../../../../inc/display.php:347 ../../../../inc/display.php:384
+#: ../../../../inc/display.php:401 ../../../../inc/display.php:404
+msgid "Move reply to another board"
+msgstr "Presunúť odpoveď do inej dosky"
+
+#: ../../../../inc/mod/pages.php:1094 ../../../../inc/mod/pages.php:1105
+#: ../../../../inc/mod/pages.php:1165 ../../../../inc/mod/pages.php:1162
+msgid "Move reply"
+msgstr "Presunúť odpoveď"
+
+#: ../../../../templates/cache/72/55/0d64283f30702de83ecfcb71f86a.php:28
+#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31
+msgid "There are no reports."
+msgstr "Žiadne nahlásenia"
+
+#. line 7
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:41
+msgid "Report date"
+msgstr "Dátum nahlásenia"
+
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:51
+msgid "Reported by"
+msgstr "Nahlásené od"
+
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:70
+msgid "Discard abuse report"
+msgstr "Vyradiť nahlásenie"
+
+#: ../../../../templates/cache/9c/7b/891291bc84f8844c30cefdb949cf.php:88
+msgid "Discard all abuse reports by this IP address"
+msgstr "Vyradiť všetky nahlásenia od tejto IP adresy"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:542
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520
+msgid "View All"
+msgstr "Zobraziť všetko"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:559
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537
+msgid "Last 1 Post"
+msgid_plural "Last %count% Posts"
+msgstr[0] "Posledný 1 príspevok"
+msgstr[1] "Posledné %count% príspevky"
+msgstr[2] "Posledných %count% príspevkov"
+
+#. line 90
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+msgid "Or URL"
+msgstr "Alebo adresa"
+
+#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936
+msgid "Ban appeal not found!"
+msgstr "Odvolanie sa na ban nebolo nájdené!"
+
+#: ../../../../inc/mod/pages.php:989
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265
+#: ../../../../inc/mod/pages.php:986
+msgid "Ban appeals"
+msgstr "Odvolania sa na ban"
+
+#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1830
+msgid "New user"
+msgstr "Nový užívateľ"
+
+#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1885
+msgid "Impossible to promote/demote user."
+msgstr "Nie je možné povýšiť/degradovať užívateľa."
+
+#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2609
+msgid "Debug: APC"
+msgstr "Debug: APC"
+
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25
+msgid "There are no active bans."
+msgstr "Žiadne aktívne bany."
+
+#. line 92
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269
+msgid "Unban selected"
+msgstr "Odbanovať vybrané"
+
+#. line 80
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210
+msgid "Appeal time"
+msgstr "Čas odvolania sa"
+
+#. line 84
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220
+msgid "Appeal reason"
+msgstr "Dôvod odvolania sa"
+
+#: ../../../../post.php:802 ../../../../post.php:812
+msgid "That ban doesn't exist or is not for you."
+msgstr "Ban neexistuje, alebo nie je pre Teba."
+
+#: ../../../../post.php:806 ../../../../post.php:816
+msgid "You cannot appeal a ban of this length."
+msgstr "Nie je možné sa odvolať na takto dlhý ban."
+
+#: ../../../../post.php:813 ../../../../post.php:823
+msgid "You cannot appeal this ban again."
+msgstr "Nie je možné sa znova odvolať na tento ban."
+
+#: ../../../../post.php:818 ../../../../post.php:828
+msgid "There is already a pending appeal for this ban."
+msgstr "Čakajúce odvolanie sa na tento ban už existuje."
+
+#: ../../../../inc/image.php:282 ../../../../inc/image.php:288
+msgid "Failed to redraw image!"
+msgstr "Prekreslenie obrázka zlyhalo!"
+
+#: ../../../../inc/image.php:324 ../../../../inc/image.php:343
+#: ../../../../inc/image.php:368
+msgid "Failed to resize image!"
+msgstr "Zmena veľkosti obrázka zlyhala!"
+
+#. line 86
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215
+msgid "You were banned for the following post on"
+msgstr "Bol si zabanovaný za nasledujúci príspevok"
+
+#. line 95
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239
+msgid "You submitted an appeal for this ban on"
+msgstr "Odoslal si odvolanie sa na tento ban"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245
+msgid "It is still pending"
+msgstr "Stále čaká na rozsudok"
+
+#. 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 "Odvolal si sa na tento ban"
+
+#. line 103
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265
+msgid "and it was denied. You may not appeal this ban again."
+msgstr ""
+"a Tvoje odvolanie bolo odmietnuté. Nie je možné sa znova odvolať na tento "
+"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 ""
+"Odoslal si maximálny počet odvolaní sa na ban. Nemôžeš sa znova odvolať na "
+"tento ban."
+
+#. line 114
+#. line 121
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318
+msgid "and it was denied."
+msgstr "a Tvoje odvolanie sa bolo odmietnuté"
+
+#. 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 ""
+"Na tento ban sa môžeš odvolať znova. Prosím, zadaj svoje odôvodnenie nižšie."
+
+#. line 119
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310
+msgid "You last appealed this ban on"
+msgstr "Naposledy si sa odvolal na tento ban"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332
+msgid "You may appeal this ban. Please enter your reasoning below."
+msgstr "Môžeš sa na tento ban odvolať. Prosím, zadaj svoje odôvodnenie nižšie."
+
+#. How long before Tinyboard forgets about a mute?
+#. 2 weeks
+#. If you want to alter the algorithm a bit. Default value is 2.
+#. (n^x where x is the number of previous mutes)
+#: ../../../../inc/config.php:474
+msgid "You have been muted for unoriginal content."
+msgstr "Bol si zablokovaný pre neoriginálny obsah."
+
+#. The names on the post buttons. (On most imageboards, these are both just "Post").
+#: ../../../../inc/config.php:771
+msgid "New Topic"
+msgstr "Nové vlákno"
+
+#: ../../../../inc/config.php:772
+msgid "New Reply"
+msgstr "Odpoveď"
+
+#.
+#. * ====================
+#. * Error messages
+#. * ====================
+#.
+#. Error messages
+#: ../../../../inc/config.php:962
+msgid "You look like a bot."
+msgstr "Vyzeráš ako bot."
+
+#: ../../../../inc/config.php:963
+msgid "Your browser sent an invalid or no HTTP referer."
+msgstr "Tvoj prehliadač odoslal vadný alebo žiadny HTTP referer."
+
+#: ../../../../inc/config.php:964
+#, php-format
+msgid "The %s field was too long."
+msgstr "Pole %s bolo príliš dlhé."
+
+#: ../../../../inc/config.php:965
+msgid "The body was too long."
+msgstr "Telo správy bolo príliš dlhé."
+
+#: ../../../../inc/config.php:966
+msgid "The body was too short or empty."
+msgstr "Telo správy bolo prikrátke alebo prázdne."
+
+#: ../../../../inc/config.php:967
+msgid "You must upload an image."
+msgstr "Musíš odoslať obrázok."
+
+#: ../../../../inc/config.php:968
+msgid "The server failed to handle your upload."
+msgstr "Serveru sa nepodarilo poradiť si s Tvojím uploadom."
+
+#: ../../../../inc/config.php:969
+msgid "Unsupported image format."
+msgstr "Nepodporovaný formát súboru."
+
+#: ../../../../inc/config.php:970
+msgid "Invalid board!"
+msgstr "Nesprávna doska!"
+
+#: ../../../../inc/config.php:971
+msgid "Thread specified does not exist."
+msgstr "Špecifikované vlákno neexistuje."
+
+#: ../../../../inc/config.php:972
+msgid "Thread locked. You may not reply at this time."
+msgstr "Zamknuté vlákno. Teraz nie je možné naň odpovedať."
+
+#: ../../../../inc/config.php:973
+msgid "Thread has reached its maximum reply limit."
+msgstr "Vlákno dosiahlo svoj maximálny limit pre odpovede."
+
+#: ../../../../inc/config.php:974
+msgid "Thread has reached its maximum image limit."
+msgstr "Vlákno dosiahlo svoj maximálny limit pre obrázky."
+
+#: ../../../../inc/config.php:975
+msgid "You didn't make a post."
+msgstr "Príspevok nebol vytvorený."
+
+#: ../../../../inc/config.php:976
+msgid "Flood detected; Post discarded."
+msgstr "Detekovaný flood; Príspevok zrušený."
+
+#: ../../../../inc/config.php:977
+msgid "Your request looks automated; Post discarded."
+msgstr "Požiadavka vyzerá byť automatizovaná; Príspevok zrušený."
+
+#: ../../../../inc/config.php:978
+msgid "Unoriginal content!"
+msgstr "Neoriginálny obsah!"
+
+#: ../../../../inc/config.php:979
+#, php-format
+msgid "Unoriginal content! You have been muted for %d seconds."
+msgstr "Neoriginálny obsah! Bol si zablokovaný na %d sekúnd."
+
+#: ../../../../inc/config.php:980
+#, php-format
+msgid "You are muted! Expires in %d seconds."
+msgstr "Si zablokovaný! Vyprší za %d sekúnd."
+
+#: ../../../../inc/config.php:981
+#, php-format
+msgid "Your IP address is listed in %s."
+msgstr "Tvoja IP je spomínaná v %s."
+
+#: ../../../../inc/config.php:982
+msgid "Too many links; flood detected."
+msgstr "Priveľa odkazov; Flood detekovaný."
+
+#: ../../../../inc/config.php:983
+msgid "Too many cites; post discarded."
+msgstr "Priveľa citátov; Príspevok zrušený."
+
+#: ../../../../inc/config.php:984
+msgid "Too many cross-board links; post discarded."
+msgstr "Priveľa medzidoskových odkazov; Príspevok zrušený."
+
+#: ../../../../inc/config.php:985
+msgid "You didn't select anything to delete."
+msgstr "Nevybral si nič pre odstránenie."
+
+#: ../../../../inc/config.php:986
+msgid "You didn't select anything to report."
+msgstr "Nevybral si nič pre nahlásenie."
+
+#: ../../../../inc/config.php:987
+msgid "You can't report that many posts at once."
+msgstr "Nie je možné nahlásiť tak veľa príspevkov naraz."
+
+#: ../../../../inc/config.php:988
+msgid "Wrong password…"
+msgstr "Neplatné heslo…"
+
+#: ../../../../inc/config.php:989
+msgid "Invalid image."
+msgstr "Neplatný obrázok."
+
+#: ../../../../inc/config.php:990
+msgid "Unknown file extension."
+msgstr "Neznámy formát súboru."
+
+#: ../../../../inc/config.php:991
+msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes"
+msgstr "Maximálna veľkosť súboru: %maxsz% bajtov
Veľkosť Tvojho súboru: %filesz% bajtov."
+
+#: ../../../../inc/config.php:992
+msgid "The file was too big."
+msgstr "Súbor bol príliš veľký."
+
+#: ../../../../inc/config.php:993
+#, php-format
+msgid "That file already exists!"
+msgstr "Súbor už existuje!"
+
+#: ../../../../inc/config.php:994
+#, php-format
+msgid "That file already exists in this thread!"
+msgstr "Tento súbor už existuje v tomto vlákne!"
+
+#: ../../../../inc/config.php:995
+#, php-format
+msgid "You'll have to wait another %s before deleting that."
+msgstr "Budeš musieť čakať ešte %s než to odstrániš."
+
+#: ../../../../inc/config.php:996
+msgid "MIME type detection XSS exploit (IE) detected; post discarded."
+msgstr "XSS exploit detekcie MIME typu (IE) detekovaný; Post zrušený."
+
+#: ../../../../inc/config.php:997
+msgid "Couldn't make sense of the URL of the video you tried to embed."
+msgstr "Nie je možné správne vložiť zadané video."
+
+#: ../../../../inc/config.php:998
+msgid "You seem to have mistyped the verification."
+msgstr "Vyzerá to, že bola zle opísaná verifikácia."
+
+#. Moderator errors
+#: ../../../../inc/config.php:1001
+#, php-format
+msgid ""
+"You are only allowed to unban %s users at a time. You tried to unban %u "
+"users."
+msgstr "Môžeš naraz odbanovať iba %s užívateľov. Snažil si sa odbanovať %u užívateľov."
+
+#: ../../../../inc/config.php:1002
+msgid "Invalid username and/or password."
+msgstr "Neplatné užívateľské meno a/alebo heslo."
+
+#: ../../../../inc/config.php:1003
+msgid "You are not a mod…"
+msgstr "Niesi moderátor…"
+
+#: ../../../../inc/config.php:1004
+msgid ""
+"Invalid username and/or password. Your user may have been deleted or changed."
+msgstr "Neplatné užívateľské meno a/alebo heslo. Tvoj účet mohol byť zmenený alebo odstránený."
+
+#: ../../../../inc/config.php:1005
+msgid "Invalid/malformed cookies."
+msgstr "Neplatné/modifikované cookies."
+
+#: ../../../../inc/config.php:1006
+msgid "Your browser didn't submit an input when it should have."
+msgstr "Tvoj prehliadač neodovzdal vstup vtedy, kedy mal."
+
+#: ../../../../inc/config.php:1007
+#, php-format
+msgid "The %s field is required."
+msgstr "Pole %s je povinné."
+
+#: ../../../../inc/config.php:1008
+#, php-format
+msgid "The %s field was invalid."
+msgstr "Pole %s je neplatné."
+
+#: ../../../../inc/config.php:1009
+#, php-format
+msgid "There is already a %s board."
+msgstr "Doska %s už existuje."
+
+#: ../../../../inc/config.php:1010
+msgid "You don't have permission to do that."
+msgstr "Nemáš na to povolenie."
+
+#: ../../../../inc/config.php:1011
+msgid "That post doesn't exist…"
+msgstr "Príspevok neexistuje…"
+
+#: ../../../../inc/config.php:1012
+msgid "Page not found."
+msgstr "Stránka nebola nájdená."
+
+#: ../../../../inc/config.php:1013
+#, php-format
+msgid "That mod already exists!"
+msgstr "Moderátor už existuje!"
+
+#: ../../../../inc/config.php:1014
+msgid "That theme doesn't exist!"
+msgstr "Zadaná téma neexistuje!"
+
+#: ../../../../inc/config.php:1015
+msgid "Invalid security token! Please go back and try again."
+msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova."
+
+#: ../../../../inc/config.php:1016
+msgid ""
+"Your code contained PHP syntax errors. Please go back and correct them. PHP "
+"says: "
+msgstr "PHP kód obsahuje chyby syntaxu. Oprav ich, prosím. PHP hovorí: "
+
+#. 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:1179
+msgid "USER WAS BANNED FOR THIS POST"
+msgstr "UŽÍVATEĽ BOL ZA TENTO PRÍSPEVOK ZABANOVANÝ"
+
+#: /var/www/html/Tinyboard/inc/config.php:807
+#, php-format
+msgid "Moved to %s."
+msgstr "Presunuté do %s."
\ No newline at end of file
diff --git a/inc/locale/tr_TR/LC_MESSAGES/javascript.js b/inc/locale/tr_TR/LC_MESSAGES/javascript.js
new file mode 100644
index 00000000..a0afb44a
--- /dev/null
+++ b/inc/locale/tr_TR/LC_MESSAGES/javascript.js
@@ -0,0 +1 @@
+l10n = {"Style: ":"Stil: ","File":"Dosya","hide":"gizle","show":"g\u00f6ster","Show locked threads":"Kilitli konular\u0131 g\u00f6ster","Hide locked threads":"Gizli konular\u0131 kilitle","URL":"URL","Select":"Se\u00e7","Remote":"Uzak","Embed":"G\u00f6m","Oekaki":"Oekaki","hidden":"gizli","Show images":"Resimleri g\u00f6ster","Hide images":"Resimleri gizle","Password":"\u015eifre","Delete file only":"Sadece dosyay\u0131 sil","Delete":"Sil","Reason":"Sebep","Report":"\u015eikayet et","Click reply to view.":"G\u00f6rmek i\u00e7in cevaplaya bas\u0131n.","Click to expand":"Geni\u015fletmek i\u00e7in t\u0131klay\u0131n","Hide expanded replies":"Daralt","Brush size":"F\u0131r\u00e7a b\u00fcy\u00fckl\u00fc\u011f\u00fc","Set text":"Yaz\u0131y\u0131 ayarla","Clear":"Temizle","Save":"Kay\u0131t et","Load":"Y\u00fckle","Toggle eraser":"Silgi","Get color":"Rengi se\u00e7","Fill":"Doldur","Use oekaki instead of file?":"Dosya yerine oekaki kullan","Edit in oekaki":"oekaki'de d\u00fczenle","Enter some text":"Bir yaz\u0131 girin","Enter font or leave empty":"Font girin ya da bo\u015f b\u0131rak\u0131n","Forced anonymity":"Zorunlu anon","enabled":"etkin","disabled":"etkin de\u011fil","Sun":"Paz","Mon":"Pzt","Tue":"Sa","Wed":"\u00c7r\u015f","Thu":"Per","Fri":"Cu","Sat":"Cts","Catalog":"Katalog","Submit":"G\u00f6nder","Quick reply":"\u00c7abuk cevap","Posting mode: Replying to >>{0}<\/small>":"G\u00f6nderme modu: >>{0}<\/small> cevap veriyorsunuz","Return":"Geri d\u00f6n","Expand all images":"B\u00fct\u00fcn resimleri geni\u015flet","Hello!":"Merhaba!","{0} users":"{0} kullan\u0131c\u0131","(hide threads from this board)":"(bu tahtadan konular\u0131 gizle)","(show threads from this board)":"(bu tahtadan konular\u0131 g\u00f6ster)","No more threads to display":"G\u00f6sterecek ba\u015fka konu kalmad\u0131","Loading...":"Y\u00fckleniyor...","Save as original filename":"Dosya ad\u0131yla kaydet","Reported post(s).":"\u015eikayet edilen konu\/konular.","An unknown error occured!":"FATAL \u00d6R\u00d6R","Something went wrong... An unknown error occured!":"Bilemedi\u011fimiz \u00e7ok fena \u015feyler oldu!","Working...":"Yap\u0131yoruz...","Posting... (#%)":"G\u00f6nderiliyor... (#%)","Posted...":"G\u00f6nderildi...","An unknown error occured when posting!":"Hata... \u00e7ok... fena... ","Posting...":"G\u00f6nderiliyor...","Upload URL":"Y\u00fckleme linki","Spoiler Image":"Spoiler","Comment":"Yorum","Quick Reply":"\u00c7abuk Cevaplama","Stop watching this thread":"Bu konuyu takip etmeyi b\u0131rak","Watch this thread":"Bu konuyu takip et","Unpin this board":"Bu tahtan\u0131n i\u011fnesini kald\u0131r","Pin this board":"Bu tahtay\u0131 i\u011fnele","Stop watching this board":"Bu tahtay\u0131 izlemeyi b\u0131rak","Watch this board":"Bu tahtay\u0131 izle","Click on any image on this site to load it into oekaki applet":"Oekaki'ye atmak i\u00e7in website \u00fczerindeki herhangi bir resme t\u0131klay\u0131n"};
\ No newline at end of file
diff --git a/inc/locale/tr_TR/LC_MESSAGES/javascript.po b/inc/locale/tr_TR/LC_MESSAGES/javascript.po
new file mode 100644
index 00000000..97fc88fa
--- /dev/null
+++ b/inc/locale/tr_TR/LC_MESSAGES/javascript.po
@@ -0,0 +1,390 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR
Your file's size: %filesz% bytes"
+msgstr "Azami dosya boyutu: %maxsz% byte
Dosyanızın boyutu %filesz% byte"
+
+#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
+#: ../../../../inc/config.php:993
+msgid "The file was too big."
+msgstr "Dosyanız çok büyük."
+
+#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
+#: ../../../../inc/config.php:994
+#, php-format
+msgid "That file already exists!"
+msgstr " Bu dosya zaten var.!"
+
+#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
+#: ../../../../inc/config.php:995
+#, php-format
+msgid "That file already exists in this thread!"
+msgstr " Bu dosya bu konuda zaten var!"
+
+#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
+#: ../../../../inc/config.php:996
+#, php-format
+msgid "You'll have to wait another %s before deleting that."
+msgstr "Silmeden önce %s kadar beklemelisiniz."
+
+#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
+#: ../../../../inc/config.php:997
+msgid "MIME type detection XSS exploit (IE) detected; post discarded."
+msgstr "FATAL ÖRÖR"
+
+#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
+#: ../../../../inc/config.php:998
+msgid "Couldn't make sense of the URL of the video you tried to embed."
+msgstr "Gömmeye çalıştığınız video linkinden bişey anlayamadık."
+
+#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
+#: ../../../../inc/config.php:999
+msgid "You seem to have mistyped the verification."
+msgstr "Doğrulamayı yanlış girmiş gibisin."
+
+#. Moderator errors
+#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
+#: ../../../../inc/config.php:1002
+#, php-format
+msgid "You are only allowed to unban %s users at a time. You tried to unban %u users."
+msgstr "Bir seferde sadece %s kullanıcının banını kaldırabilirsiniz. Siz %u kullanıcı denediniz."
+
+#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
+#: ../../../../inc/config.php:1003
+msgid "Invalid username and/or password."
+msgstr "Geçersiz kullanıcı adı ve/veya şifre."
+
+#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
+#: ../../../../inc/config.php:1004
+msgid "You are not a mod…"
+msgstr "Mod değilsiniz ki..."
+
+#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
+#: ../../../../inc/config.php:1005
+msgid "Invalid username and/or password. Your user may have been deleted or changed."
+msgstr "Geçersiz kullanıcı adı ve/veya şifre. Kullanıcı hesabınız silinmiş ya da değiştirilmiş olabilir."
+
+#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
+#: ../../../../inc/config.php:1006
+msgid "Invalid/malformed cookies."
+msgstr "Geçersiz ya da bayatlamış kurabiye."
+
+#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
+#: ../../../../inc/config.php:1007
+msgid "Your browser didn't submit an input when it should have."
+msgstr "Tarayıcınız zamanında göndermesi gerekeni göndermedi"
+
+#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
+#: ../../../../inc/config.php:1008
+#, php-format
+msgid "The %s field is required."
+msgstr "%s gerekli."
+
+#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
+#: ../../../../inc/config.php:1009
+#, php-format
+msgid "The %s field was invalid."
+msgstr "%s geçersiz."
+
+#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
+#: ../../../../inc/config.php:1010
+#, php-format
+msgid "There is already a %s board."
+msgstr "Zaten %s böyle bir tahta var."
+
+#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
+#: ../../../../inc/config.php:1011
+msgid "You don't have permission to do that."
+msgstr "Bunu yapmak için izniniz yok."
+
+#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
+#: ../../../../inc/config.php:1012
+msgid "That post doesn't exist…"
+msgstr "Böyle bir girdi yok..."
+
+#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
+#: ../../../../inc/config.php:1013
+msgid "Page not found."
+msgstr "Sayfa bulunamadı."
+
+#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
+#: ../../../../inc/config.php:1014
+#, php-format
+msgid "That mod already exists!"
+msgstr "Böyle bir mod! zaten var!"
+
+#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
+#: ../../../../inc/config.php:1015
+msgid "That theme doesn't exist!"
+msgstr "Böyle bir tema yok."
+
+#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
+#: ../../../../inc/config.php:1016
+msgid "Invalid security token! Please go back and try again."
+msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin."
+
+#. 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
+msgid "USER WAS BANNED FOR THIS POST"
+msgstr "KULLANICI BU GİRDİ SEBEBİYLE BANLANDI"
+
+#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64
+msgid "Confirm action"
+msgstr "Onayla"
+
+#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108
+msgid "Could not find current version! (Check .installed)"
+msgstr "Şu anki versiyonu bulamıyoruz! (.installed dosyasını kontrol edin)"
+
+#: ../../../../inc/mod/pages.php:162
+msgid "Dashboard"
+msgstr "Kontrol Paneli"
+
+#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265
+msgid "There are no boards to search!"
+msgstr "Arama yapacak tahta yok!"
+
+#. $results now contains the search results
+#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334
+msgid "Search results"
+msgstr "Arama sonuçları"
+
+#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438
+msgid "Edit board"
+msgstr "Tahtayı düzenle"
+
+#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491
+msgid "Couldn't open board after creation."
+msgstr "Yarattıktan sonra tahtayı açamadık."
+
+#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511
+msgid "New board"
+msgstr "Yeni Tahta"
+
+#. line 37
+#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121
+msgid "Noticeboard"
+msgstr "Uyarılar"
+
+#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194
+msgid "News"
+msgstr "Haberler"
+
+#: ../../../../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 "Moderasyon logları"
+
+#. line 104
+#. line 20
+#. line 18
+#. 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 "Yeni ban"
+
+#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256
+msgid "Ban list"
+msgstr "Ban listesi"
+
+#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165
+msgid "Move reply"
+msgstr "Cevabı taşı"
+
+#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191
+msgid "Target and source board are the same."
+msgstr "Kaynak ve hedef tahtası aynı."
+
+#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357
+msgid "Impossible to move thread; there is only one board."
+msgstr "Konuyu nereye taşıyalım; zaten bir tahta var."
+
+#. line 39
+#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114
+msgid "Move thread"
+msgstr "Konuyu taşı"
+
+#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751
+#: ../../../../inc/mod/pages.php:1775
+msgid "Edit user"
+msgstr "Kullanıcıyı düzenle"
+
+#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274
+msgid "Manage users"
+msgstr "Kullanıcıları yönet"
+
+#. 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 "Yeni Özel Mesaj =>"
+
+#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952
+msgid "Private message"
+msgstr "Özel Mesaj"
+
+#. line 68
+#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200
+msgid "PM inbox"
+msgstr "ÖM Kutusu"
+
+#: ../../../../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
+msgid "Rebuild"
+msgstr "Yeniden yapılandır"
+
+#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238
+msgid "Report queue"
+msgstr "Şikayet Listesi"
+
+#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210
+#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350
+msgid "Config editor"
+msgstr "Denetim Masası"
+
+#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367
+msgid "Themes directory doesn't exist!"
+msgstr "Tema klasörü yok!"
+
+#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369
+msgid "Cannot open themes directory; check permissions."
+msgstr "Tema klasörü açılamıyor; izinleri kontrol edin."
+
+#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291
+msgid "Manage themes"
+msgstr "Temaları yönet"
+
+#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453
+#, php-format
+msgid "Installed theme: %s"
+msgstr "Yüklenen tema: %s"
+
+#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464
+#, php-format
+msgid "Configuring theme: %s"
+msgstr "Tema ayarlanıyor: %s"
+
+#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493
+#, php-format
+msgid "Rebuilt theme: %s"
+msgstr "Yapılandırılan tema: %s"
+
+#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532
+msgid "Debug: Anti-spam"
+msgstr "Debug: Anti-spam"
+
+#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566
+msgid "Debug: Recent posts"
+msgstr "Debug: Son gönderiler"
+
+#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590
+msgid "Debug: SQL"
+msgstr "Debug: SQL"
+
+#. Print error
+#: ../../../../inc/database.php:72 ../../../../inc/database.php:94
+msgid "Database error: "
+msgstr "Veritabanı hatası:"
+
+#: ../../../../banned.php:4
+msgid "Banned?"
+msgstr "Ban?"
+
+#: ../../../../banned.php:5
+msgid "You are not banned."
+msgstr "Banlanmadınız."
+
+#. line 6
+#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41
+#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44
+msgid "Go back"
+msgstr "Geri git"
+
+#. line 13
+#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56
+#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59
+msgid "Error information"
+msgstr "Hata hakkında bilgiler"
+
+#. line 2
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25
+msgid "Delete Post"
+msgstr "Girdiyi sil"
+
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. line 3
+#. line 84
+#. 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
+msgid "File"
+msgstr "Dosya"
+
+#. line 132
+#. line 14
+#. line 132
+#. line 14
+#. line 131
+#. 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
+msgid "Password"
+msgstr "Şifre"
+
+#. 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
+#: ../../../../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
+msgid "Reason"
+msgstr "Sebep"
+
+#. line 10
+#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44
+#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47
+msgid "Report"
+msgstr "Şikayet et"
+
+#: ../../../../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 "Panele geri dö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 "Gönderi modu: Cevaplama"
+
+#: ../../../../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 "Geri dön"
+
+#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61
+#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64
+msgid "(No news to show.)"
+msgstr "(Gösterilecek haber yok.)"
+
+#: ../../../../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 "konu yok"
+
+#. 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 "tarafından"
+
+#. 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] "1 cevap"
+msgstr[1] "%count% cevap"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105
+msgid "File:"
+msgstr "Dosya:"
+
+#: ../../../../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
+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
+msgid "Reply"
+msgstr "Cevapla"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520
+msgid "View All"
+msgstr "Hepsini Gör"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537
+msgid "Last 1 Post"
+msgid_plural "Last %count% Posts"
+msgstr[0] "Son 1 Gönderi"
+msgstr[1] "Son %count% Gönderi"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574
+msgid "1 post"
+msgid_plural "%count% posts"
+msgstr[0] "1 cevap"
+msgstr[1] "%count% cevap"
+
+#: ../../../../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
+msgid "and"
+msgstr "ve"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592
+msgid "1 image reply"
+msgid_plural "%count% image replies"
+msgstr[0] "1 resimli cevap"
+msgstr[1] "%count% resimli cevap"
+
+#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586
+#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597
+msgid "omitted. Click reply to view."
+msgstr "gizlendi. Görmek için cevaplaya basın."
+
+#. line 7
+#. line 14
+#. line 7
+#. line 14
+#. line 8
+#. line 14
+#. line 7
+#. 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
+msgid "Name"
+msgstr "İsim"
+
+#. 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 "E-posta"
+
+#. line 23
+#. line 46
+#. line 23
+#. line 46
+#. line 12
+#. line 24
+#. line 46
+#. line 23
+#. 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 "Konu"
+
+#. line 27
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71
+msgid "Update"
+msgstr "Güncelle"
+
+#. 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 "Yorum"
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100
+msgid "Currently editing raw HTML."
+msgstr "Şu anda HTML düzenleniyor."
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108
+msgid "Edit markup instead?"
+msgstr "Bunun yerine markup düzenleyin"
+
+#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115
+#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118
+msgid "Edit raw HTML instead?"
+msgstr "Bunun yerine HTML halini düzenleyin"
+
+#. line 73
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229
+msgid "Verification"
+msgstr "Onaylama"
+
+#. line 90
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
+msgid "Or URL"
+msgstr "ya da Link"
+
+#. line 100
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
+msgid "Embed"
+msgstr "Göm"
+
+#. line 112
+#. line 111
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
+msgid "Flags"
+msgstr "Bayrak"
+
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 116
+#. line 117
+#. line 115
+#. line 116
+#. line 115
+#. line 116
+#: ../../../../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
+msgid "Sticky"
+msgstr "Yapışkan"
+
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 120
+#. line 121
+#. line 119
+#. line 120
+#. line 119
+#. line 120
+#: ../../../../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
+msgid "Lock"
+msgstr "Kilitli"
+
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 124
+#. line 125
+#. line 123
+#. line 124
+#. line 123
+#. line 124
+#: ../../../../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
+msgid "Raw HTML"
+msgstr "Sadece HTML"
+
+#. line 137
+#. line 136
+#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
+#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
+msgid "(For file deletion.)"
+msgstr "(Dosya silmek için.)"
+
+#: ../../../../search.php:5
+msgid "Post search is disabled"
+msgstr "Arama kullanılabilir değil."
+
+#: ../../../../search.php:25 ../../../../search.php:31
+msgid "Wait a while before searching again, please."
+msgstr "Arama yapmadan önce biraz bekleyin."
+
+#: ../../../../search.php:131
+msgid "Query too broad."
+msgstr "Çok geniş arama."
+
+#: ../../../../search.php:152
+#, php-format
+msgid "%d result in"
+msgid_plural "%d results in"
+msgstr[0] "%d sonuç"
+msgstr[1] "%d sonuç"
+
+#: ../../../../search.php:163
+msgid "No results."
+msgstr "Sonuç yok."
+
+#. line 115
+#. line 16
+#. line 115
+#. line 16
+#. 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
+msgid "Search"
+msgstr "Arama"
+
+#: ../../../../inc/mod/pages.php:939
+msgid "Ban appeal not found!"
+msgstr "Müracaat bulunamadı!"
+
+#: ../../../../inc/mod/pages.php:989
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265
+msgid "Ban appeals"
+msgstr "Ban kaldırma müracaatları"
+
+#: ../../../../inc/mod/pages.php:1833
+msgid "New user"
+msgstr "Yeni kullanıcı"
+
+#: ../../../../inc/mod/pages.php:1888
+msgid "Impossible to promote/demote user."
+msgstr "Bu kullanıcıyı demote/promote etmek mümkün değil"
+
+#: ../../../../inc/mod/pages.php:2612
+msgid "Debug: APC"
+msgstr "Debug: APC"
+
+#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
+msgid "Your code contained PHP syntax errors. Please go back and correct them. PHP says: "
+msgstr "Kodunuz PHP hataları içeriyor. Lütfen geri dönüp düzeltin. PHP:"
+
+#. line 2
+#. line 6
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38
+msgid "Boards"
+msgstr "Tahtalar"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215
+msgid "edit"
+msgstr "düzenle"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97
+msgid "Create new board"
+msgstr "Yeni tahta yarat"
+
+#. line 32
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108
+msgid "Messages"
+msgstr "Mesajlar"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188
+msgid "View all noticeboard entries"
+msgstr "Tüm uyarıları gör"
+
+#. line 76
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222
+msgid "Administration"
+msgstr "Yönetim"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282
+msgid "Change password"
+msgstr "Şifreyi değiştir"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318
+msgid "Configuration"
+msgstr "Ayarlar"
+
+#. line 127
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357
+msgid "Other"
+msgstr "Diğer"
+
+#. line 139
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391
+msgid "Debug"
+msgstr "Debug"
+
+#. 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 "Son gönderiler"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407
+msgid "SQL"
+msgstr "SQL"
+
+#. line 164
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446
+msgid "User account"
+msgstr "Kullanıcıhesabı"
+
+#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454
+msgid "Logout"
+msgstr "Çıkış yap"
+
+#. line 3
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27
+msgid "New post"
+msgstr "Yeni gönderi"
+
+#. line 16
+#. line 28
+#. line 16
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83
+msgid "Body"
+msgstr "Gövde"
+
+#. line 21
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63
+msgid "Post to noticeboard"
+msgstr "Uyarı gönder"
+
+#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118
+msgid "delete"
+msgstr "sil"
+
+#: ../../../../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
+msgid "deleted?"
+msgstr "silindi?"
+
+#. line 33
+#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
+msgid "Post news entry"
+msgstr "Haber gönder"
+
+#. 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
+#: ../../../../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
+msgid "Staff"
+msgstr "Yönetim"
+
+#. 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
+msgid "Note"
+msgstr "Not"
+
+#. line 26
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89
+msgid "Date"
+msgstr "Tarih"
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96
+msgid "Actions"
+msgstr "Hareketler"
+
+#. line 49
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154
+msgid "remove"
+msgstr "kaldır"
+
+#. line 76
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208
+msgid "New note"
+msgstr "Yeni not"
+
+#. 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 "Durum"
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44
+msgid "Expired"
+msgstr "Süresi bitti"
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50
+msgid "Active"
+msgstr "Aktif"
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91
+msgid "no reason"
+msgstr "sebepsizce"
+
+#. 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
+#: ../../../../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
+msgid "Board"
+msgstr "Tahta"
+
+#. 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
+msgid "all boards"
+msgstr "tüm tahtalar"
+
+#. line 128
+#. line 11
+#. line 43
+#. line 128
+#. line 43
+#. line 128
+#. line 11
+#. line 43
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
+msgid "Set"
+msgstr "Ayarla"
+
+#. line 132
+#. line 13
+#. line 47
+#. line 132
+#. line 47
+#. line 132
+#. line 13
+#. line 47
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
+msgid "Expires"
+msgstr "Süresi bitecek"
+
+#: ../../../../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
+msgid "never"
+msgstr "hiç bir zaman"
+
+#. line 142
+#. line 14
+#. line 57
+#. line 142
+#. line 57
+#. line 142
+#. line 14
+#. line 57
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
+msgid "Seen"
+msgstr "Görüldü"
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167
+msgid "Yes"
+msgstr "Evet"
+
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173
+msgid "No"
+msgstr "Hayır"
+
+#. line 163
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419
+msgid "Remove ban"
+msgstr "Banı kaldır"
+
+#. line 183
+#. line 5
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34
+msgid "Time"
+msgstr "Zaman"
+
+#. line 185
+#. line 89
+#. line 185
+#. line 89
+#. line 185
+#. line 7
+#. line 89
+#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
+msgid "Action"
+msgstr "Hareket"
+
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73
+msgid "(or subnet)"
+msgstr "(ya da alt ağ)"
+
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88
+msgid "hidden"
+msgstr "gizli"
+
+#. line 41
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117
+msgid "Message"
+msgstr "Mesaj"
+
+#. line 46
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
+msgid "public; attached to post"
+msgstr "gelen; gönderiye eklendi"
+
+#. line 58
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
+msgid "Length"
+msgstr "Uzunluk"
+
+#. line 88
+#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212
+msgid "New Ban"
+msgstr "Yeni Ban"
+
+#. line 2
+#. line 5
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
+msgid "Phrase:"
+msgstr "İfade:"
+
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38
+msgid "Posts"
+msgstr "Gönderiler"
+
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49
+msgid "IP address notes"
+msgstr "IP adres notları"
+
+#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62
+msgid "Bans"
+msgstr "Banlar"
+
+#. 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 "Arama büyük-küçük harf duyarlı değildir. Tam bir ifade araması yapmak istiyorsanız \"ifade\" şekinde arama yapabilirsiniz."
+
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25
+msgid "There are no active bans."
+msgstr "Aktif ban yok."
+
+#. line 8
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39
+msgid "IP address/mask"
+msgstr "IP adresi/mask"
+
+#. line 12
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55
+msgid "Duration"
+msgstr "Süresi"
+
+#. line 92
+#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269
+msgid "Unban selected"
+msgstr "Banı kaldır"
+
+#. line 6
+#. line 4
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30
+msgid "Username"
+msgstr "Kullanıcı adı"
+
+#. line 23
+#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60
+msgid "Continue"
+msgstr "Devam"
+
+#. line 80
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210
+msgid "Appeal time"
+msgstr "Müracaat zamanı"
+
+#. line 84
+#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220
+msgid "Appeal reason"
+msgstr "Müracaat sebebi"
+
+#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31
+msgid "There are no reports."
+msgstr "Şikayet yok."
+
+#: ../../../../post.php:802 ../../../../post.php:811
+msgid "That ban doesn't exist or is not for you."
+msgstr "Böyle bir ban yok, ya da sizin için değil"
+
+#: ../../../../post.php:806 ../../../../post.php:815
+msgid "You cannot appeal a ban of this length."
+msgstr "Bu kadar uzun ban için müracaat yapamassınız"
+
+#: ../../../../post.php:813 ../../../../post.php:822
+msgid "You cannot appeal this ban again."
+msgstr "Tekrar müracaat edemezsiniz."
+
+#: ../../../../post.php:818 ../../../../post.php:827
+msgid "There is already a pending appeal for this ban."
+msgstr "Zaten bu ban için bir müracaat var."
+
+#: ../../../../inc/image.php:24 ../../../../inc/image.php:62
+msgid "Unsupported file format: "
+msgstr "Desteklenmeyen dosya uzantısı:"
+
+#: ../../../../inc/image.php:282 ../../../../inc/image.php:288
+msgid "Failed to redraw image!"
+msgstr "Resmi işlerken, işleyemedik!"
+
+#: ../../../../inc/image.php:324 ../../../../inc/image.php:343
+#: ../../../../inc/image.php:368
+msgid "Failed to resize image!"
+msgstr "Resmi yeniden boyutlandıramadık!"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35
+msgid "You were banned! ;_;"
+msgstr "Banlanmıştınız!;_;"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41
+msgid "You are banned! ;_;"
+msgstr "Banlandınız!;_;"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
+msgid "You were banned from"
+msgstr "Şu tahtadan banlandınız:"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
+msgid "You have been banned from"
+msgstr "Şu tahtadan banlandınız:"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
+msgid "for the following reason:"
+msgstr "şu sebepten:"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88
+msgid "for an unspecified reason."
+msgstr "sebepsizce."
+
+#. line 32
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110
+msgid "Your ban was filed on"
+msgstr "Şu tarihte"
+
+#. 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 "süresi doldu. Devam etmek için sayfayı yenileyin."
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129
+msgid "expires"
+msgstr "süresi geçecek"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133
+msgid "from now, which is on"
+msgstr "şu andan itibaren başlıyor"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183
+msgid "will not expire"
+msgstr "süresi geçmeyecek"
+
+#. line 78
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192
+msgid "Your IP address is"
+msgstr "IP adresiniz"
+
+#. line 86
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215
+msgid "You were banned for the following post on"
+msgstr "Şu post sebebiyle banlandınız"
+
+#. line 95
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239
+msgid "You submitted an appeal for this ban on"
+msgstr "Bu banı kaldırmak için müracaat ettiniz tarih"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245
+msgid "It is still pending"
+msgstr "Hala bekliyor"
+
+#. 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 "Bu banı kaldırmak için müracaat ettiğiniz tarih"
+
+#. line 103
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265
+msgid "and it was denied. You may not appeal this ban again."
+msgstr "ve geri çevrildi, tekrar müracaat edemezsiniz."
+
+#: ../../../../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 "Müracaat sınırını aştınız ulan."
+
+#. 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 "ve geri çevrildi."
+
+#. 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 "Tekrar müracaat edebilirsiniz, buyrun."
+
+#. line 119
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310
+msgid "You last appealed this ban on"
+msgstr "Bu ban için müracaatınız en son şu tarihte idi:"
+
+#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332
+msgid "You may appeal this ban. Please enter your reasoning below."
+msgstr "Bu ban için tekrar müracaat edebilirsiniz:"
+
+#. line 4
+#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30
+msgid "IP address"
+msgstr "IP adresi"
+
+#. line 3
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26
+msgid "ID"
+msgstr "ID"
+
+#. line 5
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34
+msgid "Type"
+msgstr "Tip"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45
+msgid "Last action"
+msgstr "Son hareket"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80
+msgid "Unknown"
+msgstr "Bilinmiyor"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94
+msgid "none"
+msgstr "yok"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174
+msgid "Promote"
+msgstr "Promote"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187
+msgid "Demote"
+msgstr "Demote"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191
+msgid "Are you sure you want to demote yourself?"
+msgstr "Kendinizi demote etmek istiyor musunuz?"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204
+msgid "log"
+msgstr "log"
+
+#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226
+msgid "PM"
+msgstr "ÖM"
+
+#. line 6
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36
+msgid "Thread ID"
+msgstr "Konu ID"
+
+#. line 14
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51
+msgid "Leave shadow thread"
+msgstr "Gölge konuyu bırak"
+
+#. line 18
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58
+msgid "locks thread; replies to it with a link."
+msgstr "Konuyu kilitler ve link ile cevaplar."
+
+#. line 22
+#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65
+msgid "Target board"
+msgstr "Gönderilecek tahta"
+
+#. line 8
+#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40
+msgid "Select board"
+msgstr "Tahtayı seçin"
+
+#. 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 "Arama büyük-küçük harf duyarlı değildir."
+
+#. line 2
+#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25
+msgid "Are you sure you want to do that?"
+msgstr "Bunu yapmak istediğinizden emin misiniz?"
+
+#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31
+msgid "Click to proceed to"
+msgstr "Devam etmek için tıklayın"
+
+#. 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 "Bu mesajı görüyorsanız büyük ihtimalle Javascript kapalı olduğu içindir. Bu önlemi saldırıları önlemek için aldık."
+
diff --git a/install.php b/install.php
index 7164c434..761bdfed 100644
--- a/install.php
+++ b/install.php
@@ -1,7 +1,7 @@
vichan-devel-4.4.94');
+define('VERSION', 'v0.9.6-dev-22 + vichan-devel-4.4.95');
require 'inc/functions.php';
@@ -502,6 +502,7 @@ if (file_exists($config['has_installed'])) {
case 'v0.9.6-dev-22 + vichan-devel-4.4.91':
case 'v0.9.6-dev-22 + vichan-devel-4.4.92':
case 'v0.9.6-dev-22 + vichan-devel-4.4.93':
+ case 'v0.9.6-dev-22 + vichan-devel-4.4.94':
case false:
// Update version number
file_write($config['has_installed'], VERSION);
diff --git a/js/local-time.js b/js/local-time.js
index c4eecfd9..e6b3495d 100644
--- a/js/local-time.js
+++ b/js/local-time.js
@@ -8,6 +8,7 @@
*
* Usage:
* // $config['additional_javascript'][] = 'js/jquery.min.js';
+ * // $config['additional_javascript'][] = 'js/strftime.min.js';
* $config['additional_javascript'][] = 'js/local-time.js';
*
*/
@@ -24,6 +25,27 @@ onready(function(){
return [Math.pow(10, count - num.toString().length), num].join('').substr(1);
};
+ var datelocale =
+ { days: [_('Sunday'), _('Monday'), _('Tuesday'), _('Wednesday'), _('Thursday'), _('Friday'), _('Saturday')]
+ , shortDays: [_("Sun"), _("Mon"), _("Tue"), _("Wed"), _("Thu"), _("Fri"), _("Sat")]
+ , months: [_('January'), _('February'), _('March'), _('April'), _('May'), _('June'), _('July'), _('August'), _('September'), _('October'), _('November'), _('December')]
+ , shortMonths: [_('Jan'), _('Feb'), _('Mar'), _('Apr'), _('May'), _('Jun'), _('Jul'), _('Aug'), _('Sep'), _('Oct'), _('Nov'), _('Dec')]
+ , AM: _('AM')
+ , PM: _('PM')
+ , am: _('am')
+ , pm: _('pm')
+ };
+ var dateformat = (typeof strftime === 'undefined') ? function(t) {
+ return zeropad(t.getMonth() + 1, 2) + "/" + zeropad(t.getDate(), 2) + "/" + t.getFullYear().toString().substring(2) +
+ " (" + [_("Sun"), _("Mon"), _("Tue"), _("Wed"), _("Thu"), _("Fri"), _("Sat"), _("Sun")][t.getDay()] + ") " +
+ // time
+ zeropad(t.getHours(), 2) + ":" + zeropad(t.getMinutes(), 2) + ":" + zeropad(t.getSeconds(), 2);
+
+ } : function(t) {
+ // post_date is defined in templates/main.js
+ return strftime(window.post_date, t, datelocale);
+ };
+
var do_localtime = function(elem) {
var times = elem.getElementsByTagName('time');
@@ -35,12 +57,7 @@ onready(function(){
times[i].setAttribute('data-local', 'true');
- times[i].innerHTML =
- // date
- zeropad(t.getMonth() + 1, 2) + "/" + zeropad(t.getDate(), 2) + "/" + t.getFullYear().toString().substring(2) +
- " (" + [_("Sun"), _("Mon"), _("Tue"), _("Wed"), _("Thu"), _("Fri"), _("Sat"), _("Sun")][t.getDay()] + ") " +
- // time
- zeropad(t.getHours(), 2) + ":" + zeropad(t.getMinutes(), 2) + ":" + zeropad(t.getSeconds(), 2);
+ times[i].innerHTML = dateformat(t);
};
};
diff --git a/js/post-hover.js b/js/post-hover.js
index f0898669..4a86cba0 100644
--- a/js/post-hover.js
+++ b/js/post-hover.js
@@ -32,11 +32,8 @@ onready(function(){
}
var board = $(this);
- var i = 0;
while (board.data('board') === undefined) {
board = board.parent();
- i++;
- if (i >= 10) return;
}
var threadid;
if ($link.is('[data-thread]')) threadid = 0;
diff --git a/js/strftime.min.js b/js/strftime.min.js
new file mode 100644
index 00000000..696e025e
--- /dev/null
+++ b/js/strftime.min.js
@@ -0,0 +1,8 @@
+(function(){function i(c,a,b){return g(c,a,b)}function g(c,a,b,j){j=j||{};a&&!n(a)&&(b=a,a=void 0);a=a||new Date;b=b||o;b.formats=b.formats||{};var i=a.getTime(),h=j.timezone,e=typeof h;if(j.utc||e=="number"||e=="string")a=p(a);if(h){if(e=="string")var k=h[0]=="-"?-1:1,q=parseInt(h.slice(1,3),10),r=parseInt(h.slice(3,5),10),h=k*60*q+r;e&&(a=new Date(a.getTime()+h*6E4))}return c.replace(/%([-_0]?.)/g,function(c,e){var d;if(e.length==2){d=e[0];if(d=="-")d="";else if(d=="_")d=" ";else if(d=="0")d="0";
+else return c;e=e[1]}switch(e){case "A":return b.days[a.getDay()];case "a":return b.shortDays[a.getDay()];case "B":return b.months[a.getMonth()];case "b":return b.shortMonths[a.getMonth()];case "C":return f(Math.floor(a.getFullYear()/100),d);case "D":return g(b.formats.D||"%m/%d/%y",a,b);case "d":return f(a.getDate(),d);case "e":return a.getDate();case "F":return g(b.formats.F||"%Y-%m-%d",a,b);case "H":return f(a.getHours(),d);case "h":return b.shortMonths[a.getMonth()];case "I":return f(l(a),d);
+case "j":return d=new Date(a.getFullYear(),0,1),d=Math.ceil((a.getTime()-d.getTime())/864E5),f(d,3);case "k":return f(a.getHours(),d==null?" ":d);case "L":return f(Math.floor(i%1E3),3);case "l":return f(l(a),d==null?" ":d);case "M":return f(a.getMinutes(),d);case "m":return f(a.getMonth()+1,d);case "n":return"\n";case "o":return String(a.getDate())+s(a.getDate());case "P":return a.getHours()<12?b.am:b.pm;case "p":return a.getHours()<12?b.AM:b.PM;case "R":return g(b.formats.R||"%H:%M",a,b);case "r":return g(b.formats.r||
+"%I:%M:%S %p",a,b);case "S":return f(a.getSeconds(),d);case "s":return Math.floor(i/1E3);case "T":return g(b.formats.T||"%H:%M:%S",a,b);case "t":return"\t";case "U":return f(m(a,"sunday"),d);case "u":return d=a.getDay(),d==0?7:d;case "v":return g(b.formats.v||"%e-%b-%Y",a,b);case "W":return f(m(a,"monday"),d);case "w":return a.getDay();case "Y":return a.getFullYear();case "y":return d=String(a.getFullYear()),d.slice(d.length-2);case "Z":return j.utc?"GMT":(d=a.toString().match(/\((\w+)\)/))&&d[1]||
+"";case "z":return j.utc?"+0000":(d=typeof h=="number"?h:-a.getTimezoneOffset(),(d<0?"-":"+")+f(Math.abs(d/60))+f(d%60));default:return e}})}function p(c){var a=(c.getTimezoneOffset()||0)*6E4;return new Date(c.getTime()+a)}function n(c){for(var a=0,b=k.length,a=0;a12&&(c-=12);return c}
+function s(c){var a=c%10;c%=100;if(c>=11&&c<=13||a===0||a>=4)return"th";switch(a){case 1:return"st";case 2:return"nd";case 3:return"rd"}}function m(c,a){var a=a||"sunday",b=c.getDay();a=="monday"&&(b==0?b=6:b--);var e=new Date(c.getFullYear(),0,1);return Math.floor(((c-e)/864E5+7-b)/7)}var e;e=typeof module!=="undefined"?module.exports=i:function(){return this||(0,eval)("this")}();var o={days:"Sunday Monday Tuesday Wednesday Thursday Friday Saturday".split(" "),shortDays:"Sun Mon Tue Wed Thu Fri Sat".split(" "),
+months:"January February March April May June July August September October November December".split(" "),shortMonths:"Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec".split(" "),AM:"AM",PM:"PM",am:"am",pm:"pm"};e.strftime=i;e.strftimeTZ=i.strftimeTZ=function(c,a,b,e){if((typeof b=="number"||typeof b=="string")&&e==null)e=b,b=void 0;return g(c,a,b,{timezone:e})};e.strftimeUTC=i.strftimeUTC=function(c,a,b){return g(c,a,b,{utc:!0})};e.localizedStrftime=i.localizedStrftime=function(c){return function(a,
+b){return g(a,b,c)}};var k=["getTime","getTimezoneOffset","getDay","getDate","getMonth","getFullYear","getYear","getHours","getMinutes","getSeconds"]})();
diff --git a/js/wPaint b/js/wPaint
index ae151315..2c272dff 160000
--- a/js/wPaint
+++ b/js/wPaint
@@ -1 +1 @@
-Subproject commit ae15131585dd7c40a61d440e5a3740b5fc68780f
+Subproject commit 2c272dffca0f3d7b7163bd82ba15629f54409278
diff --git a/post.php b/post.php
index 742a95b0..99b1110b 100644
--- a/post.php
+++ b/post.php
@@ -447,13 +447,25 @@ if (isset($_POST['delete'])) {
}
if ($config['country_flags']) {
- if (!geoip_db_avail(GEOIP_COUNTRY_EDITION)) {
- error('GeoIP not available: ' . geoip_db_filename(GEOIP_COUNTRY_EDITION));
+ require 'inc/lib/geoip/geoip.inc';
+ $gi=geoip\geoip_open('inc/lib/geoip/GeoIPv6.dat', GEOIP_STANDARD);
+
+ function ipv4to6($ip) {
+ if (strpos($ip, ':') !== false) {
+ if (strpos($ip, '.') > 0)
+ $ip = substr($ip, strrpos($ip, ':')+1);
+ else return $ip; //native ipv6
+ }
+ $iparr = array_pad(explode('.', $ip), 4, 0);
+ $part7 = base_convert(($iparr[0] * 256) + $iparr[1], 10, 16);
+ $part8 = base_convert(($iparr[2] * 256) + $iparr[3], 10, 16);
+ return '::ffff:'.$part7.':'.$part8;
}
- if ($country_code = @geoip_country_code_by_name($_SERVER['REMOTE_ADDR'])) {
+
+ if ($country_code = geoip\geoip_country_code_by_addr_v6($gi, ipv4to6($_SERVER['REMOTE_ADDR']))) {
if (!in_array(strtolower($country_code), array('eu', 'ap', 'o1', 'a1', 'a2')))
- $post['body'] .= "\n