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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \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 \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Estilo: " + +#: ../../../../js/hide-images.js:50 ../../../../js/upload-selection.js:51 +#: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:51 +#: ../../../../js/quick-post-controls.js:32 +#: ../../../../js/upload-selection.js:61 +msgid "File" +msgstr "Archivo" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "ocultar" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +msgid "show" +msgstr "mostrar" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Show locked threads" +msgstr "Mostrar hilos bloqueados" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Hide locked threads" +msgstr "Ocultar hilos bloqueados" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +msgid "Select" +msgstr "Seleccionar" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +msgid "Remote" +msgstr "Remoto" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +msgid "Embed" +msgstr "Incrustar" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +msgid "hidden" +msgstr "oculto" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Show images" +msgstr "Mostrar imagenes" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Hide images" +msgstr "Ocultar imagenes" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Contraseña" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Eliminar sólo archivo" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Eliminar" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 +msgid "Reason" +msgstr "Razón" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Reportar" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Click responder para ver." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click to expand" +msgstr "Click para expandir" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +msgid "Hide expanded replies" +msgstr "Ocultar respuestas expandidas" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Tamaño brush" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "Establecer texto" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Limpiar" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Guardar" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Cargar" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Borrar marca" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Seleccionar color" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Llenar" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Usar oekaki en vez del archivo?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Editar en oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Pon algún texto" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Pon una fuente o dejalo vacío" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60 +#: ../../../../js/forced-anon.js:66 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +#: ../../../../js/forced-anon.js:71 +msgid "Forced anonymity" +msgstr "Forzar anonimato" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +msgid "enabled" +msgstr "activado" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 +msgid "disabled" +msgstr "desactivado" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Sun" +msgstr "Dom" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Mon" +msgstr "Lun" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Tue" +msgstr "Mar" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Wed" +msgstr "Mie" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Thu" +msgstr "Jue" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Fri" +msgstr "Vie" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Sat" +msgstr "Sá" + +#: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 +#: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 +#: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 +msgid "Catalog" +msgstr "Catálogo" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Enviar" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Respuesta rápida" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +#, python-brace-format +msgid "Posting mode: Replying to >>{0}" +msgstr "Respondiendo a >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Volver" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +msgid "Expand all images" +msgstr "Expandir todas las imágenes" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Hola!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} usuarios" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +msgid "(hide threads from this board)" +msgstr "(ocultar hilos de este tablón)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +msgid "(show threads from this board)" +msgstr "(mostrar hilos de este tablón)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +msgid "No more threads to display" +msgstr "No hay más hilos para mostrar" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +msgid "Loading..." +msgstr "Cargando..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Guardar con el nombre original del archivo" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "Post(s) reportados." + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "Ocurrió un error desconocido!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Algo fue mal... Ocurrió un error desconocido!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Trabajando..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Posteando... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Posteado..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Ocurrió un error desconocido mientras posteabas!" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Posteando..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +msgid "Upload URL" +msgstr "Subir URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +msgid "Spoiler Image" +msgstr "Imagen Spoiler" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +msgid "Comment" +msgstr "Comentario" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +msgid "Quick Reply" +msgstr "Respuesta rápida" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Stop watching this thread" +msgstr "Para de ver este hilo" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Watch this thread" +msgstr "Ver este hilo" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Unpin this board" +msgstr "Desmarcar este hilo" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Pin this board" +msgstr "Marcar este hilo" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Stop watching this board" +msgstr "Para de ver este hilo" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Watch this board" +msgstr "Ver este hilo" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Click en cualquier sitio para cargar el oekaki applet" + +#: ../../../../js/local-time.js:29 +msgid "Sunday" +msgstr "Domingo" + +#: ../../../../js/local-time.js:29 +msgid "Monday" +msgstr "Lunes" + +#: ../../../../js/local-time.js:29 +msgid "Tuesday" +msgstr "Martes" + +#: ../../../../js/local-time.js:29 +msgid "Wednesday" +msgstr "Miércoles" + +#: ../../../../js/local-time.js:29 +msgid "Thursday" +msgstr "Jueves" + +#: ../../../../js/local-time.js:29 +msgid "Friday" +msgstr "Viernes" + +#: ../../../../js/local-time.js:29 +msgid "Saturday" +msgstr "Sábado" + +#: ../../../../js/local-time.js:31 +msgid "January" +msgstr "Enero" + +#: ../../../../js/local-time.js:31 +msgid "February" +msgstr "Febrero" + +#: ../../../../js/local-time.js:31 +msgid "March" +msgstr "Marzo" + +#: ../../../../js/local-time.js:31 +msgid "April" +msgstr "Abril" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +msgid "May" +msgstr "Mayo" + +#: ../../../../js/local-time.js:31 +msgid "June" +msgstr "Junio" + +#: ../../../../js/local-time.js:31 +msgid "July" +msgstr "Julio" + +#: ../../../../js/local-time.js:31 +msgid "August" +msgstr "Agosto" + +#: ../../../../js/local-time.js:31 +msgid "September" +msgstr "Septiembre" + +#: ../../../../js/local-time.js:31 +msgid "October" +msgstr "Octubre" + +#: ../../../../js/local-time.js:31 +msgid "November" +msgstr "Noviembre" + +#: ../../../../js/local-time.js:31 +msgid "December" +msgstr "Diciembre" + +#: ../../../../js/local-time.js:32 +msgid "Jan" +msgstr "Ene" + +#: ../../../../js/local-time.js:32 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 +msgid "Apr" +msgstr "Abr" + +#: ../../../../js/local-time.js:32 +msgid "Jun" +msgstr "Jun" + +#: ../../../../js/local-time.js:32 +msgid "Jul" +msgstr "Jul" + +#: ../../../../js/local-time.js:32 +msgid "Aug" +msgstr "Aug" + +#: ../../../../js/local-time.js:32 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 +msgid "Oct" +msgstr "Oct" + +#: ../../../../js/local-time.js:32 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 +msgid "Dec" +msgstr "Dic" + +#: ../../../../js/local-time.js:33 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 +msgid "pm" +msgstr "pm" diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..08ca244b Binary files /dev/null and b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..631730c8 --- /dev/null +++ b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po @@ -0,0 +1,1901 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \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 \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../inc/lib/gettext/examples/pigs_dropin.php:77 +msgid "" +"This is how the story goes.\n" +"\n" +msgstr "Esto es como va la historia. \n" + +#: ../../../../inc/functions.php:583 ../../../../inc/functions.php:600 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" + +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" + +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" + +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" + +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 +msgid "Banned!" +msgstr "Baneado!" + +#. There is no previous page. +#: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139 +#: ../../../../inc/functions.php:1165 ../../../../inc/functions.php:1179 +#: ../../../../inc/functions.php:1168 ../../../../inc/functions.php:1182 +#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 +msgid "Previous" +msgstr "Anterior" + +#. There is no next page. +#: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153 +#: ../../../../inc/functions.php:1184 ../../../../inc/functions.php:1193 +#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 +#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 +msgid "Next" +msgstr "Siguiente" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 +msgid "Error" +msgstr "Error" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 +msgid "An error has occured." +msgstr "Ha ocurrido un error." + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 +msgid "Login" +msgstr "Iniciar sesión" + +#: ../../../../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 "El post es muy largo. Click aquí para ver el texto completo." + +#: ../../../../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 "Ban" + +#: ../../../../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 "Ban & Eleminar" + +#: ../../../../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 "Eliminar archivo" + +#: ../../../../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 "Estás seguro de eliminar este archivo?" + +#: ../../../../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 "Spoiler" + +#: ../../../../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 "Estás seguro de marcar como spoiler este archivo?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 +msgid "Move reply to another board" +msgstr "Mover respuesta a otro tablón" + +#: ../../../../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 "Editar post" + +#. line 5 +#: ../../../../inc/display.php:461 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 +#: ../../../../inc/display.php:483 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 +#: ../../../../inc/display.php:486 +msgid "Delete" +msgstr "Eliminar" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 +msgid "Are you sure you want to delete this?" +msgstr "Estás seguro de eliminar esto?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 +msgid "Delete all posts by IP" +msgstr "Eliminar todos los posts por IP" + +#: ../../../../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 "Estás seguro de querer eliminar todos los posts por esta dirección IP?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 +msgid "Delete all posts by IP across all boards" +msgstr "Eliminar todos los posts por IP en todos los tablones" + +#: ../../../../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 "Estás seguro de eliminar todos los posts de esta dirección IP, en todos los tablones?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 +msgid "Make thread not sticky" +msgstr "Hacer el hilo poco importante" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 +msgid "Make thread sticky" +msgstr "Hacer el hilo importante" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 +msgid "Allow thread to be bumped" +msgstr "Permitir que este hilo se mueva" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 +msgid "Prevent thread from being bumped" +msgstr "Evitar que este hilo se mueva" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 +msgid "Unlock thread" +msgstr "Desbloquear hilo" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 +msgid "Lock thread" +msgstr "Bloquear hilo" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 +msgid "Move thread to another board" +msgstr "Mover hilo a otro tablón" + +#. 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:346 ../../../../inc/config.php:473 +msgid "You have been muted for unoriginal content." +msgstr "Fuiste muteado por contenido poco original." + +#. The names on the post buttons. (On most imageboards, these are both just "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 +msgid "New Topic" +msgstr "Nuevo Hilo" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 +msgid "New Reply" +msgstr "Nueva Respuesta" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" +"Todas las marcas registradas, derechos de autor, comentarios y imágenes de esta página son propiedad de " +"y son responsabilidad de sus respectivos propietarios." + +#. +#. * ==================== +#. * Error messages +#. * ==================== +#. +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Lurkea algo más antes de postear." + +#. +#. * ==================== +#. * Error messages +#. * ==================== +#. +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 +msgid "You look like a bot." +msgstr "Pareces un bot." + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "Tu navegador envió o no una referencia no HTTP." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 +#, php-format +msgid "The %s field was too long." +msgstr "El campo %s es muy largo." + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 +msgid "The body was too long." +msgstr "El mensaje es muy largo." + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 +msgid "The body was too short or empty." +msgstr "El mensaje es muy corto o está vacío." + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 +msgid "You must upload an image." +msgstr "Debes subir una imagen." + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 +msgid "The server failed to handle your upload." +msgstr "El servidor falló al subir tu imagen." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 +msgid "Unsupported image format." +msgstr "Formato de imagen no soportado." + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 +msgid "Invalid board!" +msgstr "Tablón inválido!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 +msgid "Thread specified does not exist." +msgstr "Hilo específicado no existe." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 +msgid "Thread locked. You may not reply at this time." +msgstr "Hilo cerrado. No puedes responder en este momento." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 +msgid "Thread has reached its maximum reply limit." +msgstr "El hilo llegó al límite de respuestas." + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 +msgid "Thread has reached its maximum image limit." +msgstr "El hilo llegó al máximo de imágenes permitido" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 +msgid "You didn't make a post." +msgstr "No has hecho ningún post." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 +msgid "Flood detected; Post discarded." +msgstr "Flood detectado; Post descartado." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 +msgid "Your request looks automated; Post discarded." +msgstr "Tu respuesta parece automática; Post descartado." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 +msgid "Unoriginal content!" +msgstr "Contenido poco original!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Contenido poco original! Fuiste muteado durante %d segundos." + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "Estás muteado! Expira en %d segundos." + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "Tu dirección IP está listada en %s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 +msgid "Too many links; flood detected." +msgstr "Muchos links; flood detectado." + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 +msgid "Too many cites; post discarded." +msgstr "Muchas citas; post descartado." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 +msgid "Too many cross-board links; post discarded." +msgstr "Muchos links de otros tablones; post descartado." + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 +msgid "You didn't select anything to delete." +msgstr "No has seleccionado nada para eliminar." + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 +msgid "You didn't select anything to report." +msgstr "No has seleccionado nada para reportar." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 +msgid "You can't report that many posts at once." +msgstr "No puedes reportar varios posts a la vez." + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 +msgid "Wrong password…" +msgstr "Contraseña incorrecta..." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 +msgid "Invalid image." +msgstr "Imagen no válida." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 +msgid "Unknown file extension." +msgstr "Extensión del archivo desconocida." + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 +msgid "Maximum file size: %maxsz% bytes
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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-20 20:19+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click to expand" +msgstr "" + +#: ../../../../js/quick-reply.js:30 ../../../../js/quick-reply.js:31 +#: ../../../../js/quick-reply-old.js:31 ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "" + +#: ../../../../js/quick-reply.js:32 ../../../../js/quick-reply.js:33 +#: ../../../../js/quick-reply-old.js:33 ../../../../js/quick-reply-old.js:35 +#, python-brace-format +msgid "Posting mode: Replying to >>{0}" +msgstr "" + +#: ../../../../js/quick-reply.js:32 ../../../../js/quick-reply.js:33 +#: ../../../../js/quick-reply-old.js:33 ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "" + +#: ../../../../js/quick-reply.js:20 ../../../../js/quick-reply.js:21 +#: ../../../../js/quick-reply-old.js:21 ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Show locked threads" +msgstr "" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Hide locked threads" +msgstr "" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "" + +#: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:50 +#: ../../../../js/upload-selection.js:51 ../../../../js/hide-images.js:51 +#: ../../../../js/quick-post-controls.js:32 +#: ../../../../js/upload-selection.js:61 +msgid "File" +msgstr "" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 +msgid "Reason" +msgstr "" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "" + +#: ../../../../js/expand.js:41 ../../../../js/expand.js:43 +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +msgid "Hide expanded replies" +msgstr "" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60 +#: ../../../../js/forced-anon.js:66 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +#: ../../../../js/forced-anon.js:71 +msgid "Forced anonymity" +msgstr "" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +msgid "enabled" +msgstr "" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 +msgid "disabled" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Sun" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Mon" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Tue" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Wed" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Thu" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Fri" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Sat" +msgstr "" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +msgid "show" +msgstr "" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +msgid "hidden" +msgstr "" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Show images" +msgstr "" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Hide images" +msgstr "" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +msgid "(hide threads from this board)" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +msgid "(show threads from this board)" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +msgid "No more threads to display" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +msgid "Loading..." +msgstr "" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +msgid "URL" +msgstr "" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +msgid "Select" +msgstr "" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +msgid "Remote" +msgstr "" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +msgid "Embed" +msgstr "" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +msgid "Oekaki" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "" + +#: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 +#: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 +#: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 +msgid "Catalog" +msgstr "" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +msgid "Expand all images" +msgstr "" + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "" + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "" + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "" + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "" + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +msgid "Upload URL" +msgstr "" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +msgid "Comment" +msgstr "" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +msgid "Quick Reply" +msgstr "" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Stop watching this thread" +msgstr "" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Watch this thread" +msgstr "" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Unpin this board" +msgstr "" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Pin this board" +msgstr "" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Stop watching this board" +msgstr "" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Watch this board" +msgstr "" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" diff --git a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..ff47dd68 Binary files /dev/null and b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..6487a201 --- /dev/null +++ b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po @@ -0,0 +1,2603 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-20 20:19+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#: ../../inc/lib/gettext/examples/pigs_dropin.php:77 +#: ../../../../inc/lib/gettext/examples/pigs_dropin.php:77 +msgid "" +"This is how the story goes.\n" +"\n" +msgstr "" +"Štai kaip eina istorija.\n" +"\n" + +#. There is no previous page. +#: ../../inc/functions.php:1046 ../../inc/functions.php:1060 +#: ../../../../inc/functions.php:1039 ../../../../inc/functions.php:1053 +#: ../../../../inc/functions.php:1122 ../../../../inc/functions.php:1136 +#: ../../../../inc/functions.php:1124 ../../../../inc/functions.php:1138 +#: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139 +#: ../../../../inc/functions.php:1165 ../../../../inc/functions.php:1179 +#: ../../../../inc/functions.php:1168 ../../../../inc/functions.php:1182 +msgid "Previous" +msgstr "Atgal" + +#. There is no next page. +#: ../../inc/functions.php:1065 ../../inc/functions.php:1074 +#: ../../../../inc/functions.php:1058 ../../../../inc/functions.php:1067 +#: ../../../../inc/functions.php:1141 ../../../../inc/functions.php:1150 +#: ../../../../inc/functions.php:1143 ../../../../inc/functions.php:1152 +#: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153 +#: ../../../../inc/functions.php:1184 ../../../../inc/functions.php:1193 +#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 +msgid "Next" +msgstr "Pirmyn" + +#: ../../inc/display.php:91 ../../inc/mod/pages.php:62 +#: ../../../../inc/display.php:91 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/display.php:96 ../../../../inc/display.php:100 +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:60 +#: ../../../../inc/display.php:122 ../../../../inc/display.php:125 +msgid "Login" +msgstr "Prisijungimas" + +#. +#. * ==================== +#. * Error messages +#. * ==================== +#. +#. Error messages +#: ../../inc/config.php:687 ../../../../inc/config.php:692 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:861 +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Panaršyk ilgiau prieš rašydamas." + +#. +#. * ==================== +#. * Error messages +#. * ==================== +#. +#. Error messages +#: ../../inc/config.php:688 ../../../../inc/config.php:693 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:862 +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 +msgid "You look like a bot." +msgstr "Tu atrodai kaip botas." + +#: ../../inc/config.php:689 ../../../../inc/config.php:694 +#: ../../../../inc/config.php:805 ../../../../inc/config.php:863 +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "Tavo naršyklė nusiuntė netinkama arba nėra HTTP referer." + +#: ../../inc/config.php:690 ../../../../inc/config.php:695 +#: ../../../../inc/config.php:806 ../../../../inc/config.php:864 +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 +#, php-format +msgid "The %s field was too long." +msgstr "Laukas %s buvo per ilgas." + +#: ../../inc/config.php:691 ../../../../inc/config.php:696 +#: ../../../../inc/config.php:807 ../../../../inc/config.php:865 +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 +msgid "The body was too long." +msgstr "Kūnas buvo per ilgas." + +#: ../../inc/config.php:692 ../../../../inc/config.php:697 +#: ../../../../inc/config.php:808 ../../../../inc/config.php:866 +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 +msgid "The body was too short or empty." +msgstr "Kūnas buvo per trumpas arba tuščias." + +#: ../../inc/config.php:693 ../../../../inc/config.php:698 +#: ../../../../inc/config.php:809 ../../../../inc/config.php:867 +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 +msgid "You must upload an image." +msgstr "Tu privalai įkelti paveiksliuką." + +#: ../../inc/config.php:694 ../../../../inc/config.php:699 +#: ../../../../inc/config.php:810 ../../../../inc/config.php:868 +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 +msgid "The server failed to handle your upload." +msgstr "Serveriui nepavyko apdoroti tavo įkėlimo." + +#: ../../inc/config.php:695 ../../../../inc/config.php:700 +#: ../../../../inc/config.php:811 ../../../../inc/config.php:869 +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 +msgid "Unsupported image format." +msgstr "Nepalaikomas paveiksliuko formatas." + +#: ../../inc/config.php:696 ../../../../inc/config.php:701 +#: ../../../../inc/config.php:812 ../../../../inc/config.php:870 +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 +msgid "Invalid board!" +msgstr "Neteisinga lenta!" + +#: ../../inc/config.php:697 ../../../../inc/config.php:702 +#: ../../../../inc/config.php:813 ../../../../inc/config.php:871 +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 +msgid "Thread specified does not exist." +msgstr "Nurodyta diskusija neegzistuoja." + +#: ../../inc/config.php:698 ../../../../inc/config.php:703 +#: ../../../../inc/config.php:814 ../../../../inc/config.php:872 +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 +msgid "Thread locked. You may not reply at this time." +msgstr "Diskusija užrakinta. Šiuo metu negali parašyti atsiliepimo." + +#: ../../inc/config.php:699 ../../../../inc/config.php:706 +#: ../../../../inc/config.php:817 ../../../../inc/config.php:875 +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 +msgid "You didn't make a post." +msgstr "Tu nesukūrei komentaro." + +#: ../../inc/config.php:700 ../../../../inc/config.php:707 +#: ../../../../inc/config.php:818 ../../../../inc/config.php:876 +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 +msgid "Flood detected; Post discarded." +msgstr "Perpildymas aptiktas; komentaras išmestas." + +#: ../../inc/config.php:701 ../../../../inc/config.php:708 +#: ../../../../inc/config.php:819 ../../../../inc/config.php:877 +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 +msgid "Your request looks automated; Post discarded." +msgstr "Tavo užklausa atrodo automatizuota; komentaras išmestas." + +#: ../../inc/config.php:702 ../../../../inc/config.php:709 +#: ../../../../inc/config.php:820 ../../../../inc/config.php:878 +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 +msgid "Unoriginal content!" +msgstr "Neoriginalus turinys!" + +#: ../../inc/config.php:703 ../../../../inc/config.php:710 +#: ../../../../inc/config.php:821 ../../../../inc/config.php:879 +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Neoriginalus turinys! Tu buvai užtildytas %d sekundėms." + +#: ../../inc/config.php:704 ../../../../inc/config.php:711 +#: ../../../../inc/config.php:822 ../../../../inc/config.php:880 +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "Tu esi užtildytas! Užtildymas pasibaigs po %d sekundžių." + +#: ../../inc/config.php:705 ../../../../inc/config.php:712 +#: ../../../../inc/config.php:823 ../../../../inc/config.php:881 +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "Tavo IP adresas yra įtrauktas į %s." + +#: ../../inc/config.php:706 ../../../../inc/config.php:713 +#: ../../../../inc/config.php:824 ../../../../inc/config.php:882 +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 +msgid "Too many links; flood detected." +msgstr "Per daug nuorodų; aptiktas perpildimas." + +#: ../../inc/config.php:707 ../../../../inc/config.php:714 +#: ../../../../inc/config.php:825 ../../../../inc/config.php:883 +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 +msgid "Too many cites; post discarded." +msgstr "Per daug citatų; komentaras išmestas." + +#: ../../inc/config.php:708 ../../../../inc/config.php:715 +#: ../../../../inc/config.php:826 ../../../../inc/config.php:884 +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 +msgid "Too many cross-board links; post discarded." +msgstr "Per daug tarplentinių nuorodų; komentaras išmestas." + +#: ../../inc/config.php:709 ../../../../inc/config.php:716 +#: ../../../../inc/config.php:827 ../../../../inc/config.php:885 +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 +msgid "You didn't select anything to delete." +msgstr "Tu nepasirinkai nieko, ką ištrinti." + +#: ../../inc/config.php:710 ../../../../inc/config.php:717 +#: ../../../../inc/config.php:828 ../../../../inc/config.php:886 +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 +msgid "You didn't select anything to report." +msgstr "Tu nepasirinkai nieko, ką pranešti." + +#: ../../inc/config.php:711 ../../../../inc/config.php:718 +#: ../../../../inc/config.php:829 ../../../../inc/config.php:887 +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 +msgid "You can't report that many posts at once." +msgstr "Tu negali pranešti tiek komentarų iškart." + +#: ../../inc/config.php:712 ../../../../inc/config.php:719 +#: ../../../../inc/config.php:830 ../../../../inc/config.php:888 +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 +msgid "Wrong password…" +msgstr "Neteisingas slaptažodis..." + +#: ../../inc/config.php:713 ../../../../inc/config.php:720 +#: ../../../../inc/config.php:831 ../../../../inc/config.php:889 +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 +msgid "Invalid image." +msgstr "Neteisingas paveiksliukas." + +#: ../../inc/config.php:714 ../../../../inc/config.php:721 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:890 +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 +msgid "Unknown file extension." +msgstr "Nežinoma failo plėtinys." + +#: ../../inc/config.php:715 ../../../../inc/config.php:722 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:891 +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 +msgid "Maximum file size: %maxsz% bytes
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 \n" "Language-Team: LANGUAGE \n" @@ -18,64 +18,72 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: ../../../../js/quick-reply.js:20 ../../../../js/quick-reply.js:21 -#: ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:21 ../../../../js/quick-reply-old.js:23 msgid "Submit" msgstr "Wyślij" #: ../../../../js/quick-reply.js:30 ../../../../js/quick-reply.js:31 -#: ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:31 ../../../../js/quick-reply-old.js:33 msgid "Quick reply" msgstr "Szybka odpowiedź" #: ../../../../js/quick-reply.js:32 ../../../../js/quick-reply.js:33 -#: ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:33 ../../../../js/quick-reply-old.js:35 #, python-brace-format msgid "Posting mode: Replying to >>{0}" msgstr "Tryb postowania: Odpowiedź na >>{0}" #: ../../../../js/quick-reply.js:32 ../../../../js/quick-reply.js:33 -#: ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:33 ../../../../js/quick-reply-old.js:35 msgid "Return" msgstr "Powrót" -#: ../../../../js/expand.js:20 +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 msgid "Click reply to view." msgstr "Kliknij Odpowiedź aby zobaczyć." -#: ../../../../js/expand.js:20 +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 msgid "Click to expand" msgstr "Kliknij aby rozwinąć" #: ../../../../js/expand.js:41 ../../../../js/expand.js:45 #: ../../../../js/expand.js:43 ../../../../js/expand.js:44 +#: ../../../../js/expand.js:46 msgid "Hide expanded replies" msgstr "Schowaj rozwinięte odpowiedzi" -#: ../../../../js/local-time.js:40 +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 msgid "Mon" msgstr "pon" -#: ../../../../js/local-time.js:40 +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 msgid "Tue" msgstr "wto" -#: ../../../../js/local-time.js:40 +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 msgid "Wed" msgstr "śro" -#: ../../../../js/local-time.js:40 +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 msgid "Thu" msgstr "czw" -#: ../../../../js/local-time.js:40 +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 msgid "Fri" msgstr "pią" -#: ../../../../js/local-time.js:40 +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 msgid "Sat" msgstr "sob" -#: ../../../../js/local-time.js:40 +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 msgid "Sun" msgstr "nie" @@ -83,6 +91,8 @@ msgstr "nie" #: ../../../../js/toggle-locked-threads.js:54 #: ../../../../js/toggle-locked-threads.js:40 #: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 msgid "Show locked threads" msgstr "Pokaż zablokowane tematy" @@ -90,71 +100,86 @@ msgstr "Pokaż zablokowane tematy" #: ../../../../js/toggle-locked-threads.js:54 #: ../../../../js/toggle-locked-threads.js:40 #: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 msgid "Hide locked threads" msgstr "Schowaj zablokowane tematy" #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 #: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60 #: ../../../../js/forced-anon.js:66 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +#: ../../../../js/forced-anon.js:71 msgid "Forced anonymity" msgstr "Wymuszona anonimowość" #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 msgid "enabled" msgstr "włączona" #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 msgid "disabled" msgstr "wyłączona" #: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 msgid "Password" msgstr "Hasło" #: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 msgid "Delete file only" msgstr "Usuń tylko plik" #: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:50 -#: ../../../../js/upload-selection.js:51 +#: ../../../../js/upload-selection.js:51 ../../../../js/hide-images.js:51 +#: ../../../../js/quick-post-controls.js:32 +#: ../../../../js/upload-selection.js:61 msgid "File" msgstr "Plik" #: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 msgid "Delete" msgstr "Usuń" #: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 msgid "Reason" msgstr "Powód" #: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 msgid "Report" msgstr "Zgłoszenie" -#: ../../../../js/hide-images.js:50 +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 msgid "hide" msgstr "ukryj" -#: ../../../../js/hide-images.js:56 +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 msgid "show" msgstr "pokaż" -#: ../../../../js/toggle-images.js:41 +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 msgid "hidden" msgstr "ukryte" #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 msgid "Show images" msgstr "Pokaż obrazki" #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 msgid "Hide images" msgstr "Ukryj obrazki" -#: ../../../../js/style-select.js:40 +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 msgid "Style: " msgstr "Styl: " @@ -191,23 +216,23 @@ msgstr "Nie ma więcej wątków do wyświetlenia" msgid "Loading..." msgstr "Ładowanie..." -#: ../../../../js/upload-selection.js:32 +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 msgid "URL" msgstr "URL" -#: ../../../../js/upload-selection.js:50 +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 msgid "Select" msgstr "Wybierz" -#: ../../../../js/upload-selection.js:53 +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 msgid "Remote" msgstr "Zdalny" -#: ../../../../js/upload-selection.js:56 +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 msgid "Embed" msgstr "Osadź" -#: ../../../../js/upload-selection.js:59 +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 msgid "Oekaki" msgstr "Oekaki" @@ -260,16 +285,19 @@ msgid "Enter font or leave empty" msgstr "Podaj czcionkę, bądź pozostaw puste" #: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 -#: ../../../../js/catalog-link.js:40 +#: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 +#: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 msgid "Catalog" msgstr "Katalog" #: ../../../../js/expand-all-images.js:20 #: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 msgid "Expand all images" msgstr "Rozwiń wszystkie obrazki" #: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 msgid "Save as original filename" msgstr "Zapisz z oryginalną nazwą pliku" @@ -289,62 +317,221 @@ msgstr "Coś poszło źle... wystąpił nieznany błąd!" msgid "Working..." msgstr "Przetwarzanie..." -#: ../../../../js/ajax.js:42 +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 msgid "Posting... (#%)" msgstr "Postowanie... (#%)" -#: ../../../../js/ajax.js:104 +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 msgid "Posted..." msgstr "Zapostowano..." -#: ../../../../js/ajax.js:106 +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 msgid "An unknown error occured when posting!" msgstr "Wystąpił nieznany błąd podczas postowania!" -#: ../../../../js/ajax.js:130 +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 msgid "Posting..." msgstr "Postowanie..." -#: ../../../../js/quick-reply.js:223 +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 msgid "Upload URL" msgstr "Wyślij URL" -#: ../../../../js/quick-reply.js:266 +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 msgid "Spoiler Image" msgstr "Schowaj obrazek" -#: ../../../../js/quick-reply.js:277 +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 msgid "Comment" msgstr "Komentarz" #: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 msgid "Quick Reply" msgstr "Szybka odpowiedź" #: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 msgid "Stop watching this thread" msgstr "Przestań obserwować ten wątek" #: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 msgid "Watch this thread" msgstr "Obserwuj ten wątek" #: ../../../../js/watch.js:260 ../../../../js/watch.js:261 -#: ../../../../js/watch.js:269 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 msgid "Unpin this board" msgstr "Odepnij ten board" #: ../../../../js/watch.js:260 ../../../../js/watch.js:261 -#: ../../../../js/watch.js:269 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 msgid "Pin this board" msgstr "Przypnij ten board" #: ../../../../js/watch.js:262 ../../../../js/watch.js:267 -#: ../../../../js/watch.js:268 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 msgid "Stop watching this board" msgstr "Przestań oberwować ten board" #: ../../../../js/watch.js:262 ../../../../js/watch.js:267 -#: ../../../../js/watch.js:268 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 msgid "Watch this board" msgstr "Obserwuj ten board" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" +"Kliknij w jakikolwiek obrazek na tej stronie aby załadować go do apletu " +"oekaki" + +#: ../../../../js/local-time.js:29 +msgid "Sunday" +msgstr "Niedziela" + +#: ../../../../js/local-time.js:29 +msgid "Monday" +msgstr "Poniedziałek" + +#: ../../../../js/local-time.js:29 +msgid "Tuesday" +msgstr "Wtorek" + +#: ../../../../js/local-time.js:29 +msgid "Wednesday" +msgstr "Środa" + +#: ../../../../js/local-time.js:29 +msgid "Thursday" +msgstr "Czwartek" + +#: ../../../../js/local-time.js:29 +msgid "Friday" +msgstr "Piątek" + +#: ../../../../js/local-time.js:29 +msgid "Saturday" +msgstr "Sobota" + +#: ../../../../js/local-time.js:31 +msgid "January" +msgstr "stycznia" + +#: ../../../../js/local-time.js:31 +msgid "February" +msgstr "lutego" + +#: ../../../../js/local-time.js:31 +msgid "March" +msgstr "marca" + +#: ../../../../js/local-time.js:31 +msgid "April" +msgstr "kwietnia" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +msgid "May" +msgstr "maj" + +#: ../../../../js/local-time.js:31 +msgid "June" +msgstr "czerwca" + +#: ../../../../js/local-time.js:31 +msgid "July" +msgstr "lipca" + +#: ../../../../js/local-time.js:31 +msgid "August" +msgstr "sierpnia" + +#: ../../../../js/local-time.js:31 +msgid "September" +msgstr "września" + +#: ../../../../js/local-time.js:31 +msgid "October" +msgstr "października" + +#: ../../../../js/local-time.js:31 +msgid "November" +msgstr "listopada" + +#: ../../../../js/local-time.js:31 +msgid "December" +msgstr "grudnia" + +#: ../../../../js/local-time.js:32 +msgid "Jan" +msgstr "sty" + +#: ../../../../js/local-time.js:32 +msgid "Feb" +msgstr "lut" + +#: ../../../../js/local-time.js:32 +msgid "Mar" +msgstr "mar" + +#: ../../../../js/local-time.js:32 +msgid "Apr" +msgstr "kwi" + +#: ../../../../js/local-time.js:32 +msgid "Jun" +msgstr "cze" + +#: ../../../../js/local-time.js:32 +msgid "Jul" +msgstr "lip" + +#: ../../../../js/local-time.js:32 +msgid "Aug" +msgstr "sie" + +#: ../../../../js/local-time.js:32 +msgid "Sep" +msgstr "wrz" + +#: ../../../../js/local-time.js:32 +msgid "Oct" +msgstr "paź" + +#: ../../../../js/local-time.js:32 +msgid "Nov" +msgstr "lis" + +#: ../../../../js/local-time.js:32 +msgid "Dec" +msgstr "gru" + +#: ../../../../js/local-time.js:33 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 +msgid "pm" +msgstr "pm" diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo index c93d4afd..ac618535 100644 Binary files a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo and b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po index f06c8942..3a1449e4 100644 --- a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po +++ b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-01-18 20:29+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 \n" "Language-Team: LANGUAGE \n" @@ -30,6 +30,7 @@ msgstr "" #: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139 #: ../../../../inc/functions.php:1165 ../../../../inc/functions.php:1179 #: ../../../../inc/functions.php:1168 ../../../../inc/functions.php:1182 +#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 msgid "Previous" msgstr "Wstecz" @@ -45,6 +46,7 @@ msgstr "Wstecz" #: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153 #: ../../../../inc/functions.php:1184 ../../../../inc/functions.php:1193 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 +#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 msgid "Next" msgstr "Dalej" @@ -77,6 +79,7 @@ msgstr "Stwórz nowy board" #: ../../../../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 "wszystkie boardy" @@ -100,12 +103,14 @@ msgstr "Anonimowy" #: /var/www/html/Tinyboard/inc/config.php:481 ../../../../inc/config.php:552 #: ../../../../inc/config.php:641 ../../../../inc/config.php:672 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 msgid "New Topic" msgstr "Nowy wątek" #: /var/www/html/Tinyboard/inc/config.php:482 ../../../../inc/config.php:553 #: ../../../../inc/config.php:642 ../../../../inc/config.php:673 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 msgid "New Reply" msgstr "Odpowiedz" @@ -138,6 +143,7 @@ msgstr "Nie postuj pierwszego dnia." #: ../../../../inc/config.php:696 ../../../../inc/config.php:702 #: ../../../../inc/config.php:804 ../../../../inc/config.php:862 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 msgid "You look like a bot." msgstr "Wyglądasz jak bot." @@ -146,6 +152,7 @@ msgstr "Wyglądasz jak bot." #: ../../../../inc/config.php:697 ../../../../inc/config.php:703 #: ../../../../inc/config.php:805 ../../../../inc/config.php:863 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 msgid "Your browser sent an invalid or no HTTP referer." msgstr "" "Twoja przeglądarka przesłała niepoprawny, bądź nie przesłała informacji o " @@ -156,6 +163,7 @@ msgstr "" #: ../../../../inc/config.php:698 ../../../../inc/config.php:704 #: ../../../../inc/config.php:806 ../../../../inc/config.php:864 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 #, php-format msgid "The %s field was too long." msgstr "Pole %s jest za długie" @@ -165,6 +173,7 @@ msgstr "Pole %s jest za długie" #: ../../../../inc/config.php:699 ../../../../inc/config.php:705 #: ../../../../inc/config.php:807 ../../../../inc/config.php:865 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 msgid "The body was too long." msgstr "Zawartość jest za długa." @@ -173,6 +182,7 @@ msgstr "Zawartość jest za długa." #: ../../../../inc/config.php:700 ../../../../inc/config.php:706 #: ../../../../inc/config.php:808 ../../../../inc/config.php:866 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 msgid "The body was too short or empty." msgstr "Zawartość jest za krótka, bądź pusta." @@ -181,6 +191,7 @@ msgstr "Zawartość jest za krótka, bądź pusta." #: ../../../../inc/config.php:701 ../../../../inc/config.php:707 #: ../../../../inc/config.php:809 ../../../../inc/config.php:867 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 msgid "You must upload an image." msgstr "Musisz wysłać obrazek." @@ -189,6 +200,7 @@ msgstr "Musisz wysłać obrazek." #: ../../../../inc/config.php:702 ../../../../inc/config.php:708 #: ../../../../inc/config.php:810 ../../../../inc/config.php:868 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 msgid "The server failed to handle your upload." msgstr "Nie udało się obsłużyć twojego pliku." @@ -197,6 +209,7 @@ msgstr "Nie udało się obsłużyć twojego pliku." #: ../../../../inc/config.php:703 ../../../../inc/config.php:709 #: ../../../../inc/config.php:811 ../../../../inc/config.php:869 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 msgid "Unsupported image format." msgstr "Niewspierany format obrazka." @@ -205,6 +218,7 @@ msgstr "Niewspierany format obrazka." #: ../../../../inc/config.php:704 ../../../../inc/config.php:710 #: ../../../../inc/config.php:812 ../../../../inc/config.php:870 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 msgid "Invalid board!" msgstr "Niepoprawny board!" @@ -213,6 +227,7 @@ msgstr "Niepoprawny board!" #: ../../../../inc/config.php:705 ../../../../inc/config.php:711 #: ../../../../inc/config.php:813 ../../../../inc/config.php:871 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 msgid "Thread specified does not exist." msgstr "Wybrany wątek nie istnieje." @@ -221,6 +236,7 @@ msgstr "Wybrany wątek nie istnieje." #: ../../../../inc/config.php:706 ../../../../inc/config.php:712 #: ../../../../inc/config.php:814 ../../../../inc/config.php:872 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 msgid "Thread locked. You may not reply at this time." msgstr "Wątek jest zablokowany. Nie możesz w nim teraz postować." @@ -229,6 +245,7 @@ msgstr "Wątek jest zablokowany. Nie możesz w nim teraz postować." #: ../../../../inc/config.php:709 ../../../../inc/config.php:715 #: ../../../../inc/config.php:817 ../../../../inc/config.php:875 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 msgid "You didn't make a post." msgstr "Nie zrobiłeś posta." @@ -237,6 +254,7 @@ msgstr "Nie zrobiłeś posta." #: ../../../../inc/config.php:710 ../../../../inc/config.php:716 #: ../../../../inc/config.php:818 ../../../../inc/config.php:876 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 msgid "Flood detected; Post discarded." msgstr "Wykryto flood; Post odrzucony." @@ -245,6 +263,7 @@ msgstr "Wykryto flood; Post odrzucony." #: ../../../../inc/config.php:711 ../../../../inc/config.php:717 #: ../../../../inc/config.php:819 ../../../../inc/config.php:877 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 msgid "Your request looks automated; Post discarded." msgstr "Twoje żądanie wygląda na zautomatyzowane; Post odrzucony." @@ -253,6 +272,7 @@ msgstr "Twoje żądanie wygląda na zautomatyzowane; Post odrzucony." #: ../../../../inc/config.php:712 ../../../../inc/config.php:718 #: ../../../../inc/config.php:820 ../../../../inc/config.php:878 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 msgid "Unoriginal content!" msgstr "Nieoryginalna treść!" @@ -261,6 +281,7 @@ msgstr "Nieoryginalna treść!" #: ../../../../inc/config.php:713 ../../../../inc/config.php:719 #: ../../../../inc/config.php:821 ../../../../inc/config.php:879 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Nieoryginalna treść! Zostałeś wyciszony na %d sekund." @@ -270,6 +291,7 @@ msgstr "Nieoryginalna treść! Zostałeś wyciszony na %d sekund." #: ../../../../inc/config.php:714 ../../../../inc/config.php:720 #: ../../../../inc/config.php:822 ../../../../inc/config.php:880 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Jesteś wyciszony! Wygasa w ciągu %d sekund." @@ -279,6 +301,7 @@ msgstr "Jesteś wyciszony! Wygasa w ciągu %d sekund." #: ../../../../inc/config.php:715 ../../../../inc/config.php:721 #: ../../../../inc/config.php:823 ../../../../inc/config.php:881 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 #, php-format msgid "Your IP address is listed in %s." msgstr "Twój adres IP jest na liście %s." @@ -288,6 +311,7 @@ msgstr "Twój adres IP jest na liście %s." #: ../../../../inc/config.php:716 ../../../../inc/config.php:722 #: ../../../../inc/config.php:824 ../../../../inc/config.php:882 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 msgid "Too many links; flood detected." msgstr "Zbyt dużo linków; wykryto flood." @@ -296,6 +320,7 @@ msgstr "Zbyt dużo linków; wykryto flood." #: ../../../../inc/config.php:717 ../../../../inc/config.php:723 #: ../../../../inc/config.php:825 ../../../../inc/config.php:883 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 msgid "Too many cites; post discarded." msgstr "Zbyt dużo cytatów; post odrzucony." @@ -304,6 +329,7 @@ msgstr "Zbyt dużo cytatów; post odrzucony." #: ../../../../inc/config.php:718 ../../../../inc/config.php:724 #: ../../../../inc/config.php:826 ../../../../inc/config.php:884 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 msgid "Too many cross-board links; post discarded." msgstr "Zbyt dużo linków między boardami; post odrzucony." @@ -312,6 +338,7 @@ msgstr "Zbyt dużo linków między boardami; post odrzucony." #: ../../../../inc/config.php:719 ../../../../inc/config.php:725 #: ../../../../inc/config.php:827 ../../../../inc/config.php:885 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 msgid "You didn't select anything to delete." msgstr "Nie wybrano nic do usunięcia." @@ -320,6 +347,7 @@ msgstr "Nie wybrano nic do usunięcia." #: ../../../../inc/config.php:720 ../../../../inc/config.php:726 #: ../../../../inc/config.php:828 ../../../../inc/config.php:886 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 msgid "You didn't select anything to report." msgstr "Nie wybrano nic do zgłoszenia." @@ -328,6 +356,7 @@ msgstr "Nie wybrano nic do zgłoszenia." #: ../../../../inc/config.php:721 ../../../../inc/config.php:727 #: ../../../../inc/config.php:829 ../../../../inc/config.php:887 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 msgid "You can't report that many posts at once." msgstr "Nie możesz raportować tyle postów na raz." @@ -336,6 +365,7 @@ msgstr "Nie możesz raportować tyle postów na raz." #: ../../../../inc/config.php:722 ../../../../inc/config.php:728 #: ../../../../inc/config.php:830 ../../../../inc/config.php:888 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 msgid "Wrong password…" msgstr "Niepoprawne hasło" @@ -344,6 +374,7 @@ msgstr "Niepoprawne hasło" #: ../../../../inc/config.php:723 ../../../../inc/config.php:729 #: ../../../../inc/config.php:831 ../../../../inc/config.php:889 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 msgid "Invalid image." msgstr "Niepoprawny obrazek." @@ -352,6 +383,7 @@ msgstr "Niepoprawny obrazek." #: ../../../../inc/config.php:724 ../../../../inc/config.php:730 #: ../../../../inc/config.php:832 ../../../../inc/config.php:890 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 msgid "Unknown file extension." msgstr "Nieznane rozszerzenie pliku." @@ -360,6 +392,7 @@ msgstr "Nieznane rozszerzenie pliku." #: ../../../../inc/config.php:725 ../../../../inc/config.php:731 #: ../../../../inc/config.php:833 ../../../../inc/config.php:891 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 msgid "Maximum file size: %maxsz% bytes
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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-23 18:52+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: dubcheck \n" +"Language-Team: LANGUAGE \n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Show locked threads" +msgstr "Zobraziť zamknuté vlákna" + +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Hide locked threads" +msgstr "Skryť zamknuté vlákna" + +#: ../../../../js/hide-images.js:51 ../../../../js/quick-post-controls.js:32 +#: ../../../../js/upload-selection.js:61 +msgid "File" +msgstr "Súbor" + +#: ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "skryť" + +#: ../../../../js/hide-images.js:57 +msgid "show" +msgstr "ukázať" + +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Stop watching this thread" +msgstr "Zastaviť sledovanie tohto vlákna" + +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Watch this thread" +msgstr "Sledovať toto vlákno" + +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Unpin this board" +msgstr "Odopnúť túto dosku" + +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Pin this board" +msgstr "Pripnúť túto dosku" + +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Stop watching this board" +msgstr "Zastaviť sledovanie tejto dosky" + +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Watch this board" +msgstr "Sledovať túto dosku" + +#: ../../../../js/quick-reply.js:224 +msgid "Upload URL" +msgstr "Adresa súboru" + +#: ../../../../js/quick-reply.js:267 +msgid "Spoiler Image" +msgstr "Skrytý obrázok" + +#: ../../../../js/quick-reply.js:278 +msgid "Comment" +msgstr "Komentár" + +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +msgid "Quick Reply" +msgstr "Rýchla odpoveď" + +#: ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Štýl:" + +#: ../../../../js/local-time.js:41 ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:40 +msgid "Sun" +msgstr "Ne" + +#: ../../../../js/local-time.js:41 ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:40 +msgid "Mon" +msgstr "Po" + +#: ../../../../js/local-time.js:41 ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:40 +msgid "Tue" +msgstr "Ut" + +#: ../../../../js/local-time.js:41 ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:40 +msgid "Wed" +msgstr "St" + +#: ../../../../js/local-time.js:41 ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:40 +msgid "Thu" +msgstr "Št" + +#: ../../../../js/local-time.js:41 ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:40 +msgid "Fri" +msgstr "Pi" + +#: ../../../../js/local-time.js:41 ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:40 +msgid "Sat" +msgstr "So" + +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +#: ../../../../js/forced-anon.js:71 +msgid "Forced anonymity" +msgstr "Vynútená anonymita" + +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +msgid "enabled" +msgstr "zapnutá" + +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 +msgid "disabled" +msgstr "vypnutá" + +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Odoslať" + +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Rýchla odpoveď" + +#: ../../../../js/quick-reply-old.js:35 +#, python-brace-format +msgid "Posting mode: Replying to >>{0}" +msgstr "Režim prispievania: Odpoveď na >>{0}" + +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Návrat" + +#: ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Klikni na Odpoveď pre ich zobrazenie." + +#: ../../../../js/expand.js:22 +msgid "Click to expand" +msgstr "Klikni sem pre zobrazenie" + +#: ../../../../js/expand.js:46 +msgid "Hide expanded replies" +msgstr "Skryť zobrazené odpovede" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "Príspevok nahlásený." + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "Nastala neznáma chyba!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Stalo sa niečo zlé... Nastala neznáma chyba!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Pracujem..." + +#: ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Odosielam... (#%)" + +#: ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Odoslané..." + +#: ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Pri odosielaní nastala neznáma chyba!" + +#: ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Odosielam..." + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" +"Klikni na akýkoľvek obrázok na tejto stránke pre jeho načítanie do Oekaki" + +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Heslo" + +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Odstrániť iba súbor" + +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Odstrániť" + +#: ../../../../js/quick-post-controls.js:37 +msgid "Reason" +msgstr "Dôvod" + +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Nahlásiť" + +#: ../../../../js/catalog-link.js:33 ../../../../js/catalog-link.js:44 +#: ../../../../js/catalog-link.js:52 +msgid "Catalog" +msgstr "Katalóg" + +#: ../../../../js/upload-selection.js:45 +msgid "URL" +msgstr "Adresa" + +#: ../../../../js/upload-selection.js:60 +msgid "Select" +msgstr "Vybrať" + +#: ../../../../js/upload-selection.js:63 +msgid "Remote" +msgstr "Vzdialený" + +#: ../../../../js/upload-selection.js:66 +msgid "Embed" +msgstr "Vložiť" + +#: ../../../../js/upload-selection.js:69 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:42 +msgid "hidden" +msgstr "skrytý" + +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Show images" +msgstr "Zobraziť obrázky" + +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Hide images" +msgstr "Skryť obrázky" + +#: ../../../../js/expand-all-images.js:22 +msgid "Expand all images" +msgstr "Otvoriť všetky obrázky" + +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Uložiť s pôvodným názvom" + +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +msgid "(hide threads from this board)" +msgstr "(skryť vlákna z tejto dosky)" + +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +msgid "(show threads from this board)" +msgstr "(zobraziť vlákna z tejto dosky)" + +#: ../../../../templates/themes/ukko/ukko.js:58 +msgid "No more threads to display" +msgstr "Žiadne ďalšie vlákna na zobrazenie" + +#: ../../../../templates/themes/ukko/ukko.js:80 +msgid "Loading..." +msgstr "Načítanie..." + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Ahoj!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} užívateľov" + +#: ../../../../js/local-time.js:29 +msgid "Sunday" +msgstr "Nedeľa" + +#: ../../../../js/local-time.js:29 +msgid "Monday" +msgstr "Pondelok" + +#: ../../../../js/local-time.js:29 +msgid "Tuesday" +msgstr "Utorok" + +#: ../../../../js/local-time.js:29 +msgid "Wednesday" +msgstr "Streda" + +#: ../../../../js/local-time.js:29 +msgid "Thursday" +msgstr "Štvrtok" + +#: ../../../../js/local-time.js:29 +msgid "Friday" +msgstr "Piatok" + +#: ../../../../js/local-time.js:29 +msgid "Saturday" +msgstr "Sobota" + +#: ../../../../js/local-time.js:31 +msgid "January" +msgstr "Január" + +#: ../../../../js/local-time.js:31 +msgid "February" +msgstr "Február" + +#: ../../../../js/local-time.js:31 +msgid "March" +msgstr "Marec" + +#: ../../../../js/local-time.js:31 +msgid "April" +msgstr "Apríl" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +msgid "May" +msgstr "Máj" + +#: ../../../../js/local-time.js:31 +msgid "June" +msgstr "Jún" + +#: ../../../../js/local-time.js:31 +msgid "July" +msgstr "Júl" + +#: ../../../../js/local-time.js:31 +msgid "August" +msgstr "August" + +#: ../../../../js/local-time.js:31 +msgid "September" +msgstr "September" + +#: ../../../../js/local-time.js:31 +msgid "October" +msgstr "Október" + +#: ../../../../js/local-time.js:31 +msgid "November" +msgstr "November" + +#: ../../../../js/local-time.js:31 +msgid "December" +msgstr "December" + +#: ../../../../js/local-time.js:32 +msgid "Jan" +msgstr "Jan" + +#: ../../../../js/local-time.js:32 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 +msgid "Apr" +msgstr "Apr" + +#: ../../../../js/local-time.js:32 +msgid "Jun" +msgstr "Jún" + +#: ../../../../js/local-time.js:32 +msgid "Jul" +msgstr "Júl" + +#: ../../../../js/local-time.js:32 +msgid "Aug" +msgstr "Aug" + +#: ../../../../js/local-time.js:32 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 +msgid "Oct" +msgstr "Okt" + +#: ../../../../js/local-time.js:32 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 +msgid "Dec" +msgstr "Dec" + +#: ../../../../js/local-time.js:33 +msgid "AM" +msgstr "Doobeda" + +#: ../../../../js/local-time.js:34 +msgid "PM" +msgstr "Poobede" + +#: ../../../../js/local-time.js:35 +msgid "am" +msgstr "doobeda" + +#: ../../../../js/local-time.js:36 +msgid "pm" +msgstr "poobede" diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..5d9c569b Binary files /dev/null and b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..717ec3ed --- /dev/null +++ b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3076 @@ +# 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-23 18:52+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: dubcheck \n" +"Language-Team: LANGUAGE \n" +"Language: sk_SK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:783 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" +"Všetky obchodné značky, autorské práva, komentáre a multimediálny obsah na " +"tejto stránke sú vlastníctvom a zodpovednosťou ich príslušných strán." + +#. There is no previous page. +#: /var/www/html/Tinyboard/inc/functions.php:958 +#: /var/www/html/Tinyboard/inc/functions.php:972 +#: ../../../../inc/functions.php:1041 ../../../../inc/functions.php:1055 +#: ../../../../inc/functions.php:1039 ../../../../inc/functions.php:1053 +#: ../../../../inc/functions.php:1068 ../../../../inc/functions.php:1082 +#: ../../../../inc/functions.php:1079 ../../../../inc/functions.php:1093 +#: ../../../../inc/functions.php:1122 ../../../../inc/functions.php:1136 +#: ../../../../inc/functions.php:1124 ../../../../inc/functions.php:1138 +#: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139 +#: ../../../../inc/functions.php:1165 ../../../../inc/functions.php:1179 +#: ../../../../inc/functions.php:1168 ../../../../inc/functions.php:1182 +msgid "Previous" +msgstr "Späť" + +#. There is no next page. +#: /var/www/html/Tinyboard/inc/functions.php:977 +#: /var/www/html/Tinyboard/inc/functions.php:986 +#: ../../../../inc/functions.php:1060 ../../../../inc/functions.php:1069 +#: ../../../../inc/functions.php:1058 ../../../../inc/functions.php:1067 +#: ../../../../inc/functions.php:1087 ../../../../inc/functions.php:1096 +#: ../../../../inc/functions.php:1098 ../../../../inc/functions.php:1107 +#: ../../../../inc/functions.php:1141 ../../../../inc/functions.php:1150 +#: ../../../../inc/functions.php:1143 ../../../../inc/functions.php:1152 +#: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153 +#: ../../../../inc/functions.php:1184 ../../../../inc/functions.php:1193 +#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 +msgid "Next" +msgstr "Ďalej" + +#: /var/www/html/Tinyboard/inc/image.php:21 ../../../../inc/image.php:24 +#: ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "Nepodporovaný formát súboru:" + +#: /var/www/html/Tinyboard/inc/mod.php:129 +#: ../../../../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 "Vytvoriť novú dosku" + +#. line 71 +#: /var/www/html/Tinyboard/inc/mod.php:138 +#: /var/www/html/Tinyboard/mod.php:1833 /var/www/html/Tinyboard/mod.php:3036 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:291 +#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:75 +#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:150 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:207 +#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:155 +#: ../../../../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 +msgid "all boards" +msgstr "všetky dosky" + +#: /var/www/html/Tinyboard/inc/display.php:80 ../../../../inc/display.php:75 +#: ../../../../inc/display.php:79 ../../../../inc/display.php:83 +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 +msgid "Error" +msgstr "Chyba" + +#: /var/www/html/Tinyboard/inc/display.php:81 ../../../../inc/display.php:76 +#: ../../../../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 "Nastala chyba." + +#. line 6 +#: /var/www/html/Tinyboard/inc/display.php:87 ../../../../inc/display.php:82 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "Návrat" + +#: /var/www/html/Tinyboard/inc/display.php:97 ../../../../inc/display.php:91 +#: ../../../../inc/mod/pages.php:59 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/display.php:92 ../../../../inc/display.php:96 +#: ../../../../inc/display.php:100 ../../../../inc/display.php:110 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 +msgid "Login" +msgstr "Prihlásenie" + +#: /var/www/html/Tinyboard/inc/display.php:208 +#, 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." + +#. line 5 +#: /var/www/html/Tinyboard/inc/display.php:272 +#: /var/www/html/Tinyboard/inc/display.php:365 +#: /var/www/html/Tinyboard/templates/cache/dd/1a/77e08f0c1b4ecf707c5a3e5a70be.php:27 +#: ../../../../templates/cache/a8/a6/1022091d3402e085395b12e6279a.php:27 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:27 +#: ../../../../inc/display.php:423 ../../../../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 "Odstrániť" + +#: /var/www/html/Tinyboard/inc/display.php:272 +#: /var/www/html/Tinyboard/inc/display.php:365 ../../../../inc/display.php:423 +#: ../../../../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 "Naozaj to chceš odstrániť?" + +#: /var/www/html/Tinyboard/inc/display.php:276 +#: /var/www/html/Tinyboard/inc/display.php:369 ../../../../inc/display.php:427 +#: ../../../../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 "Odstrániť všetky príspevky od IP adresy" + +#: /var/www/html/Tinyboard/inc/display.php:276 +#: /var/www/html/Tinyboard/inc/display.php:369 ../../../../inc/display.php:427 +#: ../../../../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 "Naozaj chceš odstrániť všetky príspevky tejto IP adresy?" + +#: /var/www/html/Tinyboard/inc/display.php:280 +#: /var/www/html/Tinyboard/inc/display.php:373 ../../../../inc/display.php:334 +#: ../../../../inc/display.php:435 ../../../../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 "Zabanovať" + +#: /var/www/html/Tinyboard/inc/display.php:284 +#: /var/www/html/Tinyboard/inc/display.php:377 ../../../../inc/display.php:338 +#: ../../../../inc/display.php:439 ../../../../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 "Zabanovať a odstrániť" + +#: /var/www/html/Tinyboard/inc/display.php:288 +#: /var/www/html/Tinyboard/inc/display.php:381 +msgid "Remove file" +msgstr "Odstrániť súbor" + +#: /var/www/html/Tinyboard/inc/display.php:292 +#: /var/www/html/Tinyboard/inc/display.php:408 +#: ../../../../inc/mod/pages.php:1080 ../../../../inc/mod/pages.php:1105 +#: ../../../../inc/mod/pages.php:1239 ../../../../inc/mod/pages.php:1242 +#: ../../../../inc/display.php:346 ../../../../inc/display.php:470 +#: ../../../../inc/mod/pages.php:1314 ../../../../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 +#: ../../../../inc/mod/pages.php:1491 +msgid "Edit post" +msgstr "Upraviť príspevok" + +#: /var/www/html/Tinyboard/inc/display.php:386 ../../../../inc/display.php:448 +#: ../../../../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 "Odopnúť vlákno" + +#: /var/www/html/Tinyboard/inc/display.php:388 ../../../../inc/display.php:450 +#: ../../../../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 "Pripnúť vlákno" + +#: /var/www/html/Tinyboard/inc/display.php:392 ../../../../inc/display.php:454 +#: ../../../../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 "Povoliť bumpovanie vlákna" + +#: /var/www/html/Tinyboard/inc/display.php:394 ../../../../inc/display.php:456 +#: ../../../../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 "Zakázať bumpovanie vlákna" + +#: /var/www/html/Tinyboard/inc/display.php:399 ../../../../inc/display.php:461 +#: ../../../../inc/display.php:467 ../../../../inc/display.php:466 +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 +msgid "Unlock thread" +msgstr "Odomknúť vlákno" + +#: /var/www/html/Tinyboard/inc/display.php:401 ../../../../inc/display.php:463 +#: ../../../../inc/display.php:469 ../../../../inc/display.php:468 +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 +msgid "Lock thread" +msgstr "Zamknúť vlákno" + +#: /var/www/html/Tinyboard/inc/display.php:404 ../../../../inc/display.php:466 +#: ../../../../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 "Presunúť vlákno na inú dosku" + +#. line 11 +#. line 7 +#. line 11 +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. 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 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:55 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:55 +#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:31 +#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:36 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:33 +#: ../../../../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 +msgid "Name" +msgstr "Meno" + +#. line 21 +#. line 15 +#. 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 +msgid "Email" +msgstr "E-mail" + +#. line 34 +#. line 23 +#. line 34 +#. line 23 +#. line 37 +#. line 46 +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. 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 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:116 +#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:63 +#: ../../../../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 +msgid "Subject" +msgstr "Predmet" + +#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:110 +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:119 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:112 +#: ../../../../templates/cache/cf/0c/61af144f478f5c035cb3a2799e48.php:117 +#: ../../../../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 "Skrytý obrázok" + +#. line 45 +#. line 32 +#. line 48 +#. 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 +#: ../../../../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 +msgid "Comment" +msgstr "Komentár" + +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 73 +#. line 61 +#. line 64 +#. line 73 +#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:133 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:142 +#: ../../../../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 "Verifikácia" + +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 87 +#. line 3 +#. line 72 +#. line 3 +#. line 72 +#. line 3 +#. line 72 +#. 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 +#: /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 +#: ../../../../templates/cache/a8/a6/1022091d3402e085395b12e6279a.php:22 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:214 +#: ../../../../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 "Súbor" + +#. line 97 +#. line 82 +#. line 85 +#. line 100 +#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:163 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:183 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:268 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:232 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:252 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +msgid "Embed" +msgstr "Vlož" + +#. line 109 +#. line 94 +#. line 97 +#. line 112 +#. line 111 +#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:179 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:206 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:291 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:255 +#: ../../../../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 "Vlajky" + +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 113 +#. line 114 +#. line 98 +#. line 99 +#. line 98 +#. line 99 +#. line 98 +#. line 99 +#. line 101 +#. line 102 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. 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 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:218 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:300 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:303 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:264 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:267 +#: ../../../../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 "Pripnuté" + +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 117 +#. line 118 +#. line 102 +#. line 103 +#. line 102 +#. line 103 +#. line 102 +#. line 103 +#. line 105 +#. line 106 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. 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 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:230 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:312 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:315 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:276 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:279 +#: ../../../../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 "Zamknuté" + +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 121 +#. line 122 +#. line 106 +#. line 107 +#. line 106 +#. line 107 +#. line 106 +#. line 107 +#. line 109 +#. line 110 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. 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 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:242 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:324 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:327 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:288 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:291 +#: ../../../../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 "Čisté HTML" + +#. line 129 +#. line 14 +#. line 129 +#. line 114 +#. line 117 +#. line 14 +#. line 132 +#. line 14 +#. line 132 +#. 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 +#: ../../../../templates/cache/a8/a6/1022091d3402e085395b12e6279a.php:23 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:23 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:342 +#: ../../../../templates/cache/04/54/656aa217f895c90eae78024fa060.php:41 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../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 "Heslo" + +#. line 134 +#. line 119 +#. line 122 +#. line 137 +#. line 136 +#: /var/www/html/Tinyboard/templates/cache/1d/5e/91ec2bc929b77377b8b877d82db4.php:236 +#: ../../../../templates/cache/d1/2d/eda9403e966240c642b13ca43eb6.php:266 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:351 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:315 +#: ../../../../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 "(Pre odstránenie príspevku.)" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:107 +#: ../../../../templates/cache/cf/0c/61af144f478f5c035cb3a2799e48.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 "Súbor:" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:422 +msgid "Expand" +msgstr "Otvoriť" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:432 +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:468 +msgid "Quick" +msgstr "Rýchla" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:459 +msgid "Refresh" +msgstr "Obnoviť" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:478 +#: ../../../../templates/cache/cf/0c/61af144f478f5c035cb3a2799e48.php:415 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:461 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:472 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:506 +#: ../../../../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 "Odpoveď" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:511 +#: ../../../../templates/cache/cf/0c/61af144f478f5c035cb3a2799e48.php:442 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:488 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:499 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:533 +#: ../../../../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 príspevok" +msgstr[1] "%count% príspevky" +msgstr[2] "%count% príspevkov" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:517 +#: ../../../../templates/cache/cf/0c/61af144f478f5c035cb3a2799e48.php:448 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:494 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:505 +#: ../../../../templates/cache/e5/22/4711dd22e4c786b4de405db7a449.php:114 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:539 +#: ../../../../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 "a" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:528 +#: ../../../../templates/cache/cf/0c/61af144f478f5c035cb3a2799e48.php:459 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:505 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:516 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:550 +#: ../../../../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 príspevok s obrázkom" +msgstr[1] "%count% príspevky s obrázkom" +msgstr[2] "%count% príspevkov s obrázkom" + +#: /var/www/html/Tinyboard/templates/cache/96/13/d13c7abb8d82989e547dc9be1787.php:533 +#: ../../../../templates/cache/cf/0c/61af144f478f5c035cb3a2799e48.php:464 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:510 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:521 +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:555 +#: ../../../../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 "skrytých. Klikni na Odpoveď pre ich zobrazenie." + +#: /var/www/html/Tinyboard/templates/cache/c9/45/de4b7a1b91ef4b1ce35c7a930347.php:82 +#: /var/www/html/Tinyboard/templates/cache/56/25/feb68d2e52b15e0d38ae0093f0f4.php:158 +#: /var/www/html/Tinyboard/templates/cache/0b/22/d0c24fb343dd5fe77600d77dcc1b.php:159 +#: ../../../../templates/cache/82/20/1c3352a2eb8f4503c0f7634bca15.php:169 +#: ../../../../templates/cache/7a/d3/9236b821893e6bc57b16919988fd.php:169 +#: ../../../../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:131 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:115 +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:132 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:116 +#: ../../../../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 "Návrat na panel administrácie" + +#. line 27 +#. line 31 +#. line 32 +#. line 39 +#. line 33 +#: /var/www/html/Tinyboard/templates/cache/0b/22/d0c24fb343dd5fe77600d77dcc1b.php:165 +#: ../../../../templates/cache/82/20/1c3352a2eb8f4503c0f7634bca15.php:177 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:106 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:123 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:124 +#: ../../../../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 "Režim prispievania: Odpoveď" + +#: /var/www/html/Tinyboard/templates/cache/0b/22/d0c24fb343dd5fe77600d77dcc1b.php:168 +#: /var/www/html/Tinyboard/templates/cache/0b/22/d0c24fb343dd5fe77600d77dcc1b.php:210 +#: ../../../../templates/cache/82/20/1c3352a2eb8f4503c0f7634bca15.php:180 +#: ../../../../templates/cache/82/20/1c3352a2eb8f4503c0f7634bca15.php:222 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:109 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:155 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:126 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:172 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:127 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:173 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:174 +#: ../../../../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 "Návrat" + +#. line 2 +#: /var/www/html/Tinyboard/templates/cache/dd/1a/77e08f0c1b4ecf707c5a3e5a70be.php:19 +#: ../../../../templates/cache/a8/a6/1022091d3402e085395b12e6279a.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 "Odstrániť príspevok" + +#. line 8 +#. line 106 +#. line 8 +#. line 32 +#. line 48 +#. line 106 +#. line 8 +#. line 32 +#. line 106 +#. line 8 +#. line 32 +#. 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 +#: /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 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:32 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:256 +#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:90 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:128 +#: ../../../../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 "Dôvod" + +#. line 10 +#: /var/www/html/Tinyboard/templates/cache/dd/1a/77e08f0c1b4ecf707c5a3e5a70be.php:36 +#: ../../../../templates/cache/a8/a6/1022091d3402e085395b12e6279a.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 "Nahlásiť" + +#: /var/www/html/Tinyboard/mod.php:104 /var/www/html/Tinyboard/mod.php:776 +#: /var/www/html/Tinyboard/mod.php:862 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:120 +#: ../../../../templates/cache/c8/8b/242bf87b3b6a29a67cdd09a3afeb.php:125 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:89 +#: ../../../../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 "žiadny predmet" + +#: /var/www/html/Tinyboard/mod.php:121 +msgid "View all entries" +msgstr "Zobraziť všetky položky" + +#: /var/www/html/Tinyboard/mod.php:129 /var/www/html/Tinyboard/mod.php:923 +msgid "PM Inbox" +msgstr "Schránka SS" + +#: /var/www/html/Tinyboard/mod.php:136 /var/www/html/Tinyboard/mod.php:874 +#: ../../../../inc/mod/pages.php:376 ../../../../inc/mod/pages.php:393 +#: ../../../../inc/mod/pages.php:406 ../../../../inc/mod/pages.php:540 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:166 +#: ../../../../inc/mod/pages.php:604 ../../../../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 "Novinky" + +#: /var/www/html/Tinyboard/mod.php:141 /var/www/html/Tinyboard/mod.php:1614 +#: ../../../../inc/mod/pages.php:1557 ../../../../inc/mod/pages.php:1657 +#: ../../../../inc/mod/pages.php:1682 ../../../../inc/mod/pages.php:1816 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:207 +#: ../../../../inc/mod/pages.php:1831 ../../../../inc/mod/pages.php:1904 +#: ../../../../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 +#: ../../../../inc/mod/pages.php:2176 +msgid "Report queue" +msgstr "Front nahlásení" + +#: /var/www/html/Tinyboard/mod.php:144 /var/www/html/Tinyboard/mod.php:1882 +#: ../../../../inc/mod/pages.php:664 ../../../../inc/mod/pages.php:705 +#: ../../../../inc/mod/pages.php:721 ../../../../inc/mod/pages.php:855 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:224 +#: ../../../../inc/mod/pages.php:918 ../../../../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 +#: ../../../../inc/mod/pages.php:911 +msgid "Ban list" +msgstr "Zoznam banov" + +#: /var/www/html/Tinyboard/mod.php:147 /var/www/html/Tinyboard/mod.php:1288 +#: ../../../../inc/mod/pages.php:1271 ../../../../inc/mod/pages.php:1369 +#: ../../../../inc/mod/pages.php:1394 ../../../../inc/mod/pages.php:1528 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:232 +#: ../../../../inc/mod/pages.php:1543 ../../../../inc/mod/pages.php:1615 +#: ../../../../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 +#: ../../../../inc/mod/pages.php:1852 +msgid "Manage users" +msgstr "Spravovať užívateľov" + +#: /var/www/html/Tinyboard/mod.php:149 +msgid "Change own password" +msgstr "Zmeniť vlastné heslo" + +#: /var/www/html/Tinyboard/mod.php:152 /var/www/html/Tinyboard/mod.php:477 +#: ../../../../inc/mod/pages.php:416 ../../../../inc/mod/pages.php:443 +#: ../../../../inc/mod/pages.php:433 ../../../../inc/mod/pages.php:460 +#: ../../../../inc/mod/pages.php:446 ../../../../inc/mod/pages.php:473 +#: ../../../../inc/mod/pages.php:580 ../../../../inc/mod/pages.php:607 +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:65 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:255 +#: ../../../../inc/mod/pages.php:644 ../../../../inc/mod/pages.php:671 +#: ../../../../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:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "Log moderácie" + +#: /var/www/html/Tinyboard/mod.php:155 +msgid "Rebuild static files" +msgstr "Prestavať statické súbory" + +#: /var/www/html/Tinyboard/mod.php:158 +msgid "Clear cache" +msgstr "Vyčistiť cache" + +#: /var/www/html/Tinyboard/mod.php:161 +msgid "Show configuration" +msgstr "Zobraziť konfiguráciu" + +#: /var/www/html/Tinyboard/mod.php:165 /var/www/html/Tinyboard/mod.php:709 +#: ../../../../inc/mod/pages.php:1739 ../../../../inc/mod/pages.php:1805 +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1964 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:247 +#: ../../../../inc/mod/pages.php:1979 ../../../../inc/mod/pages.php:2052 +#: ../../../../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 +#: ../../../../inc/mod/pages.php:2385 +msgid "Manage themes" +msgstr "Spravovať témy" + +#. line 2 +#. line 5 +#. line 2 +#: /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 +msgid "Phrase:" +msgstr "Fráza:" + +#. line 16 +#. line 2 +#. line 106 +#. line 2 +#. line 16 +#. line 106 +#. line 16 +#. line 106 +#. line 16 +#. line 112 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#: /var/www/html/Tinyboard/mod.php:172 +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:72 +#: ../../../../templates/cache/c3/de/6ff26042c5b94cc80055e6f209d2.php:19 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:286 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:19 +#: ../../../../search.php:165 ../../../../search.php:168 +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:80 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:307 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:322 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +msgid "Search" +msgstr "Hľadať" + +#: /var/www/html/Tinyboard/mod.php:174 +msgid "" +"(Search is case-insensitive, and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +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.)" + +#: /var/www/html/Tinyboard/mod.php:180 ../../../../inc/mod/pages.php:106 +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "Nebolo možné nájsť momentálnu verziu! (Skontroluj .installed)" + +#. line 146 +#. line 158 +#. line 164 +#: /var/www/html/Tinyboard/mod.php:233 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:364 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:397 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:425 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:440 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +msgid "Logout" +msgstr "Odhlásiť" + +#: /var/www/html/Tinyboard/mod.php:245 ../../../../inc/mod/pages.php:147 +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "Panel administrácie" + +#: /var/www/html/Tinyboard/mod.php:402 +msgid "User" +msgstr "Užívateľ" + +#. line 16 +#. line 134 +#: /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 +msgid "IP address" +msgstr "IP adresa" + +#: /var/www/html/Tinyboard/mod.php:404 +msgid "Ago" +msgstr "späť" + +#. line 116 +#. line 182 +#. line 65 +#. line 49 +#. line 136 +#. line 116 +#. line 182 +#. line 65 +#. line 116 +#. line 182 +#. line 65 +#. 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 +#: /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 +#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:142 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:131 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:355 +#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:147 +#: ../../../../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 +msgid "Board" +msgstr "Doska" + +#. line 183 +#. line 137 +#. line 183 +#. line 185 +#. line 89 +#. line 185 +#. 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 +msgid "Action" +msgstr "Akcia" + +#: /var/www/html/Tinyboard/mod.php:528 ../../../../inc/mod/pages.php:1723 +#: ../../../../inc/mod/pages.php:1789 ../../../../inc/mod/pages.php:1814 +#: ../../../../inc/mod/pages.php:1948 ../../../../inc/mod/pages.php:1963 +#: ../../../../inc/mod/pages.php:2036 ../../../../inc/mod/pages.php:2093 +#: ../../../../inc/mod/pages.php:2215 ../../../../inc/mod/pages.php:2226 +#: ../../../../inc/mod/pages.php:2367 ../../../../inc/mod/pages.php:2364 +msgid "Themes directory doesn't exist!" +msgstr "Adresár \"themes\" neexistuje!" + +#: /var/www/html/Tinyboard/mod.php:530 ../../../../inc/mod/pages.php:1725 +#: ../../../../inc/mod/pages.php:1791 ../../../../inc/mod/pages.php:1816 +#: ../../../../inc/mod/pages.php:1950 ../../../../inc/mod/pages.php:1965 +#: ../../../../inc/mod/pages.php:2038 ../../../../inc/mod/pages.php:2095 +#: ../../../../inc/mod/pages.php:2217 ../../../../inc/mod/pages.php:2228 +#: ../../../../inc/mod/pages.php:2369 ../../../../inc/mod/pages.php:2366 +msgid "Cannot open themes directory; check permissions." +msgstr "Nebolo možné otvoriť adresár \"themes\"; skontroluj oprávnenia." + +#. line 11 +#: /var/www/html/Tinyboard/mod.php:671 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:42 +msgid "Version" +msgstr "Verzia" + +#. line 15 +#: /var/www/html/Tinyboard/mod.php:675 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:51 +msgid "Description" +msgstr "Popis" + +#. line 19 +#: /var/www/html/Tinyboard/mod.php:679 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:60 +msgid "Thumbnail" +msgstr "Miniatúra" + +#. line 25 +#: /var/www/html/Tinyboard/mod.php:687 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:86 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:77 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:93 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +msgid "Actions" +msgstr "Akcie" + +#. line 27 +#: /var/www/html/Tinyboard/mod.php:689 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:81 +msgid "Use theme" +msgstr "Použiť tému" + +#: /var/www/html/Tinyboard/mod.php:690 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:87 +msgid "Reconfigure" +msgstr "Prekonfigurovať" + +#: /var/www/html/Tinyboard/mod.php:690 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:88 +msgid "Install" +msgstr "Inštalovať" + +#: /var/www/html/Tinyboard/mod.php:693 ../../../../inc/mod/pages.php:1467 +#: ../../../../inc/mod/pages.php:1471 ../../../../inc/mod/pages.php:1567 +#: ../../../../inc/mod/pages.php:1571 ../../../../inc/mod/pages.php:1592 +#: ../../../../inc/mod/pages.php:1596 ../../../../inc/mod/pages.php:1726 +#: ../../../../inc/mod/pages.php:1730 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:263 +#: ../../../../inc/mod/pages.php:1741 ../../../../inc/mod/pages.php:1745 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:98 +#: ../../../../inc/mod/pages.php:1814 ../../../../inc/mod/pages.php:1818 +#: ../../../../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 +#: ../../../../inc/mod/pages.php:2087 ../../../../inc/mod/pages.php:2091 +msgid "Rebuild" +msgstr "Prestavať" + +#: /var/www/html/Tinyboard/mod.php:694 +#: ../../../../templates/cache/86/31/3f70fa8521e56d617b21133af4d8.php:103 +msgid "Uninstall" +msgstr "Odinštalovať" + +#: /var/www/html/Tinyboard/mod.php:705 +msgid "Uninstall all themes." +msgstr "Odinštalovať všetky témy." + +#. line 27 +#. line 16 +#. line 28 +#: /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 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "Telo" + +#. line 21 +#: /var/www/html/Tinyboard/mod.php:759 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "Prispieť na nástenku" + +#. line 31 +#. line 37 +#: /var/www/html/Tinyboard/mod.php:792 ../../../../inc/mod/pages.php:316 +#: ../../../../inc/mod/pages.php:333 ../../../../inc/mod/pages.php:346 +#: ../../../../inc/mod/pages.php:480 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:96 +#: ../../../../inc/mod/pages.php:543 ../../../../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 "Nástenka" + +#: /var/www/html/Tinyboard/mod.php:845 +msgid "Post to news" +msgstr "Prispieť do noviniek" + +#: /var/www/html/Tinyboard/mod.php:893 +msgid "No private messages for you." +msgstr "Žiadne súkromné správy pre Teba." + +#: /var/www/html/Tinyboard/mod.php:923 +msgid "empty" +msgstr "prázdne" + +#: /var/www/html/Tinyboard/mod.php:923 +msgid "unread" +msgstr "neprečítané" + +#: /var/www/html/Tinyboard/mod.php:1221 +msgid "ID" +msgstr "ID" + +#. line 6 +#: /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 +msgid "Username" +msgstr "Užívateľské meno" + +#: /var/www/html/Tinyboard/mod.php:1221 +msgid "Type" +msgstr "Typ" + +#. 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 +msgid "Boards" +msgstr "Dosky" + +#: /var/www/html/Tinyboard/mod.php:1221 +msgid "Last action" +msgstr "Posledná akcia" + +#: /var/www/html/Tinyboard/mod.php:1281 +msgid "Create new user" +msgstr "Vytvoriť nového užívateľa" + +#: /var/www/html/Tinyboard/mod.php:1462 +msgid "Could not re-login after changing password. (?)" +msgstr "Nebolo možné sa prihlásiť po zmene hesla. (?)" + +#. line 126 +#. line 50 +#. line 126 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#: /var/www/html/Tinyboard/mod.php:1801 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:300 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:134 +#: ../../../../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 "sada" + +#. line 130 +#. line 52 +#. line 130 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#: /var/www/html/Tinyboard/mod.php:1801 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:309 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:140 +#: ../../../../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 "Vyprší" + +#. line 24 +#. line 62 +#. line 150 +#. line 180 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 62 +#. line 150 +#. line 180 +#. line 24 +#. line 62 +#. line 150 +#. line 180 +#. 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 +#: /var/www/html/Tinyboard/mod.php:1801 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:74 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:169 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:352 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:421 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:51 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:146 +#: ../../../../templates/cache/4c/fb/a3bf13b0badfc09442bd42da1cce.php:346 +#: ../../../../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 +msgid "Staff" +msgstr "Tím" + +#: /var/www/html/Tinyboard/mod.php:1889 +msgid "Cache is not enabled." +msgstr "Cache nieje povolená." + +#: /var/www/html/Tinyboard/mod.php:1966 /var/www/html/Tinyboard/mod.php:2057 +#: /var/www/html/Tinyboard/mod.php:2106 /var/www/html/Tinyboard/mod.php:2110 +#: ../../../../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 "Konfigurácia" + +#: /var/www/html/Tinyboard/mod.php:2174 ../../../../inc/mod/pages.php:255 +#: ../../../../inc/mod/pages.php:272 ../../../../inc/mod/pages.php:285 +#: ../../../../inc/mod/pages.php:419 ../../../../inc/mod/pages.php:481 +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "Nebolo možné otvoriť dosku po jej vytvorení." + +#: /var/www/html/Tinyboard/mod.php:2678 ../../../../inc/mod/pages.php:759 +#: ../../../../inc/mod/pages.php:800 ../../../../inc/mod/pages.php:823 +#: ../../../../inc/mod/pages.php:957 ../../../../inc/mod/pages.php:1020 +#: ../../../../inc/mod/pages.php:1027 ../../../../inc/mod/pages.php:1120 +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1188 +msgid "Target and source board are the same." +msgstr "Cieľová a zdrojová doska sú rovnaké." + +#: /var/www/html/Tinyboard/mod.php:2795 +msgid "No board to move to; there is only one." +msgstr "Nieje kam presunúť; existuje iba jedna doska." + +#: ../../../../inc/mod/pages.php:63 ../../../../inc/mod/pages.php:66 +#: ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "Potvrdiť akciu" + +#: ../../../../inc/mod/pages.php:222 ../../../../inc/mod/pages.php:239 +#: ../../../../inc/mod/pages.php:252 ../../../../inc/mod/pages.php:386 +#: ../../../../inc/mod/pages.php:431 ../../../../inc/mod/pages.php:436 +#: ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "Upraviť dosku" + +#: ../../../../inc/mod/pages.php:270 ../../../../inc/mod/pages.php:287 +#: ../../../../inc/mod/pages.php:300 ../../../../inc/mod/pages.php:434 +#: ../../../../inc/mod/pages.php:496 ../../../../inc/mod/pages.php:501 +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "Nová doska" + +#. line 102 +#. line 20 +#. line 102 +#. line 20 +#. line 102 +#. line 20 +#. line 102 +#. line 20 +#. 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 +#: ../../../../templates/cache/18/9c/c365d711719f494c684aab98a4ae.php:65 +#: ../../../../inc/mod/pages.php:825 ../../../../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 +#: ../../../../inc/mod/pages.php:849 +msgid "IP" +msgstr "IP adresa" + +#. line 169 +#. line 171 +#: ../../../../inc/mod/pages.php:596 ../../../../inc/mod/pages.php:985 +#: ../../../../inc/mod/pages.php:622 ../../../../inc/mod/pages.php:1028 +#: ../../../../inc/mod/pages.php:638 ../../../../inc/mod/pages.php:1053 +#: ../../../../inc/mod/pages.php:772 ../../../../inc/mod/pages.php:1187 +#: ../../../../templates/cache/24/a0/f1ddafed7a8f9625e747a5ca33f5.php:398 +#: ../../../../inc/mod/pages.php:1190 ../../../../inc/mod/pages.php:835 +#: ../../../../inc/mod/pages.php:1255 ../../../../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 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1429 +msgid "New ban" +msgstr "Nový ban" + +#: ../../../../inc/mod/pages.php:919 ../../../../inc/mod/pages.php:962 +#: ../../../../inc/mod/pages.php:987 ../../../../inc/mod/pages.php:1121 +#: ../../../../inc/mod/pages.php:1184 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1285 ../../../../inc/mod/pages.php:1296 +#: ../../../../inc/mod/pages.php:1357 ../../../../inc/mod/pages.php:1354 +msgid "Impossible to move thread; there is only one board." +msgstr "Nie je možné presunúť vlákno; existuje iba jedna doska." + +#. line 39 +#: ../../../../inc/mod/pages.php:923 ../../../../inc/mod/pages.php:966 +#: ../../../../inc/mod/pages.php:991 ../../../../inc/mod/pages.php:1125 +#: ../../../../templates/cache/dd/1a/7d548894242b9d7bff167de40716.php:106 +#: ../../../../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 ../../../../inc/mod/pages.php:1358 +msgid "Move thread" +msgstr "Presunúť vlákno" + +#: ../../../../inc/mod/pages.php:1209 ../../../../inc/mod/pages.php:1258 +#: ../../../../inc/mod/pages.php:1307 ../../../../inc/mod/pages.php:1356 +#: ../../../../inc/mod/pages.php:1332 ../../../../inc/mod/pages.php:1381 +#: ../../../../inc/mod/pages.php:1466 ../../../../inc/mod/pages.php:1515 +#: ../../../../inc/mod/pages.php:1477 ../../../../inc/mod/pages.php:1530 +#: ../../../../inc/mod/pages.php:1549 ../../../../inc/mod/pages.php:1602 +#: ../../../../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 ../../../../inc/mod/pages.php:1772 +msgid "Edit user" +msgstr "Upraviť užívateľa" + +#. deleted? +#: ../../../../inc/mod/pages.php:1333 ../../../../inc/mod/pages.php:1405 +#: ../../../../inc/mod/pages.php:1431 ../../../../inc/mod/pages.php:1503 +#: ../../../../inc/mod/pages.php:1456 ../../../../inc/mod/pages.php:1528 +#: ../../../../inc/mod/pages.php:1590 ../../../../inc/mod/pages.php:1662 +#: ../../../../inc/mod/pages.php:1605 ../../../../inc/mod/pages.php:1677 +#: ../../../../inc/mod/pages.php:1750 ../../../../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 ../../../../inc/mod/pages.php:1942 +#: ../../../../inc/mod/pages.php:2018 +msgid "New PM for" +msgstr "Nová SS pre" + +#: ../../../../inc/mod/pages.php:1337 ../../../../inc/mod/pages.php:1435 +#: ../../../../inc/mod/pages.php:1460 ../../../../inc/mod/pages.php:1594 +#: ../../../../inc/mod/pages.php:1609 ../../../../inc/mod/pages.php:1681 +#: ../../../../inc/mod/pages.php:1687 ../../../../inc/mod/pages.php:1819 +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1949 +msgid "Private message" +msgstr "Súkromná správa" + +#. line 62 +#. line 68 +#: ../../../../inc/mod/pages.php:1358 ../../../../inc/mod/pages.php:1456 +#: ../../../../inc/mod/pages.php:1481 ../../../../inc/mod/pages.php:1615 +#: ../../../../templates/cache/3a/df/ab38a77244cb9c729b4c6f99759a.php:171 +#: ../../../../inc/mod/pages.php:1630 ../../../../inc/mod/pages.php:1702 +#: ../../../../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 +#: ../../../../inc/mod/pages.php:1970 +msgid "PM inbox" +msgstr "Schránka SS" + +#: ../../../../inc/mod/pages.php:1679 ../../../../inc/mod/pages.php:1779 +#: ../../../../inc/mod/pages.php:1804 ../../../../inc/mod/pages.php:1938 +#: ../../../../inc/mod/pages.php:1953 ../../../../inc/mod/pages.php:2026 +#: ../../../../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 +#: ../../../../inc/mod/pages.php:2253 ../../../../inc/mod/pages.php:2347 +msgid "Config editor" +msgstr "Editor konfigurácie" + +#: ../../../../inc/mod/pages.php:1713 ../../../../inc/mod/pages.php:1945 +#: ../../../../inc/mod/pages.php:1970 ../../../../inc/mod/pages.php:2104 +#: ../../../../inc/mod/pages.php:2119 ../../../../inc/mod/pages.php:2192 +#: ../../../../inc/mod/pages.php:2249 ../../../../inc/mod/pages.php:2371 +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2529 +msgid "Debug: Anti-spam" +msgstr "Debug: Antispam" + +#: ../../../../inc/mod/pages.php:1801 ../../../../inc/mod/pages.php:1867 +#: ../../../../inc/mod/pages.php:1892 ../../../../inc/mod/pages.php:2026 +#: ../../../../inc/mod/pages.php:2041 ../../../../inc/mod/pages.php:2114 +#: ../../../../inc/mod/pages.php:2171 ../../../../inc/mod/pages.php:2293 +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2450 +#, php-format +msgid "Installed theme: %s" +msgstr "Téma %s bola nainštalovaná" + +#: ../../../../inc/mod/pages.php:1811 ../../../../inc/mod/pages.php:1878 +#: ../../../../inc/mod/pages.php:1903 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:2052 ../../../../inc/mod/pages.php:2125 +#: ../../../../inc/mod/pages.php:2182 ../../../../inc/mod/pages.php:2304 +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2461 +#, php-format +msgid "Configuring theme: %s" +msgstr "Konfigurovanie témy: %s" + +#: ../../../../inc/mod/pages.php:1839 ../../../../inc/mod/pages.php:1906 +#: ../../../../inc/mod/pages.php:1931 ../../../../inc/mod/pages.php:2065 +#: ../../../../inc/mod/pages.php:2080 ../../../../inc/mod/pages.php:2153 +#: ../../../../inc/mod/pages.php:2210 ../../../../inc/mod/pages.php:2332 +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2490 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "Prestavaná téma: %s" + +#: ../../../../inc/lib/gettext/examples/pigs_dropin.php:77 +msgid "" +"This is how the story goes.\n" +"\n" +msgstr "" +"Takto ide príbeh.\n" +"\n" + +#: ../../../../inc/mod/pages.php:1969 ../../../../inc/mod/pages.php:1994 +#: ../../../../inc/mod/pages.php:2128 ../../../../inc/mod/pages.php:2143 +#: ../../../../inc/mod/pages.php:2216 ../../../../inc/mod/pages.php:2273 +#: ../../../../inc/mod/pages.php:2395 ../../../../inc/mod/pages.php:2409 +#: ../../../../inc/mod/pages.php:2566 ../../../../inc/mod/pages.php:2563 +msgid "Debug: Recent posts" +msgstr "Debug: Posledné príspevky" + +#: ../../../../inc/mod/pages.php:1993 ../../../../inc/mod/pages.php:2018 +#: ../../../../inc/mod/pages.php:2152 ../../../../inc/mod/pages.php:2167 +#: ../../../../inc/mod/pages.php:2240 ../../../../inc/mod/pages.php:2297 +#: ../../../../inc/mod/pages.php:2419 ../../../../inc/mod/pages.php:2433 +#: ../../../../inc/mod/pages.php:2590 ../../../../inc/mod/pages.php:2587 +msgid "Debug: SQL" +msgstr "Debug: SQL" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:104 +#: ../../../../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 odpoveď" +msgstr[1] "%count% odpovede" +msgstr[2] "%count% odpovedí" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:290 ../../../../inc/mod/pages.php:335 +#: ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "Výsledky vyhľadávania" + +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:31 +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:35 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "Príspevky" + +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:41 +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:46 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "Poznámky k IP adrese" + +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:53 +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:59 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "Bany" + +#. line 18 +#: ../../../../templates/cache/55/dd/8ffe738533bd12359200e5745905.php:76 +#: ../../../../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 "" +"(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.)" + +#. line 8 +#: ../../../../templates/cache/c3/de/6ff26042c5b94cc80055e6f209d2.php:32 +msgid "Select board" +msgstr "Wybierz board" + +#. line 17 +#: ../../../../templates/cache/c3/de/6ff26042c5b94cc80055e6f209d2.php:61 +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 "" +"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, subject a name. Pre použitie " +"filtra jednoducho pridaj do svojej požiadavky napríklad: name:Anonymous 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 , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: Tinyboard JS Çevirisi" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-20 20:19+0100\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: Tunay Uyar tunayuyar39@gmail.com" +"Language-Team: Türkçe" +"Language: TR" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8" +"Content-Transfer-Encoding: 8bit\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Stil: " + +#: ../../../../js/hide-images.js:50 ../../../../js/upload-selection.js:51 +#: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:51 +#: ../../../../js/quick-post-controls.js:32 +#: ../../../../js/upload-selection.js:61 +msgid "File" +msgstr "Dosya" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "gizle" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +msgid "show" +msgstr "göster" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Show locked threads" +msgstr "Kilitli konuları göster" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Hide locked threads" +msgstr "Gizli konuları kilitle" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +msgid "Select" +msgstr "Seç" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +msgid "Remote" +msgstr "Uzak" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +msgid "Embed" +msgstr "Göm" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +msgid "hidden" +msgstr "gizli" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Show images" +msgstr "Resimleri göster" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Hide images" +msgstr "Resimleri gizle" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Şifre" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Sadece dosyayı sil" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Sil" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 +msgid "Reason" +msgstr "Sebep" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Şikayet et" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Görmek için cevaplaya basın." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click to expand" +msgstr "Genişletmek için tıklayın" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +msgid "Hide expanded replies" +msgstr "Daralt" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Fırça büyüklüğü" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "Yazıyı ayarla" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Temizle" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Kayıt et" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Yükle" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Silgi" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Rengi seç" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Doldur" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Dosya yerine oekaki kullan" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "oekaki'de düzenle" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Bir yazı girin" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Font girin ya da boş bırakın" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60 +#: ../../../../js/forced-anon.js:66 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +#: ../../../../js/forced-anon.js:71 +msgid "Forced anonymity" +msgstr "Zorunlu anon" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +msgid "enabled" +msgstr "etkin" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 +msgid "disabled" +msgstr "etkin değil" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Sun" +msgstr "Paz" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Mon" +msgstr "Pzt" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Tue" +msgstr "Sa" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Wed" +msgstr "Çrş" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Thu" +msgstr "Per" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Fri" +msgstr "Cu" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +msgid "Sat" +msgstr "Cts" + +#: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 +#: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 +#: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 +msgid "Catalog" +msgstr "Katalog" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Gönder" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Çabuk cevap" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +#, python-brace-format +msgid "Posting mode: Replying to >>{0}" +msgstr "Gönderme modu: >>{0} cevap veriyorsunuz" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Geri dön" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +msgid "Expand all images" +msgstr "Bütün resimleri genişlet" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Merhaba!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} kullanıcı" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +msgid "(hide threads from this board)" +msgstr "(bu tahtadan konuları gizle)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +msgid "(show threads from this board)" +msgstr "(bu tahtadan konuları göster)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +msgid "No more threads to display" +msgstr "Gösterecek başka konu kalmadı" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +msgid "Loading..." +msgstr "Yükleniyor..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Dosya adıyla kaydet" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "Şikayet edilen konu/konular." + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "FATAL ÖRÖR" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Bilemediğimiz çok fena şeyler oldu!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Yapıyoruz..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Gönderiliyor... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Gönderildi..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Hata... çok... fena... " + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Gönderiliyor..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +msgid "Upload URL" +msgstr "Yükleme linki" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +msgid "Spoiler Image" +msgstr "Spoiler" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +msgid "Comment" +msgstr "Yorum" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +msgid "Quick Reply" +msgstr "Çabuk Cevaplama" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Stop watching this thread" +msgstr "Bu konuyu takip etmeyi bırak" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +msgid "Watch this thread" +msgstr "Bu konuyu takip et" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Unpin this board" +msgstr "Bu tahtanın iğnesini kaldır" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Pin this board" +msgstr "Bu tahtayı iğnele" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Stop watching this board" +msgstr "Bu tahtayı izlemeyi bırak" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Watch this board" +msgstr "Bu tahtayı izle" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Oekaki'ye atmak için website üzerindeki herhangi bir resme tıklayın" diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..c38ac97d Binary files /dev/null and b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..eff567de --- /dev/null +++ b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po @@ -0,0 +1,1844 @@ +# 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 , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: Tinyboard Türkçe Çeviri\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-02-20 20:19+0100\n" +"PO-Revision-Date: 2014-02-20 22:38+0200\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Tunay Uyar \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Poedit 1.6.4\n" +"Language: tr_TR\n" + +#: ../../../../inc/lib/gettext/examples/pigs_dropin.php:77 +msgid "" +"This is how the story goes.\n" +"\n" +msgstr "" +"Şimdi hikaye şöyle başlıyor.\n" +"\n" + +#: ../../../../inc/functions.php:583 ../../../../inc/functions.php:600 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +msgid "second" +msgid_plural "seconds" +msgstr[0] "saniye" +msgstr[1] "saniye" + +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "dakika" +msgstr[1] "dakika" + +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +msgid "hour" +msgid_plural "hours" +msgstr[0] "saat" +msgstr[1] "saat" + +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +msgid "day" +msgid_plural "days" +msgstr[0] "gün" +msgstr[1] "gün" + +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +msgid "week" +msgid_plural "weeks" +msgstr[0] "hafta" +msgstr[1] "hafta" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +msgid "year" +msgid_plural "years" +msgstr[0] "yıl" +msgstr[1] "yıl" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +msgid "Banned!" +msgstr "Ban!" + +#. There is no previous page. +#: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139 +#: ../../../../inc/functions.php:1165 ../../../../inc/functions.php:1179 +#: ../../../../inc/functions.php:1168 ../../../../inc/functions.php:1182 +msgid "Previous" +msgstr "Geri" + +#. There is no next page. +#: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153 +#: ../../../../inc/functions.php:1184 ../../../../inc/functions.php:1193 +#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 +msgid "Next" +msgstr "İleri" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 +msgid "Error" +msgstr "Hata" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 +msgid "An error has occured." +msgstr "Bi hata oluştu." + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 +msgid "Login" +msgstr "Giriş" + +#: ../../../../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 "Gönderi çok uzun. Görmek için lütfen tıklayın." + +#: ../../../../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 "Ban" + +#: ../../../../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 "Banla & Sil" + +#: ../../../../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 "Dosyayı sil" + +#: ../../../../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 "Bu dosyayı silmek istediğinizden emin misiniz?" + +#: ../../../../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 "Spoiler" + +#: ../../../../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 "Spoiler eklemek istediğinizden emin misiniz?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 +msgid "Move reply to another board" +msgstr "Cevabı başka tahtaya taşı" + +#: ../../../../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 "Girdiyi düzenle" + +#. line 5 +#: ../../../../inc/display.php:461 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 +#: ../../../../inc/display.php:483 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 +#: ../../../../inc/display.php:486 +msgid "Delete" +msgstr "Sil" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 +msgid "Are you sure you want to delete this?" +msgstr "Silmek istediğinizden emin misiniz?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 +msgid "Delete all posts by IP" +msgstr "Bu IP'den gönderilen her şeyi sil" + +#: ../../../../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 "Bu IP'den gönderilen her şeyi silmek istediğinizden emin misiniz?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 +msgid "Delete all posts by IP across all boards" +msgstr "Bu IP'nin bütün tahtalardaki gönderilerini sil" + +#: ../../../../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 "Bu IP'nin bütün tahtalardaki girdilerini silmek istediğinizden emin misiniz?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 +msgid "Make thread not sticky" +msgstr "Konuyu yapışmayan yap" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 +msgid "Make thread sticky" +msgstr "Konuyu yapışkan yap" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 +msgid "Allow thread to be bumped" +msgstr "Konunun yukarı gitmesine izin ver." + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 +msgid "Prevent thread from being bumped" +msgstr "Konunun yukarı gitmesini engelle" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 +msgid "Unlock thread" +msgstr "Konunun kilidini aç" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 +msgid "Lock thread" +msgstr "Konuyu kilitle" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 +msgid "Move thread to another board" +msgstr "Konuyu başka bir tahtaya taşı" + +#. 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:346 ../../../../inc/config.php:473 +msgid "You have been muted for unoriginal content." +msgstr "Özgün içerik koymamaktan susturuldunuz." + +#. The names on the post buttons. (On most imageboards, these are both just "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 +msgid "New Topic" +msgstr "Yeni Konu" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 +msgid "New Reply" +msgstr "Cevapla" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 +msgid "All trademarks, copyrights, comments, and images on this page are owned by and are the responsibility of their respective parties." +msgstr "Bütün hakları saklıdır." + +#. +#. * ==================== +#. * Error messages +#. * ==================== +#. +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Katılmadan önce biraz daha dolaşın bakalım." + +#. +#. * ==================== +#. * Error messages +#. * ==================== +#. +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 +msgid "You look like a bot." +msgstr "Bot gibi duruyorsunuz burdan." + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "Tarayıcınız geçersiz bir HTTP referansı yolladı." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 +#, php-format +msgid "The %s field was too long." +msgstr "%s çok uzun." + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 +msgid "The body was too long." +msgstr "İçerik çok uzun." + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 +msgid "The body was too short or empty." +msgstr "İçerik çok kısa ya da bış" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 +msgid "You must upload an image." +msgstr "Bir resim yüklemelisiniz." + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 +msgid "The server failed to handle your upload." +msgstr "Sunucumuz yüklemenizi kaldıramadı." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 +msgid "Unsupported image format." +msgstr "Desteklenmeyen resim formatı." + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 +msgid "Invalid board!" +msgstr "Geçersiz tahta!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 +msgid "Thread specified does not exist." +msgstr "Böyle bir konu yok." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 +msgid "Thread locked. You may not reply at this time." +msgstr "Konu kilitlendi. Şu an cevaplayamassınız." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 +msgid "Thread has reached its maximum reply limit." +msgstr "Konu azami cevap sayısına ulaştı." + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 +msgid "Thread has reached its maximum image limit." +msgstr "Konu azami resim limitine ulaştı." + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 +msgid "You didn't make a post." +msgstr "Bi'şey yapmadınız." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 +msgid "Flood detected; Post discarded." +msgstr "Floodcu pezevenk." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 +msgid "Your request looks automated; Post discarded." +msgstr "Robot gibi görünüyorsunuz." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 +msgid "Unoriginal content!" +msgstr "Özgün olmayan içerik!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Özgün olmayan içerik! %d saniye susturuldunuz." + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "Susturuldunuz! %d saniyeye geçer." + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "IP adresiniz %s listesinde." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 +msgid "Too many links; flood detected." +msgstr "Çok fazla link var, flood gibi." + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 +msgid "Too many cites; post discarded." +msgstr "Çok fazla alıntı var." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 +msgid "Too many cross-board links; post discarded." +msgstr "Çok fazla çapraz tahta linki." + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 +msgid "You didn't select anything to delete." +msgstr "Silmek için bir şey seçmediniz." + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 +msgid "You didn't select anything to report." +msgstr "Şikayet edecek bir şey seçmediniz." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 +msgid "You can't report that many posts at once." +msgstr "Bu kadar çok girdiyi bir kerede şikayet edemezsiniz." + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 +msgid "Wrong password…" +msgstr "Yanlış şifre..." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 +msgid "Invalid image." +msgstr "Geçersiz resim." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 +msgid "Unknown file extension." +msgstr "Bilinmeyen dosya uzantısı." + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 +msgid "Maximum file size: %maxsz% bytes
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" . strtolower($country_code) . "" . - "\n" . @geoip_country_name_by_name($_SERVER['REMOTE_ADDR']) . ""; + $post['body'] .= "\n".strtolower($country_code)."". + "\n".geoip\geoip_country_name_by_addr_v6($gi, ipv4to6($_SERVER['REMOTE_ADDR'])).""; } } diff --git a/static/blank.gif b/static/blank.gif new file mode 100644 index 00000000..f55d4541 Binary files /dev/null and b/static/blank.gif differ diff --git a/static/flags/a1.png b/static/flags/a1.png new file mode 100755 index 00000000..da6e1bbe Binary files /dev/null and b/static/flags/a1.png differ diff --git a/static/flags/a2.png b/static/flags/a2.png new file mode 100755 index 00000000..da6e1bbe Binary files /dev/null and b/static/flags/a2.png differ diff --git a/static/flags/ac.png b/static/flags/ac.png new file mode 100755 index 00000000..405e897c Binary files /dev/null and b/static/flags/ac.png differ diff --git a/static/flags/ap.png b/static/flags/ap.png new file mode 100755 index 00000000..da6e1bbe Binary files /dev/null and b/static/flags/ap.png differ diff --git a/static/flags/aq.png b/static/flags/aq.png new file mode 100755 index 00000000..217eaba3 Binary files /dev/null and b/static/flags/aq.png differ diff --git a/static/flags/bl.png b/static/flags/bl.png new file mode 100755 index 00000000..744ede39 Binary files /dev/null and b/static/flags/bl.png differ diff --git a/static/flags/bq.png b/static/flags/bq.png new file mode 100755 index 00000000..77f75f6f Binary files /dev/null and b/static/flags/bq.png differ diff --git a/static/flags/bu.png b/static/flags/bu.png new file mode 100755 index 00000000..d931b1db Binary files /dev/null and b/static/flags/bu.png differ diff --git a/static/flags/cat.png b/static/flags/cat.png new file mode 100755 index 00000000..58faea35 Binary files /dev/null and b/static/flags/cat.png differ diff --git a/static/flags/cp.png b/static/flags/cp.png new file mode 100755 index 00000000..744ede39 Binary files /dev/null and b/static/flags/cp.png differ diff --git a/static/flags/cw.png b/static/flags/cw.png new file mode 100755 index 00000000..a6d5f283 Binary files /dev/null and b/static/flags/cw.png differ diff --git a/static/flags/dg.png b/static/flags/dg.png new file mode 100755 index 00000000..3e74b6a3 Binary files /dev/null and b/static/flags/dg.png differ diff --git a/static/flags/ea.png b/static/flags/ea.png new file mode 100755 index 00000000..cfd22a44 Binary files /dev/null and b/static/flags/ea.png differ diff --git a/static/flags/eu.png b/static/flags/eu.png new file mode 100755 index 00000000..8f5a3eb3 Binary files /dev/null and b/static/flags/eu.png differ diff --git a/static/flags/flags.css b/static/flags/flags.css new file mode 100644 index 00000000..c9090c6e --- /dev/null +++ b/static/flags/flags.css @@ -0,0 +1,257 @@ +.flag { + width: 16px; + height: 11px; + background:url(flags.png) no-repeat +} + +.flag.flag-ad {background-position: -16px 0} +.flag.flag-ae {background-position: -32px 0} +.flag.flag-af {background-position: -48px 0} +.flag.flag-ag {background-position: -64px 0} +.flag.flag-ai {background-position: -80px 0} +.flag.flag-al {background-position: -96px 0} +.flag.flag-am {background-position: -112px 0} +.flag.flag-an {background-position: -128px 0} +.flag.flag-ao {background-position: -144px 0} +.flag.flag-ar {background-position: -160px 0} +.flag.flag-as {background-position: -176px 0} +.flag.flag-at {background-position: -192px 0} +.flag.flag-au {background-position: -208px 0} +.flag.flag-aw {background-position: -224px 0} +.flag.flag-az {background-position: -240px 0} +.flag.flag-ba {background-position: 0 -11px} +.flag.flag-bb {background-position: -16px -11px} +.flag.flag-bd {background-position: -32px -11px} +.flag.flag-be {background-position: -48px -11px} +.flag.flag-bf {background-position: -64px -11px} +.flag.flag-bg {background-position: -80px -11px} +.flag.flag-bh {background-position: -96px -11px} +.flag.flag-bi {background-position: -112px -11px} +.flag.flag-bj {background-position: -128px -11px} +.flag.flag-bm {background-position: -144px -11px} +.flag.flag-bn {background-position: -160px -11px} +.flag.flag-bo {background-position: -176px -11px} +.flag.flag-br {background-position: -192px -11px} +.flag.flag-bs {background-position: -208px -11px} +.flag.flag-bt {background-position: -224px -11px} +.flag.flag-bv {background-position: -240px -11px} +.flag.flag-bw {background-position: 0 -22px} +.flag.flag-by {background-position: -16px -22px} +.flag.flag-bz {background-position: -32px -22px} +.flag.flag-ca {background-position: -48px -22px} +.flag.flag-catalonia {background-position: -64px -22px} +.flag.flag-cd {background-position: -80px -22px} +.flag.flag-cf {background-position: -96px -22px} +.flag.flag-cg {background-position: -112px -22px} +.flag.flag-ch {background-position: -128px -22px} +.flag.flag-ci {background-position: -144px -22px} +.flag.flag-ck {background-position: -160px -22px} +.flag.flag-cl {background-position: -176px -22px} +.flag.flag-cm {background-position: -192px -22px} +.flag.flag-cn {background-position: -208px -22px} +.flag.flag-co {background-position: -224px -22px} +.flag.flag-cr {background-position: -240px -22px} +.flag.flag-cu {background-position: 0 -33px} +.flag.flag-cv {background-position: -16px -33px} +.flag.flag-cw {background-position: -32px -33px} +.flag.flag-cy {background-position: -48px -33px} +.flag.flag-cz {background-position: -64px -33px} +.flag.flag-de {background-position: -80px -33px} +.flag.flag-dj {background-position: -96px -33px} +.flag.flag-dk {background-position: -112px -33px} +.flag.flag-dm {background-position: -128px -33px} +.flag.flag-do {background-position: -144px -33px} +.flag.flag-dz {background-position: -160px -33px} +.flag.flag-ec {background-position: -176px -33px} +.flag.flag-ee {background-position: -192px -33px} +.flag.flag-eg {background-position: -208px -33px} +.flag.flag-eh {background-position: -224px -33px} +.flag.flag-england {background-position: -240px -33px} +.flag.flag-er {background-position: 0 -44px} +.flag.flag-es {background-position: -16px -44px} +.flag.flag-et {background-position: -32px -44px} +.flag.flag-eu {background-position: -48px -44px} +.flag.flag-fi {background-position: -64px -44px} +.flag.flag-fj {background-position: -80px -44px} +.flag.flag-fk {background-position: -96px -44px} +.flag.flag-fm {background-position: -112px -44px} +.flag.flag-fo {background-position: -128px -44px} +.flag.flag-fr {background-position: -144px -44px} +.flag.flag-ga {background-position: -160px -44px} +.flag.flag-gb {background-position: -176px -44px} +.flag.flag-gd {background-position: -192px -44px} +.flag.flag-ge {background-position: -208px -44px} +.flag.flag-gf {background-position: -224px -44px} +.flag.flag-gg {background-position: -240px -44px} +.flag.flag-gh {background-position: 0 -55px} +.flag.flag-gi {background-position: -16px -55px} +.flag.flag-gl {background-position: -32px -55px} +.flag.flag-gm {background-position: -48px -55px} +.flag.flag-gn {background-position: -64px -55px} +.flag.flag-gp {background-position: -80px -55px} +.flag.flag-gq {background-position: -96px -55px} +.flag.flag-gr {background-position: -112px -55px} +.flag.flag-gs {background-position: -128px -55px} +.flag.flag-gt {background-position: -144px -55px} +.flag.flag-gu {background-position: -160px -55px} +.flag.flag-gw {background-position: -176px -55px} +.flag.flag-gy {background-position: -192px -55px} +.flag.flag-hk {background-position: -208px -55px} +.flag.flag-hm {background-position: -224px -55px} +.flag.flag-hn {background-position: -240px -55px} +.flag.flag-hr {background-position: 0 -66px} +.flag.flag-ht {background-position: -16px -66px} +.flag.flag-hu {background-position: -32px -66px} +.flag.flag-ic {background-position: -48px -66px} +.flag.flag-id {background-position: -64px -66px} +.flag.flag-ie {background-position: -80px -66px} +.flag.flag-il {background-position: -96px -66px} +.flag.flag-im {background-position: -112px -66px} +.flag.flag-in {background-position: -128px -66px} +.flag.flag-io {background-position: -144px -66px} +.flag.flag-iq {background-position: -160px -66px} +.flag.flag-ir {background-position: -176px -66px} +.flag.flag-is {background-position: -192px -66px} +.flag.flag-it {background-position: -208px -66px} +.flag.flag-je {background-position: -224px -66px} +.flag.flag-jm {background-position: -240px -66px} +.flag.flag-jo {background-position: 0 -77px} +.flag.flag-jp {background-position: -16px -77px} +.flag.flag-ke {background-position: -32px -77px} +.flag.flag-kg {background-position: -48px -77px} +.flag.flag-kh {background-position: -64px -77px} +.flag.flag-ki {background-position: -80px -77px} +.flag.flag-km {background-position: -96px -77px} +.flag.flag-kn {background-position: -112px -77px} +.flag.flag-kp {background-position: -128px -77px} +.flag.flag-kr {background-position: -144px -77px} +.flag.flag-kurdistan {background-position: -160px -77px} +.flag.flag-kw {background-position: -176px -77px} +.flag.flag-ky {background-position: -192px -77px} +.flag.flag-kz {background-position: -208px -77px} +.flag.flag-la {background-position: -224px -77px} +.flag.flag-lb {background-position: -240px -77px} +.flag.flag-lc {background-position: 0 -88px} +.flag.flag-li {background-position: -16px -88px} +.flag.flag-lk {background-position: -32px -88px} +.flag.flag-lr {background-position: -48px -88px} +.flag.flag-ls {background-position: -64px -88px} +.flag.flag-lt {background-position: -80px -88px} +.flag.flag-lu {background-position: -96px -88px} +.flag.flag-lv {background-position: -112px -88px} +.flag.flag-ly {background-position: -128px -88px} +.flag.flag-ma {background-position: -144px -88px} +.flag.flag-mc {background-position: -160px -88px} +.flag.flag-md {background-position: -176px -88px} +.flag.flag-me {background-position: -192px -88px} +.flag.flag-mg {background-position: -208px -88px} +.flag.flag-mh {background-position: -224px -88px} +.flag.flag-mk {background-position: -240px -88px} +.flag.flag-ml {background-position: 0 -99px} +.flag.flag-mm {background-position: -16px -99px} +.flag.flag-mn {background-position: -32px -99px} +.flag.flag-mo {background-position: -48px -99px} +.flag.flag-mp {background-position: -64px -99px} +.flag.flag-mq {background-position: -80px -99px} +.flag.flag-mr {background-position: -96px -99px} +.flag.flag-ms {background-position: -112px -99px} +.flag.flag-mt {background-position: -128px -99px} +.flag.flag-mu {background-position: -144px -99px} +.flag.flag-mv {background-position: -160px -99px} +.flag.flag-mw {background-position: -176px -99px} +.flag.flag-mx {background-position: -192px -99px} +.flag.flag-my {background-position: -208px -99px} +.flag.flag-mz {background-position: -224px -99px} +.flag.flag-na {background-position: -240px -99px} +.flag.flag-nc {background-position: 0 -110px} +.flag.flag-ne {background-position: -16px -110px} +.flag.flag-nf {background-position: -32px -110px} +.flag.flag-ng {background-position: -48px -110px} +.flag.flag-ni {background-position: -64px -110px} +.flag.flag-nl {background-position: -80px -110px} +.flag.flag-no {background-position: -96px -110px} +.flag.flag-np {background-position: -112px -110px} +.flag.flag-nr {background-position: -128px -110px} +.flag.flag-nu {background-position: -144px -110px} +.flag.flag-nz {background-position: -160px -110px} +.flag.flag-om {background-position: -176px -110px} +.flag.flag-pa {background-position: -192px -110px} +.flag.flag-pe {background-position: -208px -110px} +.flag.flag-pf {background-position: -224px -110px} +.flag.flag-pg {background-position: -240px -110px} +.flag.flag-ph {background-position: 0 -121px} +.flag.flag-pk {background-position: -16px -121px} +.flag.flag-pl {background-position: -32px -121px} +.flag.flag-pm {background-position: -48px -121px} +.flag.flag-pn {background-position: -64px -121px} +.flag.flag-pr {background-position: -80px -121px} +.flag.flag-ps {background-position: -96px -121px} +.flag.flag-pt {background-position: -112px -121px} +.flag.flag-pw {background-position: -128px -121px} +.flag.flag-py {background-position: -144px -121px} +.flag.flag-qa {background-position: -160px -121px} +.flag.flag-re {background-position: -176px -121px} +.flag.flag-ro {background-position: -192px -121px} +.flag.flag-rs {background-position: -208px -121px} +.flag.flag-ru {background-position: -224px -121px} +.flag.flag-rw {background-position: -240px -121px} +.flag.flag-sa {background-position: 0 -132px} +.flag.flag-sb {background-position: -16px -132px} +.flag.flag-sc {background-position: -32px -132px} +.flag.flag-scotland {background-position: -48px -132px} +.flag.flag-sd {background-position: -64px -132px} +.flag.flag-se {background-position: -80px -132px} +.flag.flag-sg {background-position: -96px -132px} +.flag.flag-sh {background-position: -112px -132px} +.flag.flag-si {background-position: -128px -132px} +.flag.flag-sk {background-position: -144px -132px} +.flag.flag-sl {background-position: -160px -132px} +.flag.flag-sm {background-position: -176px -132px} +.flag.flag-sn {background-position: -192px -132px} +.flag.flag-so {background-position: -208px -132px} +.flag.flag-somaliland {background-position: -224px -132px} +.flag.flag-sr {background-position: -240px -132px} +.flag.flag-ss {background-position: 0 -143px} +.flag.flag-st {background-position: -16px -143px} +.flag.flag-sv {background-position: -32px -143px} +.flag.flag-sx {background-position: -48px -143px} +.flag.flag-sy {background-position: -64px -143px} +.flag.flag-sz {background-position: -80px -143px} +.flag.flag-tc {background-position: -96px -143px} +.flag.flag-td {background-position: -112px -143px} +.flag.flag-tf {background-position: -128px -143px} +.flag.flag-tg {background-position: -144px -143px} +.flag.flag-th {background-position: -160px -143px} +.flag.flag-tj {background-position: -176px -143px} +.flag.flag-tk {background-position: -192px -143px} +.flag.flag-tl {background-position: -208px -143px} +.flag.flag-tm {background-position: -224px -143px} +.flag.flag-tn {background-position: -240px -143px} +.flag.flag-to {background-position: 0 -154px} +.flag.flag-tr {background-position: -16px -154px} +.flag.flag-tt {background-position: -32px -154px} +.flag.flag-tv {background-position: -48px -154px} +.flag.flag-tw {background-position: -64px -154px} +.flag.flag-tz {background-position: -80px -154px} +.flag.flag-ua {background-position: -96px -154px} +.flag.flag-ug {background-position: -112px -154px} +.flag.flag-um {background-position: -128px -154px} +.flag.flag-us {background-position: -144px -154px} +.flag.flag-uy {background-position: -160px -154px} +.flag.flag-uz {background-position: -176px -154px} +.flag.flag-va {background-position: -192px -154px} +.flag.flag-vc {background-position: -208px -154px} +.flag.flag-ve {background-position: -224px -154px} +.flag.flag-vg {background-position: -240px -154px} +.flag.flag-vi {background-position: 0 -165px} +.flag.flag-vn {background-position: -16px -165px} +.flag.flag-vu {background-position: -32px -165px} +.flag.flag-wales {background-position: -48px -165px} +.flag.flag-wf {background-position: -64px -165px} +.flag.flag-ws {background-position: -80px -165px} +.flag.flag-ye {background-position: -96px -165px} +.flag.flag-yt {background-position: -112px -165px} +.flag.flag-za {background-position: -128px -165px} +.flag.flag-zanzibar {background-position: -144px -165px} +.flag.flag-zm {background-position: -160px -165px} +.flag.flag-zw {background-position: -176px -165px} diff --git a/static/flags/flags.png b/static/flags/flags.png new file mode 100644 index 00000000..7b3a3808 Binary files /dev/null and b/static/flags/flags.png differ diff --git a/static/flags/fx.png b/static/flags/fx.png new file mode 100755 index 00000000..744ede39 Binary files /dev/null and b/static/flags/fx.png differ diff --git a/static/flags/gf.png b/static/flags/gf.png new file mode 100755 index 00000000..744ede39 Binary files /dev/null and b/static/flags/gf.png differ diff --git a/static/flags/gg.png b/static/flags/gg.png new file mode 100755 index 00000000..47914119 Binary files /dev/null and b/static/flags/gg.png differ diff --git a/static/flags/hm.png b/static/flags/hm.png new file mode 100755 index 00000000..709eac00 Binary files /dev/null and b/static/flags/hm.png differ diff --git a/static/flags/ic.png b/static/flags/ic.png new file mode 100755 index 00000000..3e48fe66 Binary files /dev/null and b/static/flags/ic.png differ diff --git a/static/flags/im.png b/static/flags/im.png new file mode 100755 index 00000000..8df02545 Binary files /dev/null and b/static/flags/im.png differ diff --git a/static/flags/je.png b/static/flags/je.png new file mode 100755 index 00000000..76758f4c Binary files /dev/null and b/static/flags/je.png differ diff --git a/static/flags/me.png b/static/flags/me.png new file mode 100755 index 00000000..0a3ee99b Binary files /dev/null and b/static/flags/me.png differ diff --git a/static/flags/mf.png b/static/flags/mf.png new file mode 100755 index 00000000..744ede39 Binary files /dev/null and b/static/flags/mf.png differ diff --git a/static/flags/nt.png b/static/flags/nt.png new file mode 100755 index 00000000..b2539145 Binary files /dev/null and b/static/flags/nt.png differ diff --git a/static/flags/o1.png b/static/flags/o1.png new file mode 100755 index 00000000..da6e1bbe Binary files /dev/null and b/static/flags/o1.png differ diff --git a/static/flags/re.png b/static/flags/re.png new file mode 100755 index 00000000..744ede39 Binary files /dev/null and b/static/flags/re.png differ diff --git a/static/flags/rs.png b/static/flags/rs.png new file mode 100644 index 00000000..32f6cb94 Binary files /dev/null and b/static/flags/rs.png differ diff --git a/static/flags/sf.png b/static/flags/sf.png new file mode 100755 index 00000000..f3b1058c Binary files /dev/null and b/static/flags/sf.png differ diff --git a/static/flags/sj.png b/static/flags/sj.png new file mode 100755 index 00000000..74264c58 Binary files /dev/null and b/static/flags/sj.png differ diff --git a/static/flags/ss.png b/static/flags/ss.png new file mode 100755 index 00000000..84a52ca2 Binary files /dev/null and b/static/flags/ss.png differ diff --git a/static/flags/su.png b/static/flags/su.png new file mode 100755 index 00000000..3e1d87c9 Binary files /dev/null and b/static/flags/su.png differ diff --git a/static/flags/sx.png b/static/flags/sx.png new file mode 100755 index 00000000..229d4014 Binary files /dev/null and b/static/flags/sx.png differ diff --git a/static/flags/ta.png b/static/flags/ta.png new file mode 100755 index 00000000..b0eaef6d Binary files /dev/null and b/static/flags/ta.png differ diff --git a/static/flags/ti.png b/static/flags/ti.png new file mode 100755 index 00000000..02531206 Binary files /dev/null and b/static/flags/ti.png differ diff --git a/static/flags/tp.png b/static/flags/tp.png new file mode 100755 index 00000000..0fa1b597 Binary files /dev/null and b/static/flags/tp.png differ diff --git a/static/flags/uk.png b/static/flags/uk.png new file mode 100755 index 00000000..405e897c Binary files /dev/null and b/static/flags/uk.png differ diff --git a/static/flags/xx.png b/static/flags/xx.png new file mode 100755 index 00000000..da6e1bbe Binary files /dev/null and b/static/flags/xx.png differ diff --git a/static/flags/yu.png b/static/flags/yu.png new file mode 100755 index 00000000..0e0fb6de Binary files /dev/null and b/static/flags/yu.png differ diff --git a/static/flags/zr.png b/static/flags/zr.png new file mode 100755 index 00000000..0811ccce Binary files /dev/null and b/static/flags/zr.png differ diff --git a/stylesheets/caffe.css b/stylesheets/caffe.css new file mode 100644 index 00000000..7d6531c2 --- /dev/null +++ b/stylesheets/caffe.css @@ -0,0 +1,378 @@ +/*Caffe style*/ + + +.floatiframe{ +float:left; +padding:10px; +} + + +div.boardlist { + color: #261712; + font-size: 12pt; + margin-top: 0px; + background-color: #261712; + border: 1px solid #39241d; + margin-top: 0; + padding: 0px; + position: fixed; + top: 0; +} +div.boardlist.bottom { + margin-top: 20px; + position: inherit; + background:inherit; +} + + + +.return1 a{ +float:left; +font-size: inherit; + +} + +div.blotter { + background: none repeat scroll 0 0 rgba(88, 53, 41, 0.1); + border: 1px solid #39241d; + border-radius: 5px 5px 5px 5px; + clear: both; + color: #8f6658; + font-weight: bold; + margin-bottom: 0.5em; + padding: 2px; + text-align: center; +} + + + +div.title { + margin-bottom: 0px; + clear: both; + color: #39241d; + font-size: 2em; + font-weight: bold; + +} + +div.ban h2 { + border-radius: 6px 6px 6px 6px; + background: none repeat scroll 0 0 #261712; + color: #8f6658; +} + +div.ban { + background: none repeat scroll 0 0 #261712; + border: 1px solid #8f6658; + margin: 30px auto; + max-width: 700px; + border-radius: 7px; + +} + +form { + margin-bottom: 0px; +} + + +form { + margin-bottom: 0px; +} + +span.heading { + color: #FFAB3F; + display: block; + font-size: 12pt; + font-weight: bold; +} + +textarea#body{ + height: 136px; + width: 518px; +} + + + +html, body { + background:#261712 url('img/caffe_bg.png') repeat fixed center; + color: #8e6152; + font-family: "Trebuchet MS",Trebuchet,serif; + font-size: 12pt; + text-shadow: 0 0 0.9em #000000; +} +a { + color: #755144; +} +a:hover { + color: #a47a6b; +} +.adminbar { + clear:both; + float:right; + font-size: .8em; +} +.desktop-style div.boardlist:nth-child(1):hover{ +background-color: #261712; +} + +.adminbar a { + font-weight: bold; +} +.logo { + clear:both; + text-align:left; + font-size:2em; + font-weight: bold; + color:#a47a6b; + /*width:100%;*/ +} +.theader, .passvalid { + + text-align:center; + padding:2px; + color:#39241d; + clear: both; + font-weight: bold; + margin-bottom: .5em; + border: solid 1px #a47a6b; + -moz-border-radius: 5px; + border-radius: 5px; +} +.postarea { +} +.rules { + font-size:0.7em; +} +.postblock { + background:transparent; + color:#a47a6b; + font-weight:bold; +} +.footer { + text-align:center; + font-size:12px; + font-family:serif; + margin: 2em 0 0 0; +} +.dellist { + font-weight: bold; + text-align:center; +} +.delbuttons { + text-align:center; + padding-bottom:4px; +} +.managehead { + background:#8f6658; + color:#39241d; + padding:0px; +} +.postlists { + background:#8f6658; + width:100%; + padding:0px; + color:#a47a6b; +} +.row1 { + background:#8f6658; + color:#8f6658; +} +.row2 { + background:#8f6658; + color:#8f6658; +} +.unkfunc { + background:inherit; + color:#8e6152; +} +.reflink { + font-size: .8em; + font-weight: bold; +} +.filesize { + text-decoration:none; + color: #8e6152; + font-size: .8em; +} +.filetitle { + background:inherit; + font-size:1.2em; + color:#8f6658; + font-weight:bold; +} +.postername { + color:#8f6658; + font-weight:bold; +} +.postertrip { + color:#FF3300; +} +.oldpost { + color:#8f6658; + font-weight:bold; +} +.omittedposts { + color:#a47a6b; +} +.reply { + + background:#a47a6b url('img/caffe_reply.png') repeat center; + border: solid 1px #a47a6b; + padding: 0; + margin: 0; + -moz-border-radius: 5px; + border-radius: 5px; +} +blockquote { + margin: .5em .5em .5em 1em; +} +blockquote p { + margin: 0; + padding: 0; +} +.reply blockquote { + margin: .5em; +} +.doubledash { + display: none; + vertical-align:top; + clear:both; + float:left; +} +.replytitle { + font-size: 1.2em; + color:#002244; + font-weight:bold; +} +.commentpostername { + color:#8f6658; + font-weight:800; +} +.thumbnailmsg { + font-size: .8em; + color:#8e6152; +} +hr { + border-style: solid none none none; + border-width: 1px; + border-color: #8f6658; +} +table { + border-style: none; +} +table td { + border-style: none; +} +.nothumb { + background-color: #8e6152; + border-style: dotted; + margin: .3em .5em; +} + +.abbrev { + color:#8e6152; +} +.highlight { + background:#261712; + color:#8e6152; + border: 2px dashed #EE6600; +} + + +div.banner, div.banner a { + color: inherit; +} +div.banner { + background-color: inherit; +} +form table tr th { + background: none; +} + +div.post.reply { + background:#922a01 url('img/caffe_reply2.png') repeat fixed center; + color: #8e6152; + border: 1px solid rgba(88, 53, 41, 0.6); + border-radius: 5px 5px 5px 5px; +} +div.title,h1 { + color: #8e6152; + font-size: 32px; + font-weight: bold; +} +div.title p { + font-size: 26px; + margin: 0; +} + +h1 { + letter-spacing: inherit; +} + +.pages { + background: rgba(88, 53, 41, 0.32) !important; + width:100%; + color: #8e6152 !important; +} + +div.banner { + background: none repeat scroll 0 0 #251611; + border: 1px solid #2c1b16; + clear: both; + color: #8e6152; + font-weight: bold; + margin-bottom: 0.5em; + padding: 2px; + text-align: center; +} + +form table tr td div { + padding-left: 0px; + +} +.recaptchatable .recaptcha_image_cell { + padding: 0px !important; +} + +div.post.reply.highlighted { +background: rgba(88, 53, 41, 0.3); +} +#quick-reply table { +border-collapse: collapse; +background:#000 url('img/caffe_reply2.png') repeat fixed center; +border-style: solid; +border-width: 1px; +border-color: rgba(88, 53, 41, 0.6); +margin: 0; +width: 100%; +} +#attention_bar:hover { +background-color: rgba(88, 53, 41, 0.3); +} +p.intro a.email span.name { +color: #8e6152; +} +a.post_no:hover { +color: #755144; +} +div.post.reply div.body a { +color: #755144; +} +#quick-reply table { +border-collapse: collapse; +background:#000 url('img/caffe_reply2.png') repeat fixed center; +} +a, a:visited { +text-decoration: underline; +color: #755144; +} +.cb-menuitem span { +padding: 5px; +display: table-cell; +text-align: left; +border-top: 1px solid rgba(0, 0, 0, 1); +} +div.boardlist { +color: rgba(0, 0, 0, 1); +font-size: 9pt; +} diff --git a/stylesheets/img/caffe_bg.png b/stylesheets/img/caffe_bg.png new file mode 100644 index 00000000..c7720ba9 Binary files /dev/null and b/stylesheets/img/caffe_bg.png differ diff --git a/stylesheets/img/caffe_reply.png b/stylesheets/img/caffe_reply.png new file mode 100644 index 00000000..04821cca Binary files /dev/null and b/stylesheets/img/caffe_reply.png differ diff --git a/stylesheets/img/caffe_reply2.png b/stylesheets/img/caffe_reply2.png new file mode 100644 index 00000000..037e61c5 Binary files /dev/null and b/stylesheets/img/caffe_reply2.png differ diff --git a/stylesheets/img/rugby_background.jpg b/stylesheets/img/rugby_background.jpg new file mode 100644 index 00000000..b1a248c4 Binary files /dev/null and b/stylesheets/img/rugby_background.jpg differ diff --git a/stylesheets/img/rugby_background2.jpg b/stylesheets/img/rugby_background2.jpg new file mode 100644 index 00000000..4aa67884 Binary files /dev/null and b/stylesheets/img/rugby_background2.jpg differ diff --git a/stylesheets/img/rugby_rugbysta.png b/stylesheets/img/rugby_rugbysta.png new file mode 100644 index 00000000..a54215b6 Binary files /dev/null and b/stylesheets/img/rugby_rugbysta.png differ diff --git a/stylesheets/rugby.css b/stylesheets/rugby.css new file mode 100644 index 00000000..330c44ef --- /dev/null +++ b/stylesheets/rugby.css @@ -0,0 +1,48 @@ +/* rugby.css */ +body { + background: + url(img/rugby_rugbysta.png) no-repeat bottom right fixed, +url(img/rugby_background2.jpg) no-repeat center center fixed; +/* -moz-linear-gradient(top, #cfe7fa 0%, #6393c1 100%) fixed, + linear-gradient(to bottom, #cfe7fa 0%,#6393c1 100%) fixed; */ + background-size: auto, cover; +} + +.desktop-style div.boardlist:nth-child(1), div.post.reply, div.pages { +background: #ebf1f6; /* Old browsers */ + +background: -moz-linear-gradient(top, #ebf1f6 0%, #abd3ee 50%, #89c3eb 51%, #d5ebfb 100%); /* FF3.6+ */ + +background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebf1f6), color-stop(50%,#abd3ee), color-stop(51%,#89c3eb), color-stop(100%,#d5ebfb)); /* Chrome,Safari4+ */ + +background: -webkit-linear-gradient(top, #ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%); /* Chrome10+,Safari5.1+ */ + +background: -o-linear-gradient(top, #ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%); /* Opera 11.10+ */ + +background: -ms-linear-gradient(top, #ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%); /* IE10+ */ + +background: linear-gradient(to bottom, #ebf1f6 0%,#abd3ee 50%,#89c3eb 51%,#d5ebfb 100%); /* W3C */ + +filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebf1f6', endColorstr='#d5ebfb',GradientType=0 ); /* IE6-9 */ +border-bottom: 1px solid #e9af32; +} +div.post.reply, div.pages { +border-radius: 20px 20px; +border: 1px solid #e9af32; +} + +form table tr th { +background: #e9af32 !important; +} + +hr { +border-color: #e9af32; +} + +h1, header div.subtitle { +color: #ec3150; +} + +.desktop-style .sub { + background: none; +} diff --git a/templates/header.html b/templates/header.html index c4861d98..dd15eeb8 100644 --- a/templates/header.html +++ b/templates/header.html @@ -4,7 +4,8 @@ {% if config.meta_keywords %}{% endif %} {% if config.default_stylesheet.1 != '' %}{% endif %} - {% if config.font_awesome %}{% endif %} + {% if config.font_awesome %}{% endif %} + {% if config.country_flags_condensed %}{% endif %}