diff --git a/.gitignore b/.gitignore index a5190ed0..2739f37c 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,12 @@ Thumbs.db *~ ~*/ +# tmp filesystem +/tmp/cache/* +/tmp/locks/* +!/tmp/cache/.gitkeep +!/tmp/locks/.gitkeep + #vichan custom favicon.ico /static/spoiler.png diff --git a/LICENSE.md b/LICENSE.md index 942ac82a..23b680b6 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,5 +1,5 @@ # License of vichan -Copyright (c) 2012-2014 vichan-devel +Copyright (c) 2012-2015 vichan-devel Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index bc2d8072..c3383b32 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,15 @@ About vichan is a free light-weight, fast, highly configurable and user-friendly imageboard software package. It is written in PHP and has few dependencies. -vichan is a fork of [Tinyboard](http://tinyboard.org/), a great imageboard package, actively -building on it and adding a lot of features and other improvements. +vichan is a fork of (now defunc'd) [Tinyboard](http://github.com/savetheinternet/Tinyboard), +a great imageboard package, actively building on it and adding a lot of features and other +improvements. -Support and announcements: https://int.vichan.net/devel/ +Support and announcements: https://engine.vichan.net/ Requirements ------------ -1. PHP >= 5.3 +1. PHP >= 5.4 (we still try to keep compatibility with php 5.3 as much as possible) 2. MySQL/MariaDB server 3. [mbstring](http://www.php.net/manual/en/mbstring.installation.php) 4. [PHP GD](http://www.php.net/manual/en/intro.image.php) @@ -55,9 +56,20 @@ Please remember to change the administrator account password. See also: [Configuration Basics](http://tinyboard.org/docs/?p=Config). +Upgrade +------- +To upgrade from any version of Tinyboard or vichan: + +Either run ```git pull``` to update your files, if you used git, or +backup your ```inc/instance-config.php```, replace all your files in place +(don't remove boards etc.), then put ```inc/instance-config.php``` back and +finally run ```install.php```. + +To migrate from a Kusaba X board, use http://github.com/vichan-devel/Tinyboard-Migration + Support -------- -Tinyboard is still beta software -- there are bound to be bugs. If you find a +vichan is still beta software -- there are bound to be bugs. If you find a bug, please report it. If you need assistance with installing, configuring, or using vichan, you may @@ -73,15 +85,12 @@ find support from a variety of sources: vichan is based on a Tinyboard, so both engines have very much in common. These links may be helpful for you as well: -* Tinyboard documentation can be found [here](http://tinyboard.org/docs/). -* You can join Tinyboard's IRC channel for support and general queries: - [irc.datnode.net #tinyboard](irc://irc.datnode.net/tinyboard). -* You may find help at [tinyboard.org](http://tinyboard.org/#help). +* Tinyboard documentation can be found [here](https://web.archive.org/web/20121016074303/http://tinyboard.org/docs/?p=Main_Page). Donations --------- Do you like our work? You can motivate us financially to do better ;) -* Bitcoin: [![tip for next commit](http://tip4commit.com/projects/708.svg)](http://tip4commit.com/projects/708) +* Bitcoin: 1GjZEdLaTQ8JWVFGZW921Yv4x59f9oiZME You can also ask us to develop some feature specially for you <3. Join our IRC channel and ask for a quote (there are a few of us, who work with the codebase @@ -112,12 +121,17 @@ git submodule init git submodule update ``` -To enable oekaki, add all the scripts listed in `js/oekaki.js` to your `instance-config.php`. +To enable oekaki, add all the scripts listed in `js/wpaint.js` to your `instance-config.php`. WebM support ------------ Read `inc/lib/webm/README.md` for information about enabling webm. +vichan API +---------- +vichan provides by default a 4chan-compatible JSON API. For documentation on this, see: +https://github.com/vichan-devel/vichan-API/ . + License -------- See [LICENSE.md](http://github.com/vichan-devel/vichan/blob/master/LICENSE.md). diff --git a/banned.php b/banned.php index 57e4a9bc..1bee9115 100644 --- a/banned.php +++ b/banned.php @@ -1,5 +1,6 @@ "._("Banned?").""; print "

"._("You are not banned.")."

"; diff --git a/inc/api.php b/inc/api.php index a8ae9eed..b77fa3f8 100644 --- a/inc/api.php +++ b/inc/api.php @@ -33,6 +33,7 @@ class Api { 'sticky' => 'sticky', 'locked' => 'locked', 'bump' => 'last_modified', + 'embed' => 'embed', ); $this->threadsPageFields = array( @@ -41,12 +42,11 @@ class Api { ); $this->fileFields = array( - 'thumbheight' => 'tn_w', - 'thumbwidth' => 'tn_h', - 'height' => 'w', - 'width' => 'h', + 'thumbheight' => 'tn_h', + 'thumbwidth' => 'tn_w', + 'height' => 'h', + 'width' => 'w', 'size' => 'fsize', - 'file' => 'filename', ); if (isset($config['api']['extra_fields']) && gettype($config['api']['extra_fields']) == 'array'){ @@ -65,6 +65,8 @@ class Api { 'fsize' => 1, 'omitted_posts' => 1, 'omitted_images' => 1, + 'replies' => 1, + 'images' => 1, 'sticky' => 1, 'locked' => 1, 'last_modified' => 1 @@ -84,11 +86,22 @@ class Api { } } + private function translateFile($file, $post, &$apiPost) { + $this->translateFields($this->fileFields, $file, $apiPost); + $apiPost['filename'] = @substr($file->name, 0, strrpos($file->name, '.')); + $dotPos = strrpos($file->file, '.'); + $apiPost['ext'] = substr($file->file, $dotPos); + $apiPost['tim'] = substr($file->file, 0, $dotPos); + $apiPost['md5'] = base64_encode(hex2bin($post->filehash)); + } + private function translatePost($post, $threadsPage = false) { + global $config, $board; $apiPost = array(); $fields = $threadsPage ? $this->threadsPageFields : $this->postFields; $this->translateFields($fields, $post, $apiPost); + if (isset($config['poster_ids'])) $apiPost['id'] = poster_id($post->ip, $post->thread, $board['uri']); if ($threadsPage) return $apiPost; // Handle country field @@ -103,16 +116,27 @@ class Api { } } + if ($config['slugify'] && !$post->thread) { + $apiPost['semantic_url'] = $post->slug; + } + // Handle files // Note: 4chan only supports one file, so only the first file is taken into account for 4chan-compatible API. if (isset($post->files) && $post->files && !$threadsPage) { $file = $post->files[0]; - $this->translateFields($this->fileFields, $file, $apiPost); - $dotPos = strrpos($file->file, '.'); - $apiPost['filename'] = substr($file->file, 0, $dotPos); - $apiPost['ext'] = substr($file->file, $dotPos); - $dotPos = strrpos($file->file, '.'); - $apiPost['tim'] = substr($file->file, 0, $dotPos); + $this->translateFile($file, $post, $apiPost); + if (sizeof($post->files) > 1) { + $extra_files = array(); + foreach ($post->files as $i => $f) { + if ($i == 0) continue; + + $extra_file = array(); + $this->translateFile($f, $post, $extra_file); + + $extra_files[] = $extra_file; + } + $apiPost['extra_files'] = $extra_files; + } } return $apiPost; diff --git a/inc/bans.php b/inc/bans.php index ed81c6e4..87e06e28 100644 --- a/inc/bans.php +++ b/inc/bans.php @@ -148,49 +148,86 @@ class Bans { return $ban_list; } - - static public function list_all($offset = 0, $limit = 9001) { - $offset = (int)$offset; - $limit = (int)$limit; - + + static public function stream_json($out = false, $filter_ips = false, $filter_staff = false, $board_access = false) { $query = query("SELECT ``bans``.*, `username` FROM ``bans`` LEFT JOIN ``mods`` ON ``mods``.`id` = `creator` - ORDER BY `created` DESC LIMIT $offset, $limit") or error(db_error()); - $bans = $query->fetchAll(PDO::FETCH_ASSOC); - - foreach ($bans as &$ban) { - $ban['mask'] = self::range_to_string(array($ban['ipstart'], $ban['ipend'])); - } - - return $bans; - } - - static public function count($board = false) { - if (!$board) { - $query = prepare("SELECT COUNT(*) FROM ``bans``"); - } else { - $query = prepare("SELECT COUNT(*) FROM ``bans`` WHERE `board` = :board"); + ORDER BY `created` DESC") or error(db_error()); + $bans = $query->fetchAll(PDO::FETCH_ASSOC); + + if ($board_access && $board_access[0] == '*') $board_access = false; + + $out ? fputs($out, "[") : print("["); + + $end = end($bans); + + foreach ($bans as &$ban) { + $ban['mask'] = self::range_to_string(array($ban['ipstart'], $ban['ipend'])); + + if ($ban['post']) { + $post = json_decode($ban['post']); + $ban['message'] = $post->body; + } + unset($ban['ipstart'], $ban['ipend'], $ban['post'], $ban['creator']); + + if ($board_access === false || in_array ($ban['board'], $board_access)) { + $ban['access'] = true; + } + + if (filter_var($ban['mask'], FILTER_VALIDATE_IP) !== false) { + $ban['single_addr'] = true; + } + if ($filter_staff || ($board_access !== false && !in_array($ban['board'], $board_access))) { + $ban['username'] = '?'; + } + if ($filter_ips || ($board_access !== false && !in_array($ban['board'], $board_access))) { + @list($ban['mask'], $subnet) = explode("/", $ban['mask']); + $ban['mask'] = preg_split("/[\.:]/", $ban['mask']); + $ban['mask'] = array_slice($ban['mask'], 0, 2); + $ban['mask'] = implode(".", $ban['mask']); + $ban['mask'] .= ".x.x"; + if (isset ($subnet)) { + $ban['mask'] .= "/$subnet"; + } + $ban['masked'] = true; + } + + $json = json_encode($ban); + $out ? fputs($out, $json) : print($json); + + if ($ban['id'] != $end['id']) { + $out ? fputs($out, ",") : print(","); + } } - $query->bindValue(':board', $board); - $query->execute() or error(db_error()); - return (int)$query->fetchColumn(); + + $out ? fputs($out, "]") : print("]"); + } static public function seen($ban_id) { $query = query("UPDATE ``bans`` SET `seen` = 1 WHERE `id` = " . (int)$ban_id) or error(db_error()); + rebuildThemes('bans'); } static public function purge() { $query = query("DELETE FROM ``bans`` WHERE `expires` IS NOT NULL AND `expires` < " . time() . " AND `seen` = 1") or error(db_error()); + rebuildThemes('bans'); } - static public function delete($ban_id, $modlog = false) { + static public function delete($ban_id, $modlog = false, $boards = false, $dont_rebuild = false) { + global $config; + + if ($boards && $boards[0] == '*') $boards = false; + if ($modlog) { - $query = query("SELECT `ipstart`, `ipend` FROM ``bans`` WHERE `id` = " . (int)$ban_id) or error(db_error()); + $query = query("SELECT `ipstart`, `ipend`, `board` FROM ``bans`` WHERE `id` = " . (int)$ban_id) or error(db_error()); if (!$ban = $query->fetch(PDO::FETCH_ASSOC)) { // Ban doesn't exist return false; } + + if ($boards !== false && !in_array($ban['board'], $boards)) + error($config['error']['noaccess']); $mask = self::range_to_string(array($ban['ipstart'], $ban['ipend'])); @@ -199,6 +236,8 @@ class Bans { } query("DELETE FROM ``bans`` WHERE `id` = " . (int)$ban_id) or error(db_error()); + + if (!$dont_rebuild) rebuildThemes('bans'); return true; } @@ -265,6 +304,9 @@ class Bans { ' (#' . $pdo->lastInsertId() . ')' . ' with ' . ($reason ? 'reason: ' . utf8tohtml($reason) . '' : 'no reason')); } + + rebuildThemes('bans'); + return $pdo->lastInsertId(); } } diff --git a/inc/cache.php b/inc/cache.php index d1200919..852aefa2 100644 --- a/inc/cache.php +++ b/inc/cache.php @@ -50,6 +50,17 @@ class Cache { case 'php': $data = isset(self::$cache[$key]) ? self::$cache[$key] : false; break; + case 'fs': + $key = str_replace('/', '::', $key); + $key = str_replace("\0", '', $key); + if (!file_exists('tmp/cache/'.$key)) { + $data = false; + } + else { + $data = file_get_contents('tmp/cache/'.$key); + $data = json_decode($data, true); + } + break; case 'redis': if (!self::$cache) self::init(); @@ -87,6 +98,11 @@ class Cache { case 'xcache': xcache_set($key, $value, $expires); break; + case 'fs': + $key = str_replace('/', '::', $key); + $key = str_replace("\0", '', $key); + file_put_contents('tmp/cache/'.$key, json_encode($value)); + break; case 'php': self::$cache[$key] = $value; break; @@ -113,6 +129,11 @@ class Cache { case 'xcache': xcache_unset($key); break; + case 'fs': + $key = str_replace('/', '::', $key); + $key = str_replace("\0", '', $key); + @unlink('tmp/cache/'.$key); + break; case 'php': unset(self::$cache[$key]); break; @@ -134,6 +155,12 @@ class Cache { case 'php': self::$cache = array(); break; + case 'fs': + $files = glob('tmp/cache/*'); + foreach ($files as $file) { + unlink($file); + } + break; case 'redis': if (!self::$cache) self::init(); diff --git a/inc/config.php b/inc/config.php index e2cc2ebd..32308bd4 100644 --- a/inc/config.php +++ b/inc/config.php @@ -66,7 +66,10 @@ // Use `host` via shell_exec() to lookup hostnames, avoiding query timeouts. May not work on your system. // Requires safe_mode to be disabled. $config['dns_system'] = false; - + + // Check validity of the reverse DNS of IP addresses. Highly recommended. + $config['fcrdns'] = true; + // When executing most command-line tools (such as `convert` for ImageMagick image processing), add this // to the environment path (seperated by :). $config['shell_path'] = '/usr/local/bin'; @@ -112,7 +115,7 @@ * http://tinyboard.org/docs/index.php?p=Config/Cache */ - $config['cache']['enabled'] = false; + $config['cache']['enabled'] = 'php'; // $config['cache']['enabled'] = 'xcache'; // $config['cache']['enabled'] = 'apc'; // $config['cache']['enabled'] = 'memcached'; @@ -134,6 +137,11 @@ // Tinyboard to use. $config['cache']['redis'] = array('localhost', 6379, '', 1); + // EXPERIMENTAL: Should we cache configs? Warning: this changes board behaviour, i'd say, a lot. + // If you have any lambdas/includes present in your config, you should move them to instance-functions.php + // (this file will be explicitly loaded during cache hit, but not during cache miss). + $config['cache_config'] = false; + /* * ==================== * Cookie settings @@ -274,7 +282,8 @@ 'file_url', 'json_response', 'user_flag', - 'no_country' + 'no_country', + 'tag' ); // Enable reCaptcha to make spam even harder. Rarely necessary. @@ -283,6 +292,15 @@ // Public and private key pair from https://www.google.com/recaptcha/admin/create $config['recaptcha_public'] = '6LcXTcUSAAAAAKBxyFWIt2SO8jwx4W7wcSMRoN3f'; $config['recaptcha_private'] = '6LcXTcUSAAAAAOGVbVdhmEM1_SyRF4xTKe8jbzf_'; + + // Ability to lock a board for normal users and still allow mods to post. Could also be useful for making an archive board + $config['board_locked'] = false; + + // If poster's proxy supplies X-Forwarded-For header, check if poster's real IP is banned. + $config['proxy_check'] = false; + + // If poster's proxy supplies X-Forwarded-For header, save it for further inspection and/or filtering. + $config['proxy_save'] = false; /* * Custom filters detect certain posts and reject/ban accordingly. They are made up of a condition and an @@ -529,6 +547,9 @@ // When true, users are instead presented a selectbox for email. Contains, blank, noko and sage. $config['field_email_selectbox'] = false; + // When true, the sage won't be displayed + $config['hide_sage'] = false; + // Attach country flags to posts. $config['country_flags'] = false; @@ -557,7 +578,13 @@ // Allow dice rolling: an email field of the form "dice XdY+/-Z" will result in X Y-sided dice rolled and summed, // with the modifier Z added, with the result displayed at the top of the post body. $config['allow_roll'] = false; + + // Use semantic URLs for threads, like /b/res/12345/daily-programming-thread.html + $config['slugify'] = false; + // Max size for slugs + $config['slug_max_size'] = 80; + /* * ==================== * Ban settings @@ -598,13 +625,10 @@ $config['markup'][] = array("/\*\*(.+?)\*\*/", "\$1"); $config['markup'][] = array("/^[ |\t]*==(.+?)==[ |\t]*$/m", "\$1"); - // Highlight PHP code wrapped in tags (PHP 5.3+) - // $config['markup'][] = array( - // '/^<code>(.+)<\/code>/ms', - // function($matches) { - // return highlight_string(html_entity_decode($matches[1]), true); - // } - // ); + // Code markup. This should be set to a regular expression, using tags you want to use. Examples: + // "/\[code\](.*?)\[\/code\]/is" + // "/```([a-z0-9-]{0,20})\n(.*?)\n?```\n?/s" + $config['markup_code'] = false; // Repair markup with HTML Tidy. This may be slower, but it solves nesting mistakes. Tinyboad, at the // time of writing this, can not prevent out-of-order markup tags (eg. "**''test**'') without help from @@ -712,6 +736,11 @@ $config['allowed_ext'][] = 'png'; // $config['allowed_ext'][] = 'svg'; + // Allowed extensions for OP. Inherits from the above setting if set to false. Otherwise, it overrides both allowed_ext and + // allowed_ext_files (filetypes for downloadable files should be set in allowed_ext_files as well). This setting is useful + // for creating fileboards. + $config['allowed_ext_op'] = false; + // Allowed additional file extensions (not images; downloadable files). // $config['allowed_ext_files'][] = 'txt'; // $config['allowed_ext_files'][] = 'zip'; @@ -774,6 +803,9 @@ // Set this to true if you're using a BSD $config['bsd_md5'] = false; + // Set this to true if you're having problems with image duplicated error and bsd_md5 doesn't help. + $config['php_md5'] = false; + // Number of posts in a "View Last X Posts" page $config['noko50_count'] = 50; // Number of posts a thread needs before it gets a "View Last X Posts" page. @@ -1046,10 +1078,11 @@ $config['error']['unknownext'] = _('Unknown file extension.'); $config['error']['filesize'] = _('Maximum file size: %maxsz% bytes
Your file\'s size: %filesz% bytes'); $config['error']['maxsize'] = _('The file was too big.'); - $config['error']['webmerror'] = _('There was a problem processing your webm.'); - $config['error']['invalidwebm'] = _('Invalid webm uploaded.'); - $config['error']['webmhasaudio'] = _('The uploaded webm contains an audio or another type of additional stream.'); - $config['error']['webmtoolong'] = _('The uploaded webm is longer than ' . $config['webm']['max_length'] . ' seconds.'); + $config['error']['genwebmerror'] = _('There was a problem processing your webm.'); + $config['error']['webmerror'] = _('There was a problem processing your webm.');//Is this error used anywhere ? + $config['error']['invalidwebm'] = _('Invalid webm uploaded.'); + $config['error']['webmhasaudio'] = _('The uploaded webm contains an audio or another type of additional stream.'); + $config['error']['webmtoolong'] = _('The uploaded webm is longer than ' . $config['webm']['max_length'] . ' seconds.'); $config['error']['fileexists'] = _('That file already exists!'); $config['error']['fileexistsinthread'] = _('That file already exists in this thread!'); $config['error']['delete_too_soon'] = _('You\'ll have to wait another %s before deleting that.'); @@ -1105,8 +1138,10 @@ // Location of files. $config['file_index'] = 'index.html'; - $config['file_page'] = '%d.html'; + $config['file_page'] = '%d.html'; // NB: page is both an index page and a thread $config['file_page50'] = '%d+50.html'; + $config['file_page_slug'] = '%d-%s.html'; + $config['file_page50_slug'] = '%d-%s+50.html'; $config['file_mod'] = 'mod.php'; $config['file_post'] = 'post.php'; $config['file_script'] = 'main.js'; @@ -1154,9 +1189,20 @@ // Website favicon. // $config['url_favicon'] = '/favicon.gif'; - // EXPERIMENTAL: Try not to build pages when we shouldn't have to. + // Try not to build pages when we shouldn't have to. $config['try_smarter'] = true; + // EXPERIMENTAL: Defer static HTML building to a moment, when a given file is actually accessed. + // Warning: This option won't run out of the box. You need to tell your webserver, that a file + // for serving 403 and 404 pages is /smart_build.php. Also, you need to turn off indexes. + $config['smart_build'] = false; + + // Smart build related: when a file doesn't exist, where should we redirect? + $config['page_404'] = '/404.html'; + + // Smart build related: extra entrypoints. + $config['smart_build_entrypoints'] = array(); + /* * ==================== * Mod settings @@ -1478,6 +1524,13 @@ // Allow OP to remove arbitrary posts in his thread $config['user_moderation'] = false; + // File board. Like 4chan /f/ + $config['file_board'] = false; + + // Thread tags. Set to false to disable + // Example: array('A' => 'Chinese cartoons', 'M' => 'Music', 'P' => 'Pornography'); + $config['allowed_tags'] = false; + /* * ==================== * Public post search diff --git a/inc/display.php b/inc/display.php index 1a78e19b..e7fb9320 100644 --- a/inc/display.php +++ b/inc/display.php @@ -383,7 +383,7 @@ class Post { public function link($pre = '', $page = false) { global $config, $board; - return $this->root . $board['dir'] . $config['dir']['res'] . sprintf(($page ? $page : $config['file_page']), $this->thread) . '#' . $pre . $this->id; + return $this->root . $board['dir'] . $config['dir']['res'] . link_for((array)$this, $page == '50') . '#' . $pre . $this->id; } public function build($index=false) { @@ -438,7 +438,7 @@ class Thread { public function link($pre = '', $page = false) { global $config, $board; - return $this->root . $board['dir'] . $config['dir']['res'] . sprintf(($page ? $page : $config['file_page']), $this->id) . '#' . $pre . $this->id; + return $this->root . $board['dir'] . $config['dir']['res'] . link_for((array)$this, $page == '50') . '#' . $pre . $this->id; } public function add(Post $post) { $this->posts[] = $post; @@ -453,7 +453,8 @@ class Thread { event('show-thread', $this); - $built = Element('post_thread.html', array('config' => $config, 'board' => $board, 'post' => &$this, 'index' => $index, 'hasnoko50' => $hasnoko50, 'isnoko50' => $isnoko50, 'mod' => $this->mod)); + $file = ($index && $config['file_board']) ? 'post_thread_fileboard.html' : 'post_thread.html'; + $built = Element($file, array('config' => $config, 'board' => $board, 'post' => &$this, 'index' => $index, 'hasnoko50' => $hasnoko50, 'isnoko50' => $isnoko50, 'mod' => $this->mod)); return $built; } diff --git a/inc/functions.php b/inc/functions.php old mode 100644 new mode 100755 index 06262e30..956f49ff --- a/inc/functions.php +++ b/inc/functions.php @@ -18,8 +18,9 @@ require_once 'inc/template.php'; require_once 'inc/database.php'; require_once 'inc/events.php'; require_once 'inc/api.php'; -require_once 'inc/bans.php'; -require_once 'inc/lib/gettext/gettext.inc'; +if (!extension_loaded('gettext')) { + require_once 'inc/lib/gettext/gettext.inc'; +} // the user is not currently logged in as a moderator $mod = false; @@ -29,14 +30,17 @@ 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')) { + if (setlocale(LC_ALL, $locale) === false) { + //$error('The specified locale (' . $locale . ') does not exist on your platform!'); + } bindtextdomain('tinyboard', './inc/locale'); bind_textdomain_codeset('tinyboard', 'UTF-8'); textdomain('tinyboard'); } else { + if (_setlocale(LC_ALL, $locale) === false) { + $error('The specified locale (' . $locale . ') does not exist on your platform!'); + } _bindtextdomain('tinyboard', './inc/locale'); _bind_textdomain_codeset('tinyboard', 'UTF-8'); _textdomain('tinyboard'); @@ -46,171 +50,224 @@ $current_locale = 'en'; function loadConfig() { - global $board, $config, $__ip, $debug, $__version, $microtime_start, $current_locale; + global $board, $config, $__ip, $debug, $__version, $microtime_start, $current_locale, $events; $error = function_exists('error') ? 'error' : 'basic_error_function_because_the_other_isnt_loaded_yet'; - reset_events(); + $boardsuffix = isset($board['uri']) ? $board['uri'] : ''; if (!isset($_SERVER['REMOTE_ADDR'])) $_SERVER['REMOTE_ADDR'] = '0.0.0.0'; - $arrays = array( - 'db', - 'api', - 'cache', - 'cookies', - 'error', - 'dir', - 'mod', - 'spam', - 'filters', - 'wordfilters', - 'custom_capcode', - 'custom_tripcode', - 'dnsbl', - 'dnsbl_exceptions', - 'remote', - 'allowed_ext', - 'allowed_ext_files', - 'file_icons', - 'footer', - 'stylesheets', - 'code_stylesheets', - 'additional_javascript', - 'markup', - 'custom_pages', - 'dashboard_links' - ); + if (file_exists('tmp/cache/cache_config.php')) { + require_once('tmp/cache/cache_config.php'); + } + + if (isset($config['cache_config']) && + $config['cache_config'] && + $config = Cache::get('config_' . $boardsuffix ) ) { + $events = Cache::get('events_' . $boardsuffix ); - $config = array(); - foreach ($arrays as $key) { - $config[$key] = array(); + define_groups(); + + if (file_exists('inc/instance-functions.php')) { + require_once('inc/instance-functions.php'); + } + + if ($config['locale'] != $current_locale) { + $current_locale = $config['locale']; + init_locale($config['locale'], $error); + } } + else { + $config = array(); + + reset_events(); + + $arrays = array( + 'db', + 'api', + 'cache', + 'cookies', + 'error', + 'dir', + 'mod', + 'spam', + 'filters', + 'wordfilters', + 'custom_capcode', + 'custom_tripcode', + 'dnsbl', + 'dnsbl_exceptions', + 'remote', + 'allowed_ext', + 'allowed_ext_files', + 'file_icons', + 'footer', + 'stylesheets', + 'additional_javascript', + 'markup', + 'custom_pages', + 'dashboard_links' + ); + + foreach ($arrays as $key) { + $config[$key] = array(); + } - require 'inc/config.php'; + if (!file_exists('inc/instance-config.php')) + $error('Tinyboard is not configured! Create inc/instance-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 - // Initialize locale as early as possible + // Those calls are expensive. Unfortunately, our cache system is not initialized at this point. + // So, we may store the locale in a tmp/ filesystem. - $config['locale'] = 'en'; + if (file_exists($fn = 'tmp/cache/locale_' . $boardsuffix ) ) { + $config['locale'] = file_get_contents($fn); + } + else { + $config['locale'] = 'en'; - $configstr = file_get_contents('inc/instance-config.php'); + $configstr = file_get_contents('inc/instance-config.php'); - if (isset($board['dir']) && file_exists($board['dir'] . '/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]; + } + + file_put_contents($fn, $config['locale']); } - $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); - } + if ($config['locale'] != $current_locale) { + $current_locale = $config['locale']; + init_locale($config['locale'], $error); + } - require 'inc/instance-config.php'; + require 'inc/config.php'; - if (isset($board['dir']) && file_exists($board['dir'] . '/config.php')) { - require $board['dir'] . '/config.php'; - } + require 'inc/instance-config.php'; - if ($config['locale'] != $current_locale) { - $current_locale = $config['locale']; - init_locale($config['locale'], $error); - } + if (isset($board['dir']) && file_exists($board['dir'] . '/config.php')) { + require $board['dir'] . '/config.php'; + } - if (!isset($__version)) - $__version = file_exists('.installed') ? trim(file_get_contents('.installed')) : false; - $config['version'] = $__version; + if ($config['locale'] != $current_locale) { + $current_locale = $config['locale']; + init_locale($config['locale'], $error); + } - date_default_timezone_set($config['timezone']); + if (!isset($config['global_message'])) + $config['global_message'] = false; + + if (!isset($config['post_url'])) + $config['post_url'] = $config['root'] . $config['file_post']; + + + if (!isset($config['referer_match'])) + if (isset($_SERVER['HTTP_HOST'])) { + $config['referer_match'] = '/^' . + (preg_match('@^https?://@', $config['root']) ? '' : + 'https?:\/\/' . $_SERVER['HTTP_HOST']) . + preg_quote($config['root'], '/') . + '(' . + str_replace('%s', $config['board_regex'], preg_quote($config['board_path'], '/')) . + '(' . + preg_quote($config['file_index'], '/') . '|' . + str_replace('%d', '\d+', preg_quote($config['file_page'])) . + ')?' . + '|' . + str_replace('%s', $config['board_regex'], preg_quote($config['board_path'], '/')) . + preg_quote($config['dir']['res'], '/') . + '(' . + str_replace('%d', '\d+', preg_quote($config['file_page'], '/')) . '|' . + str_replace('%d', '\d+', preg_quote($config['file_page50'], '/')) . '|' . + str_replace(array('%d', '%s'), array('\d+', '[a-z0-9-]+'), preg_quote($config['file_page_slug'], '/')) . '|' . + str_replace(array('%d', '%s'), array('\d+', '[a-z0-9-]+'), preg_quote($config['file_page50_slug'], '/')) . + ')' . + '|' . + preg_quote($config['file_mod'], '/') . '\?\/.+' . + ')([#?](.+)?)?$/ui'; + } else { + // CLI mode + $config['referer_match'] = '//'; + } + if (!isset($config['cookies']['path'])) + $config['cookies']['path'] = &$config['root']; + + 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'])) + $config['image_locked'] = $config['dir']['static'] . 'locked.gif'; + if (!isset($config['image_bumplocked'])) + $config['image_bumplocked'] = $config['dir']['static'] . 'sage.gif'; + if (!isset($config['image_deleted'])) + $config['image_deleted'] = $config['dir']['static'] . 'deleted.png'; + + if (!isset($config['uri_thumb'])) + $config['uri_thumb'] = $config['root'] . $board['dir'] . $config['dir']['thumb']; + elseif (isset($board['dir'])) + $config['uri_thumb'] = sprintf($config['uri_thumb'], $board['dir']); + + if (!isset($config['uri_img'])) + $config['uri_img'] = $config['root'] . $board['dir'] . $config['dir']['img']; + elseif (isset($board['dir'])) + $config['uri_img'] = sprintf($config['uri_img'], $board['dir']); + + if (!isset($config['uri_stylesheets'])) + $config['uri_stylesheets'] = $config['root'] . 'stylesheets/'; + + if (!isset($config['url_stylesheet'])) + $config['url_stylesheet'] = $config['uri_stylesheets'] . 'style.css'; + if (!isset($config['url_javascript'])) + $config['url_javascript'] = $config['root'] . $config['file_script']; + if (!isset($config['additional_javascript_url'])) + $config['additional_javascript_url'] = $config['root']; + if (!isset($config['uri_flags'])) + $config['uri_flags'] = $config['root'] . 'static/flags/%s.png'; + if (!isset($config['user_flag'])) + $config['user_flag'] = false; + if (!isset($config['user_flags'])) + $config['user_flags'] = array(); + + if (!isset($__version)) + $__version = file_exists('.installed') ? trim(file_get_contents('.installed')) : false; + $config['version'] = $__version; + + if ($config['allow_roll']) + event_handler('post', 'diceRoller'); + + if (is_array($config['anonymous'])) + $config['anonymous'] = $config['anonymous'][array_rand($config['anonymous'])]; + + } + // Effectful config processing below: - if (!isset($config['global_message'])) - $config['global_message'] = false; - - if (!isset($config['post_url'])) - $config['post_url'] = $config['root'] . $config['file_post']; - - if (!isset($config['referer_match'])) - if (isset($_SERVER['HTTP_HOST'])) { - $config['referer_match'] = '/^' . - (preg_match('@^https?://@', $config['root']) ? '' : - 'https?:\/\/' . $_SERVER['HTTP_HOST']) . - preg_quote($config['root'], '/') . - '(' . - str_replace('%s', $config['board_regex'], preg_quote($config['board_path'], '/')) . - '(' . - preg_quote($config['file_index'], '/') . '|' . - str_replace('%d', '\d+', preg_quote($config['file_page'])) . - ')?' . - '|' . - str_replace('%s', $config['board_regex'], preg_quote($config['board_path'], '/')) . - preg_quote($config['dir']['res'], '/') . - '(' . - str_replace('%d', '\d+', preg_quote($config['file_page'], '/')) . '|' . - str_replace('%d', '\d+', preg_quote($config['file_page50'], '/')) . - ')' . - '|' . - preg_quote($config['file_mod'], '/') . '\?\/.+' . - ')([#?](.+)?)?$/ui'; - } else { - // CLI mode - $config['referer_match'] = '//'; - } - if (!isset($config['cookies']['path'])) - $config['cookies']['path'] = &$config['root']; - - 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'])) - $config['image_locked'] = $config['dir']['static'] . 'locked.gif'; - if (!isset($config['image_bumplocked'])) - $config['image_bumplocked'] = $config['dir']['static'] . 'sage.gif'; - if (!isset($config['image_deleted'])) - $config['image_deleted'] = $config['dir']['static'] . 'deleted.png'; - - if (!isset($config['uri_thumb'])) - $config['uri_thumb'] = $config['root'] . $board['dir'] . $config['dir']['thumb']; - elseif (isset($board['dir'])) - $config['uri_thumb'] = sprintf($config['uri_thumb'], $board['dir']); - - if (!isset($config['uri_img'])) - $config['uri_img'] = $config['root'] . $board['dir'] . $config['dir']['img']; - elseif (isset($board['dir'])) - $config['uri_img'] = sprintf($config['uri_img'], $board['dir']); - - if (!isset($config['uri_stylesheets'])) - $config['uri_stylesheets'] = $config['root'] . 'stylesheets/'; - - if (!isset($config['url_stylesheet'])) - $config['url_stylesheet'] = $config['uri_stylesheets'] . 'style.css'; - if (!isset($config['url_javascript'])) - $config['url_javascript'] = $config['root'] . $config['file_script']; - if (!isset($config['additional_javascript_url'])) - $config['additional_javascript_url'] = $config['root']; - if (!isset($config['uri_flags'])) - $config['uri_flags'] = $config['root'] . 'static/flags/%s.png'; - if (!isset($config['user_flag'])) - $config['user_flag'] = false; - if (!isset($config['user_flags'])) - $config['user_flags'] = array(); + date_default_timezone_set($config['timezone']); if ($config['root_file']) { chdir($config['root_file']); } + // Keep the original address to properly comply with other board configurations + if (!isset($__ip)) + $__ip = $_SERVER['REMOTE_ADDR']; + + // ::ffff:0.0.0.0 + if (preg_match('/^\:\:(ffff\:)?(\d+\.\d+\.\d+\.\d+)$/', $__ip, $m)) + $_SERVER['REMOTE_ADDR'] = $m[2]; + if ($config['verbose_errors']) { set_error_handler('verbose_error_handler'); error_reporting(E_ALL); @@ -220,19 +277,12 @@ function loadConfig() { ini_set('display_errors', false); } - // Keep the original address to properly comply with other board configurations - if (!isset($__ip)) - $__ip = $_SERVER['REMOTE_ADDR']; - - // ::ffff:0.0.0.0 - if (preg_match('/^\:\:(ffff\:)?(\d+\.\d+\.\d+\.\d+)$/', $__ip, $m)) - $_SERVER['REMOTE_ADDR'] = $m[2]; - if ($config['syslog']) openlog('tinyboard', LOG_ODELAY, LOG_SYSLOG); // open a connection to sysem logger if ($config['recaptcha']) require_once 'inc/lib/recaptcha/recaptchalib.php'; + if ($config['cache']['enabled']) require_once 'inc/cache.php'; @@ -241,13 +291,22 @@ function loadConfig() { event_handler('post', 'postHandler'); } - if (is_array($config['anonymous'])) - $config['anonymous'] = $config['anonymous'][array_rand($config['anonymous'])]; + event('load-config'); - if ($config['allow_roll']) - event_handler('post', 'diceRoller'); + if ($config['cache_config'] && !isset ($config['cache_config_loaded'])) { + file_put_contents('tmp/cache/cache_config.php', ' $group_name) - defined($group_name) or define($group_name, $group_value, true); + foreach ($config['mod']['groups'] as $group_value => $group_name) { + $group_name = strtoupper($group_name); + if(!defined($group_name)) { + define($group_name, $group_value, true); + } + } ksort($config['mod']['groups']); } @@ -336,22 +399,59 @@ function create_antibot($board, $thread = null) { } function rebuildThemes($action, $boardname = false) { - global $config, $board; + global $config, $board, $current_locale; // Save the global variables $_config = $config; $_board = $board; // List themes - $query = query("SELECT `theme` FROM ``theme_settings`` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error()); + if ($themes = Cache::get("themes")) { + // OK, we already have themes loaded + } + else { + $query = query("SELECT `theme` FROM ``theme_settings`` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error()); + + $themes = array(); + + while ($theme = $query->fetch(PDO::FETCH_ASSOC)) { + $themes[] = $theme; + } + + Cache::set("themes", $themes); + } + + foreach ($themes as $theme) { + // Restore them + $config = $_config; + $board = $_board; + + // Reload the locale + if ($config['locale'] != $current_locale) { + $current_locale = $config['locale']; + init_locale($config['locale']); + } + + if (PHP_SAPI === 'cli') { + echo "Rebuilding theme ".$theme['theme']."... "; + } - while ($theme = $query->fetch(PDO::FETCH_ASSOC)) { rebuildTheme($theme['theme'], $action, $boardname); + + if (PHP_SAPI === 'cli') { + echo "done\n"; + } } - // Restore them + // Restore them again $config = $_config; $board = $_board; + + // Reload the locale + if ($config['locale'] != $current_locale) { + $current_locale = $config['locale']; + init_locale($config['locale']); + } } @@ -382,6 +482,10 @@ function rebuildTheme($theme, $action, $board = false) { function themeSettings($theme) { + if ($settings = Cache::get("theme_settings_".$theme)) { + return $settings; + } + $query = prepare("SELECT `name`, `value` FROM ``theme_settings`` WHERE `theme` = :theme AND `name` IS NOT NULL"); $query->bindValue(':theme', $theme); $query->execute() or error(db_error($query)); @@ -391,6 +495,8 @@ function themeSettings($theme) { $settings[$s['name']] = $s['value']; } + Cache::set("theme_settings_".$theme, $settings); + return $settings; } @@ -446,6 +552,11 @@ function openBoard($uri) { $board = getBoardInfo($uri); if ($board) { setupBoard($board); + + if (function_exists('after_open_board')) { + after_open_board(); + } + return true; } return false; @@ -567,8 +678,8 @@ function file_write($path, $data, $simple = false, $skip_purge = false) { if ($bytes & ~0x3ff) { // if ($bytes >= 1024) if (file_put_contents($gzpath, gzencode($data), $simple ? 0 : LOCK_EX) === false) error("Unable to write to file: $gzpath"); - if (!touch($gzpath, filemtime($path), fileatime($path))) - error("Unable to touch file: $gzpath"); + //if (!touch($gzpath, filemtime($path), fileatime($path))) + // error("Unable to touch file: $gzpath"); } else { @unlink($gzpath); @@ -607,6 +718,13 @@ function file_unlink($path) { } $ret = @unlink($path); + + if ($config['gzip_static']) { + $gzpath = "$path.gz"; + + @unlink($gzpath); + } + if (isset($config['purge']) && $path[0] != '/' && isset($_SERVER['HTTP_HOST'])) { // Purge cache if (basename($path) == $config['file_index']) { @@ -680,36 +798,38 @@ function listBoards($just_uri = false) { function until($timestamp) { $difference = $timestamp - time(); - if ($difference < 60) { + switch(TRUE){ + case ($difference < 60): return $difference . ' ' . ngettext('second', 'seconds', $difference); - } elseif ($difference < 60*60) { + case ($difference < 3600): //60*60 = 3600 return ($num = round($difference/(60))) . ' ' . ngettext('minute', 'minutes', $num); - } elseif ($difference < 60*60*24) { - return ($num = round($difference/(60*60))) . ' ' . ngettext('hour', 'hours', $num); - } elseif ($difference < 60*60*24*7) { - return ($num = round($difference/(60*60*24))) . ' ' . ngettext('day', 'days', $num); - } elseif ($difference < 60*60*24*365) { - return ($num = round($difference/(60*60*24*7))) . ' ' . ngettext('week', 'weeks', $num); + case ($difference < 86400): //60*60*24 = 86400 + return ($num = round($difference/(3600))) . ' ' . ngettext('hour', 'hours', $num); + case ($difference < 604800): //60*60*24*7 = 604800 + return ($num = round($difference/(86400))) . ' ' . ngettext('day', 'days', $num); + case ($difference < 31536000): //60*60*24*365 = 31536000 + return ($num = round($difference/(604800))) . ' ' . ngettext('week', 'weeks', $num); + default: + return ($num = round($difference/(31536000))) . ' ' . ngettext('year', 'years', $num); } - - return ($num = round($difference/(60*60*24*365))) . ' ' . ngettext('year', 'years', $num); } function ago($timestamp) { $difference = time() - $timestamp; - if ($difference < 60) { + switch(TRUE){ + case ($difference < 60) : return $difference . ' ' . ngettext('second', 'seconds', $difference); - } elseif ($difference < 60*60) { + case ($difference < 3600): //60*60 = 3600 return ($num = round($difference/(60))) . ' ' . ngettext('minute', 'minutes', $num); - } elseif ($difference < 60*60*24) { - return ($num = round($difference/(60*60))) . ' ' . ngettext('hour', 'hours', $num); - } elseif ($difference < 60*60*24*7) { - return ($num = round($difference/(60*60*24))) . ' ' . ngettext('day', 'days', $num); - } elseif ($difference < 60*60*24*365) { - return ($num = round($difference/(60*60*24*7))) . ' ' . ngettext('week', 'weeks', $num); + case ($difference < 86400): //60*60*24 = 86400 + return ($num = round($difference/(3600))) . ' ' . ngettext('hour', 'hours', $num); + case ($difference < 604800): //60*60*24*7 = 604800 + return ($num = round($difference/(86400))) . ' ' . ngettext('day', 'days', $num); + case ($difference < 31536000): //60*60*24*365 = 31536000 + return ($num = round($difference/(604800))) . ' ' . ngettext('week', 'weeks', $num); + default: + return ($num = round($difference/(31536000))) . ' ' . ngettext('year', 'years', $num); } - - return ($num = round($difference/(60*60*24*365))) . ' ' . ngettext('year', 'years', $num); } function displayBan($ban) { @@ -740,7 +860,7 @@ function displayBan($ban) { $pending_appeal = false; if ($config['ban_appeals']) { - $query = query("SELECT `time`, `denied` FROM `ban_appeals` WHERE `ban_id` = " . (int)$ban['id']) or error(db_error()); + $query = query("SELECT `time`, `denied` FROM ``ban_appeals`` WHERE `ban_id` = " . (int)$ban['id']) or error(db_error()); while ($ban_appeal = $query->fetch(PDO::FETCH_ASSOC)) { if ($ban_appeal['denied']) { $denied_appeals[] = $ban_appeal['time']; @@ -779,12 +899,29 @@ function checkBan($board = false) { if (event('check-ban', $board)) return true; - $bans = Bans::find($_SERVER['REMOTE_ADDR'], $board, $config['show_modname']); + $ips = array(); + + $ips[] = $_SERVER['REMOTE_ADDR']; + + if ($config['proxy_check'] && isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { + $ips = array_merge($ips, explode(", ", $_SERVER['HTTP_X_FORWARDED_FOR'])); + } + + foreach ($ips as $ip) { + $bans = Bans::find($_SERVER['REMOTE_ADDR'], $board, $config['show_modname']); - foreach ($bans as &$ban) { - if ($ban['expires'] && $ban['expires'] < time()) { - Bans::delete($ban['id']); - if ($config['require_ban_view'] && !$ban['seen']) { + foreach ($bans as &$ban) { + if ($ban['expires'] && $ban['expires'] < time()) { + Bans::delete($ban['id']); + if ($config['require_ban_view'] && !$ban['seen']) { + if (!isset($_POST['json_response'])) { + displayBan($ban); + } else { + header('Content-Type: text/json'); + die(json_encode(array('error' => true, 'banned' => true))); + } + } + } else { if (!isset($_POST['json_response'])) { displayBan($ban); } else { @@ -792,13 +929,6 @@ function checkBan($board = false) { die(json_encode(array('error' => true, 'banned' => true))); } } - } else { - if (!isset($_POST['json_response'])) { - displayBan($ban); - } else { - header('Content-Type: text/json'); - die(json_encode(array('error' => true, 'banned' => true))); - } } } @@ -883,7 +1013,7 @@ function insertFloodPost(array $post) { function post(array $post) { global $pdo, $board; - $query = prepare(sprintf("INSERT INTO ``posts_%s`` VALUES ( NULL, :thread, :subject, :email, :name, :trip, :capcode, :body, :body_nomarkup, :time, :time, :files, :num_files, :filehash, :password, :ip, :sticky, :locked, 0, :embed)", $board['uri'])); + $query = prepare(sprintf("INSERT INTO ``posts_%s`` VALUES ( NULL, :thread, :subject, :email, :name, :trip, :capcode, :body, :body_nomarkup, :time, :time, :files, :num_files, :filehash, :password, :ip, :sticky, :locked, 0, :embed, :slug)", $board['uri'])); // Basic stuff if (!empty($post['subject'])) { @@ -952,6 +1082,13 @@ function post(array $post) { $query->bindValue(':filehash', null, PDO::PARAM_NULL); } + if ($post['op']) { + $query->bindValue(':slug', slugify($post)); + } + else { + $query->bindValue(':slug', NULL); + } + if (!$query->execute()) { undoImage($post); error(db_error($query)); @@ -966,8 +1103,9 @@ function bumpThread($id) { if (event('bump', $id)) return true; - if ($config['try_smarter']) - $build_pages[] = thread_find_page($id); + if ($config['try_smarter']) { + $build_pages = array_merge(range(1, thread_find_page($id)), $build_pages); + } $query = prepare(sprintf("UPDATE ``posts_%s`` SET `bump` = :time WHERE `id` = :id AND `thread` IS NULL", $board['uri'])); $query->bindValue(':time', time(), PDO::PARAM_INT); @@ -1047,7 +1185,7 @@ function deletePost($id, $error_if_doesnt_exist=true, $rebuild_after=true) { global $board, $config; // Select post and replies (if thread) in one query - $query = prepare(sprintf("SELECT `id`,`thread`,`files` FROM ``posts_%s`` WHERE `id` = :id OR `thread` = :id", $board['uri'])); + $query = prepare(sprintf("SELECT `id`,`thread`,`files`,`slug` FROM ``posts_%s`` WHERE `id` = :id OR `thread` = :id", $board['uri'])); $query->bindValue(':id', $id, PDO::PARAM_INT); $query->execute() or error(db_error($query)); @@ -1065,8 +1203,8 @@ function deletePost($id, $error_if_doesnt_exist=true, $rebuild_after=true) { if (!$post['thread']) { // Delete thread HTML page - file_unlink($board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $post['id'])); - file_unlink($board['dir'] . $config['dir']['res'] . sprintf($config['file_page50'], $post['id'])); + file_unlink($board['dir'] . $config['dir']['res'] . link_for($post) ); + file_unlink($board['dir'] . $config['dir']['res'] . link_for($post, true) ); // noko50 file_unlink($board['dir'] . $config['dir']['res'] . sprintf('%d.json', $post['id'])); $antispam_query = prepare('DELETE FROM ``antispam`` WHERE `board` = :board AND `thread` = :thread'); @@ -1219,6 +1357,10 @@ function index($page, $mod=false) { $body .= $thread->build(true); } + if ($config['file_board']) { + $body = Element('fileboard.html', array('body' => $body, 'mod' => $mod)); + } + return array( 'board' => $board, 'body' => $body, @@ -1430,56 +1572,65 @@ function checkMute() { } } -function buildIndex() { +function buildIndex($global_api = "yes") { global $board, $config, $build_pages; - $pages = getPages(); - if (!$config['try_smarter']) - $antibot = create_antibot($board['uri']); + if (!$config['smart_build']) { + $pages = getPages(); + if (!$config['try_smarter']) + $antibot = create_antibot($board['uri']); - if ($config['api']['enabled']) { - $api = new Api(); - $catalog = array(); + if ($config['api']['enabled']) { + $api = new Api(); + $catalog = array(); + } } for ($page = 1; $page <= $config['max_pages']; $page++) { $filename = $board['dir'] . ($page == 1 ? $config['file_index'] : sprintf($config['file_page'], $page)); + $jsonFilename = $board['dir'] . ($page - 1) . '.json'; // pages should start from 0 - if (!$config['api']['enabled'] && $config['try_smarter'] && isset($build_pages) && !empty($build_pages) - && !in_array($page, $build_pages) && is_file($filename)) + if ((!$config['api']['enabled'] || $global_api == "skip" || $config['smart_build']) && $config['try_smarter'] + && isset($build_pages) && !empty($build_pages) && !in_array($page, $build_pages) ) continue; - $content = index($page); - if (!$content) - break; - // json api - if ($config['api']['enabled']) { - $threads = $content['threads']; - $json = json_encode($api->translatePage($threads)); - $jsonFilename = $board['dir'] . ($page - 1) . '.json'; // pages should start from 0 - file_write($jsonFilename, $json); + if (!$config['smart_build']) { + $content = index($page); + if (!$content) + break; - $catalog[$page-1] = $threads; - } + // json api + if ($config['api']['enabled']) { + $threads = $content['threads']; + $json = json_encode($api->translatePage($threads)); + file_write($jsonFilename, $json); - if ($config['api']['enabled'] && $config['try_smarter'] && isset($build_pages) && !empty($build_pages) - && !in_array($page, $build_pages) && is_file($filename)) - continue; + $catalog[$page-1] = $threads; + } - if ($config['try_smarter']) { - $antibot = create_antibot($board['uri'], 0 - $page); - $content['current_page'] = $page; - } - $antibot->reset(); - $content['pages'] = $pages; - $content['pages'][$page-1]['selected'] = true; - $content['btn'] = getPageButtons($content['pages']); - $content['antibot'] = $antibot; + if ($config['api']['enabled'] && $global_api != "skip" && $config['try_smarter'] && isset($build_pages) + && !empty($build_pages) && !in_array($page, $build_pages) ) + continue; + + if ($config['try_smarter']) { + $antibot = create_antibot($board['uri'], 0 - $page); + $content['current_page'] = $page; + } + $antibot->reset(); + $content['pages'] = $pages; + $content['pages'][$page-1]['selected'] = true; + $content['btn'] = getPageButtons($content['pages']); + $content['antibot'] = $antibot; - file_write($filename, Element('index.html', $content)); + file_write($filename, Element('index.html', $content)); + } + else { + file_unlink($filename); + file_unlink($jsonFilename); + } } - if ($page < $config['max_pages']) { + if (!$config['smart_build'] && $page < $config['max_pages']) { for (;$page<=$config['max_pages'];$page++) { $filename = $board['dir'] . ($page==1 ? $config['file_index'] : sprintf($config['file_page'], $page)); file_unlink($filename); @@ -1492,14 +1643,22 @@ function buildIndex() { } // json api catalog - if ($config['api']['enabled']) { - $json = json_encode($api->translateCatalog($catalog)); - $jsonFilename = $board['dir'] . 'catalog.json'; - file_write($jsonFilename, $json); + if ($config['api']['enabled'] && $global_api != "skip") { + if ($config['smart_build']) { + $jsonFilename = $board['dir'] . 'catalog.json'; + file_unlink($jsonFilename); + $jsonFilename = $board['dir'] . 'threads.json'; + file_unlink($jsonFilename); + } + else { + $json = json_encode($api->translateCatalog($catalog)); + $jsonFilename = $board['dir'] . 'catalog.json'; + file_write($jsonFilename, $json); - $json = json_encode($api->translateCatalog($catalog, true)); - $jsonFilename = $board['dir'] . 'threads.json'; - file_write($jsonFilename, $json); + $json = json_encode($api->translateCatalog($catalog, true)); + $jsonFilename = $board['dir'] . 'threads.json'; + file_write($jsonFilename, $json); + } } if ($config['try_smarter']) @@ -1709,6 +1868,15 @@ function markup(&$body, $track_cites = false) { if (mysql_version() < 50503) $body = mb_encode_numericentity($body, array(0x010000, 0xffffff, 0, 0xffffff), 'UTF-8'); + if ($config['markup_code']) { + $code_markup = array(); + $body = preg_replace_callback($config['markup_code'], function($matches) use (&$code_markup) { + $d = count($code_markup); + $code_markup[] = $matches; + return ""; + }, $body); + } + foreach ($config['markup'] as $markup) { if (is_string($markup[1])) { $body = preg_replace($markup[0], $markup[1], $body); @@ -1780,7 +1948,7 @@ function markup(&$body, $track_cites = false) { if (isset($cited_posts[$cite])) { $replacement = '' . + link_for(array('id' => $cite, 'thread' => $cited_posts[$cite])) . '#' . $cite . '">' . '>>' . $cite . ''; @@ -1846,12 +2014,12 @@ function markup(&$body, $track_cites = false) { if (!empty($clauses)) { $cited_posts[$_board] = array(); - $query = query(sprintf('SELECT `thread`, `id` FROM ``posts_%s`` WHERE ' . + $query = query(sprintf('SELECT `thread`, `id`, `slug` FROM ``posts_%s`` WHERE ' . implode(' OR ', $clauses), $board['uri'])) or error(db_error()); while ($cite = $query->fetch(PDO::FETCH_ASSOC)) { $cited_posts[$_board][$cite['id']] = $config['root'] . $board['dir'] . $config['dir']['res'] . - ($cite['thread'] ? $cite['thread'] : $cite['id']) . '.html#' . $cite['id']; + link_for($cite) . '#' . $cite['id']; } } @@ -1906,7 +2074,19 @@ function markup(&$body, $track_cites = false) { $body = preg_replace('/\s+$/', '', $body); $body = preg_replace("/\n/", '
', $body); - + + // Fix code markup + if ($config['markup_code']) { + foreach ($code_markup as $id => $val) { + $code = isset($val[2]) ? $val[2] : $val[1]; + $code_lang = isset($val[2]) ? $val[1] : ""; + + $code = "
".str_replace(array("\n","\t"), array("
","	"), htmlspecialchars($code))."
"; + + $body = str_replace("", $code, $body); + } + } + if ($config['markup_repair_tidy']) { $tidy = new tidy(); $body = str_replace("\t", ' ', $body); @@ -1924,10 +2104,10 @@ function markup(&$body, $track_cites = false) { ), 'utf8'); $body = str_replace("\n", '', $body); } - + // replace tabs with 8 spaces $body = str_replace("\t", ' ', $body); - + return $tracked_cites; } @@ -1999,59 +2179,70 @@ function buildThread($id, $return = false, $mod = false) { cache::delete("thread_{$board['uri']}_{$id}"); } - $query = prepare(sprintf("SELECT * FROM ``posts_%s`` WHERE (`thread` IS NULL AND `id` = :id) OR `thread` = :id ORDER BY `thread`,`id`", $board['uri'])); - $query->bindValue(':id', $id, PDO::PARAM_INT); - $query->execute() or error(db_error($query)); + if ($config['try_smarter'] && !$mod) + $build_pages[] = thread_find_page($id); - while ($post = $query->fetch(PDO::FETCH_ASSOC)) { - if (!isset($thread)) { - $thread = new Thread($post, $mod ? '?/' : $config['root'], $mod); - } else { - $thread->add(new Post($post, $mod ? '?/' : $config['root'], $mod)); + if (!$config['smart_build'] || $return || $mod) { + $query = prepare(sprintf("SELECT * FROM ``posts_%s`` WHERE (`thread` IS NULL AND `id` = :id) OR `thread` = :id ORDER BY `thread`,`id`", $board['uri'])); + $query->bindValue(':id', $id, PDO::PARAM_INT); + $query->execute() or error(db_error($query)); + + while ($post = $query->fetch(PDO::FETCH_ASSOC)) { + if (!isset($thread)) { + $thread = new Thread($post, $mod ? '?/' : $config['root'], $mod); + } else { + $thread->add(new Post($post, $mod ? '?/' : $config['root'], $mod)); + } } - } - // Check if any posts were found - if (!isset($thread)) - error($config['error']['nonexistant']); + // Check if any posts were found + if (!isset($thread)) + error($config['error']['nonexistant']); - $hasnoko50 = $thread->postCount() >= $config['noko50_min']; - $antibot = $mod || $return ? false : create_antibot($board['uri'], $id); + $hasnoko50 = $thread->postCount() >= $config['noko50_min']; + $antibot = $mod || $return ? false : create_antibot($board['uri'], $id); - $body = Element('thread.html', array( - 'board' => $board, - 'thread' => $thread, - 'body' => $thread->build(), - 'config' => $config, - 'id' => $id, - 'mod' => $mod, - 'hasnoko50' => $hasnoko50, - 'isnoko50' => false, - 'antibot' => $antibot, - 'boardlist' => createBoardlist($mod), - 'return' => ($mod ? '?' . $board['url'] . $config['file_index'] : $config['root'] . $board['dir'] . $config['file_index']) - )); - - if ($config['try_smarter'] && !$mod) - $build_pages[] = thread_find_page($id); + $body = Element('thread.html', array( + 'board' => $board, + 'thread' => $thread, + 'body' => $thread->build(), + 'config' => $config, + 'id' => $id, + 'mod' => $mod, + 'hasnoko50' => $hasnoko50, + 'isnoko50' => false, + 'antibot' => $antibot, + 'boardlist' => createBoardlist($mod), + 'return' => ($mod ? '?' . $board['url'] . $config['file_index'] : $config['root'] . $board['dir'] . $config['file_index']) + )); - // json api - if ($config['api']['enabled']) { - $api = new Api(); - $json = json_encode($api->translateThread($thread)); + // json api + if ($config['api']['enabled']) { + $api = new Api(); + $json = json_encode($api->translateThread($thread)); + $jsonFilename = $board['dir'] . $config['dir']['res'] . $id . '.json'; + file_write($jsonFilename, $json); + } + } + else { $jsonFilename = $board['dir'] . $config['dir']['res'] . $id . '.json'; - file_write($jsonFilename, $json); + file_unlink($jsonFilename); } - if ($return) { + if ($config['smart_build'] && !$return && !$mod) { + $noko50fn = $board['dir'] . $config['dir']['res'] . link_for(array('id' => $id), true); + file_unlink($noko50fn); + + file_unlink($board['dir'] . $config['dir']['res'] . link_for(array('id' => $id))); + } else if ($return) { return $body; } else { - $noko50fn = $board['dir'] . $config['dir']['res'] . sprintf($config['file_page50'], $id); + $noko50fn = $board['dir'] . $config['dir']['res'] . link_for($thread, true); if ($hasnoko50 || file_exists($noko50fn)) { buildThread50($id, $return, $mod, $thread, $antibot); } - file_write($board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $id), $body); + file_write($board['dir'] . $config['dir']['res'] . link_for($thread), $body); } } @@ -2131,7 +2322,7 @@ function buildThread50($id, $return = false, $mod = false, $thread = null, $anti if ($return) { return $body; } else { - file_write($board['dir'] . $config['dir']['res'] . sprintf($config['file_page50'], $id), $body); + file_write($board['dir'] . $config['dir']['res'] . link_for($thread, true), $body); } } @@ -2282,6 +2473,12 @@ function rDNS($ip_addr) { $host = $ip_addr; } + $isip = filter_var($host, FILTER_VALIDATE_IP); + + if ($config['fcrdns'] && !$isip && DNS($host) != $ip_addr) { + $host = $ip_addr; + } + if ($config['cache']['enabled']) cache::set('rdns_' . $ip_addr, $host); @@ -2394,3 +2591,89 @@ function diceRoller($post) { } } } + +function slugify($post) { + global $config; + + $slug = ""; + + if (isset($post['subject']) && $post['subject']) + $slug = $post['subject']; + elseif (isset ($post['body_nomarkup']) && $post['body_nomarkup']) + $slug = $post['body_nomarkup']; + elseif (isset ($post['body']) && $post['body']) + $slug = strip_html($post['body']); + + // Fix UTF-8 first + $slug = mb_convert_encoding($slug, "UTF-8", "UTF-8"); + + // Transliterate local characters like ü, I wonder how would it work for weird alphabets :^) + $slug = iconv("UTF-8", "ASCII//TRANSLIT//IGNORE", $slug); + + // Remove Tinyboard custom markup + $slug = preg_replace("/]+>.*?<\/tinyboard>/s", '', $slug); + + // Downcase everything + $slug = strtolower($slug); + + // Strip bad characters, alphanumerics should suffice + $slug = preg_replace('/[^a-zA-Z0-9]/', '-', $slug); + + // Replace multiple dashes with single ones + $slug = preg_replace('/-+/', '-', $slug); + + // Strip dashes at the beginning and at the end + $slug = preg_replace('/^-|-$/', '', $slug); + + // Slug should be X characters long, at max (80?) + $slug = substr($slug, 0, $config['slug_max_size']); + + // Slug is now ready + return $slug; +} + +function link_for($post, $page50 = false, $foreignlink = false, $thread = false) { + global $config, $board; + + $post = (array)$post; + + // Where do we need to look for OP? + $b = $foreignlink ? $foreignlink : (isset($post['board']) ? array('uri' => $post['board']) : $board); + + $id = (isset($post['thread']) && $post['thread']) ? $post['thread'] : $post['id']; + + $slug = false; + + if ($config['slugify'] && ( (isset($post['thread']) && $post['thread']) || !isset ($post['slug']) ) ) { + $cvar = "slug_".$b['uri']."_".$id; + if (!$thread) { + $slug = Cache::get($cvar); + + if ($slug === false) { + $query = prepare(sprintf("SELECT `slug` FROM ``posts_%s`` WHERE `id` = :id", $b['uri'])); + $query->bindValue(':id', $id, PDO::PARAM_INT); + $query->execute() or error(db_error($query)); + + $thread = $query->fetch(PDO::FETCH_ASSOC); + + $slug = $thread['slug']; + + Cache::set($cvar, $slug); + } + } + else { + $slug = $thread['slug']; + } + } + elseif ($config['slugify']) { + $slug = $post['slug']; + } + + + if ( $page50 && $slug) $tpl = $config['file_page50_slug']; + else if (!$page50 && $slug) $tpl = $config['file_page_slug']; + else if ( $page50 && !$slug) $tpl = $config['file_page50']; + else if (!$page50 && !$slug) $tpl = $config['file_page']; + + return sprintf($tpl, $id, $slug); +} diff --git a/inc/image.php b/inc/image.php index eb8eb79b..291f3e2a 100644 --- a/inc/image.php +++ b/inc/image.php @@ -330,6 +330,7 @@ class ImageConvert extends ImageBase { $convert_args = str_replace('-auto-orient', '', $config['convert_args']); else $convert_args = &$config['convert_args']; + if (($error = shell_exec_error(($this->gm ? 'gm ' : '') . 'convert ' . sprintf($convert_args, $this->width, @@ -361,10 +362,16 @@ class ImageConvert extends ImageBase { $this->width, $this->height, escapeshellarg($this->temp)))) || !file_exists($this->temp)) { - if (!file_exists($this->temp)) { - $this->destroy(); - error(_('Failed to resize image!'), null, $error); - } + + if (strpos($error, "known incorrect sRGB profile") === false && + strpos($error, "iCCP: Not recognizing known sRGB profile that has been edited") === false) { + $this->destroy(); + error(_('Failed to resize image!')." "._('Details: ').nl2br(htmlspecialchars($error)), null, array('convert_error' => $error)); + } + if (!file_exists($this->temp)) { + $this->destroy(); + error(_('Failed to resize image!'), null, $error); + } } if ($size = $this->get_size($this->temp)) { $this->width = $size[0]; diff --git a/inc/lib/Twig/Extensions/Extension/Tinyboard.php b/inc/lib/Twig/Extensions/Extension/Tinyboard.php index 81276147..028db438 100644 --- a/inc/lib/Twig/Extensions/Extension/Tinyboard.php +++ b/inc/lib/Twig/Extensions/Extension/Tinyboard.php @@ -45,7 +45,8 @@ class Twig_Extensions_Extension_Tinyboard extends Twig_Extension new Twig_SimpleFunction('hiddenInputsHash', 'hiddenInputsHash'), new Twig_SimpleFunction('ratio', 'twig_ratio_function'), new Twig_SimpleFunction('secure_link_confirm', 'twig_secure_link_confirm'), - new Twig_SimpleFunction('secure_link', 'twig_secure_link') + new Twig_SimpleFunction('secure_link', 'twig_secure_link'), + new Twig_SimpleFunction('link_for', 'link_for') ); } diff --git a/inc/lib/geoip/GeoIPv6.dat b/inc/lib/geoip/GeoIPv6.dat index 1c2658c5..c2f3f11b 100644 Binary files a/inc/lib/geoip/GeoIPv6.dat and b/inc/lib/geoip/GeoIPv6.dat differ diff --git a/inc/lib/webm/posthandler.php b/inc/lib/webm/posthandler.php index 308c7507..a5b7429b 100644 --- a/inc/lib/webm/posthandler.php +++ b/inc/lib/webm/posthandler.php @@ -21,7 +21,7 @@ function postHandler($post) { $file = set_thumbnail_dimensions($post, $file); $tn_path = $board['dir'] . $config['dir']['thumb'] . $file->file_id . '.jpg'; - if(empty(make_webm_thumbnail($file->file_path, $tn_path, $file->thumbwidth, $file->thumbheight))) { + if(false == make_webm_thumbnail($file->file_path, $tn_path, $file->thumbwidth, $file->thumbheight)) { $file->thumb = $file->file_id . '.jpg'; } else { diff --git a/inc/locale/ca/LC_MESSAGES/javascript.po b/inc/locale/ca/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..8d22a5a3 --- /dev/null +++ b/inc/locale/ca/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Joel C , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Catalan (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Estil:" + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "Fitxer" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "amagar" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "mostrar els threads bloquejats" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "amagar els threads bloquejats" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Seleccionar" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "Remot" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "Embed" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "amagat" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "Mostrar imatges" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Amagar imatges" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Contrasenya" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Eliminar només fitxer" + +#: ../../../../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 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Raó" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Denunciar" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Clica respondre per a mirar." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Clica per a expandir" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "Amagar respostes expandides" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Tamany de pinzell" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "col·locar text" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Borrar" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Guardar" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Carregar" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Act./Desact. Goma" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Obtenir color" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "omplir" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Utilitzar oekaki en comptes de fitxer?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Editar a oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Escriu alguna cosa" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Entra una font o deixa-ho buit" + +#: ../../../../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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +msgid "Forced anonymity" +msgstr "Anonimitat forçada" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +msgid "enabled" +msgstr "activat" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "desactivat" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "dg." + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "dl." + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "dt." + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "dc." + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "dj." + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "dv." + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "ds." + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Catàleg" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Entrar" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Resposta 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 "Mode de post: Responent a >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Tornar" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Expandir totes les imatges" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Hola!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} usuaris" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +msgid "(hide threads from this board)" +msgstr "(amaga els threads d'aquesta board)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(mostra els threads d'aquesta board)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "No hi ha més threads per a mostrar" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +msgstr "Carregant..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Guardar amb el nom de fitxer original" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "Post(s) denunciats." + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "Ha passat un error desconegut!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Alguna cosa ha anat malament... Ha passat un error desconegut!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Treballant..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Postejant... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Postejat..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Ha passat un error desconegut mentre postejaves!" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Postejant..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "Pujar URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Amagar la Imatge" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "Comentar" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +msgid "Quick Reply" +msgstr "Resposta 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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Stop watching this thread" +msgstr "Parar de mirar aquest thread" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Watch this thread" +msgstr "Mirar aquest thread" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Unpin this board" +msgstr "Desancorar aquesta board" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Pin this board" +msgstr "Ancorar aquesta board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Stop watching this board" +msgstr "Parar de mirar aquesta board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "mirar aquesta board" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Fes clic a qualsevol imatge d'aquesta pàgina per a carregar-la a l'applet oekaki" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Diumenge" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Dilluns" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Dimarts" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Dimecres" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Dijous" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "Divendres" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Dissabte" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "Gener" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "Febrer" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "Març" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "Abril" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "Maig" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "Juny" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "Juliol" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "Agost" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "Setembre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "Octubre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "Novembre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "Desembre" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "gen." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "febr." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "març" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "abr." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "juny" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "jul." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "ag." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "set." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "oct." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "nov." + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "des." + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "El teu navegador no suporta video en HTML5" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[reproduir una vegada]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[bucle]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "Opcions de WebM" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "Expandir videos" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "Reproduir videos en passar per sobre" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "Volum predeterminat" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "Vista d'arbre" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "Encongir totes les imatges" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "Animar GIFs" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "desanimar GIFs" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "No hi ha nous posts." + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "No hi ha nous threads." + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "Hi ha {0} nous threads." + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "Hi ha {0} nous posts en aquest thread." + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "Opcions" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "General" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "informació de navegació:" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "Exportar" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "Importar" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "Enganxar la teva informació de navegació" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "Borrar" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "Estas segur que vols borrar la teva informació? Això inclou els teus threads amagats, els threads que miraves la contrasenya dels posts i molt més." + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "CSS de l'usuari" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "Actualitzar el CSS personalitzat" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "Escriu aquí les teves propies normes de CSS" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "Si vols crear un estil redistribuïble, estigues segur de\n tenir un tema de Yotsuba B seleccionat." + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "Pots incluïr fitxers CSS des de servidor remots, per exemple:" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "JS de l'usuari" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "Actualitzar el Javascript personalitzat" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "Escriu aqui el teu propi codi de Javascript" + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "Tingues una còpia de seguretat de les teves dades a algun lloc, ja que al fer coses aquí pots fer que la pàgina es torni inutilitzable." + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "Pots incluïr fitxers JS des de servidors remots, per exemple:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/ca/LC_MESSAGES/tinyboard.po b/inc/locale/ca/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..5d7fb6fa --- /dev/null +++ b/inc/locale/ca/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3501 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Joel C , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Catalan (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ca/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "segon" +msgstr[1] "segons" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minut" +msgstr[1] "minuts" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "hores" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dies" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "setmana" +msgstr[1] "setmanes" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "any" +msgstr[1] "anys" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "Banejat!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "Següent" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "Error" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "S'ha produït un error." + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "Entrar" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "Post massa llarg. Clica here per veure el text sencer." + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "Banejar" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "Banejar & Eliminar" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "Eliminar fitxer" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "Estàs segur que vols eliminar aquest fitxer?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "Amagar fitxer" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "Estas segur que vols amagar aquest fitxer?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "Moure resposta a una altra board" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "Editar post" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "Eliminar" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "Estàs segur que vols eliminar això?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "Eliminar tots els posts per IP" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "Estàs segur que vols eliminar tots els posts amb aquesta adreça IP?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "Eliminar tots els posts amb aquesta adreça IP a totes les boards" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "Estàs segur que vols eliminar tots els posts amb aquesta adreça IP, a totes les boards?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "Desenganxar thread" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "Enganxar thread" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "Permetre bumps en aquest thread" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "No permetre bumps en aquest thread" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "Desbloquejar thread" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "Bloquejar thread" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +msgid "Move thread to another board" +msgstr "Moure thread a una altra board" + +#. 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 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "has estat silenciat per contingut no original." + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "Nou Tòpic" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "Respondre" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "Totes les marques registrades, drets de còpia, comentaris i imatges en aquesta pàgina pertanyen i són responsabilitat de cadascuna de les respectives empreses" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Mira una mica més abans de postejar." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "Sembles un bot." + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "El teu navegador no ha enviat cap referent HTTP, o un d'invàlid." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "El camp %s és massa llarg." + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "El cos és massa llarg." + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "El cos era massa curt o buit." + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "Has de pujar una imatge." + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "El servidor ha fallat en pujar el fitxer." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "Format d'imatge no suportat." + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "Board invàlida!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "El thread especificat no existeix." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "Thread bloquejat. No pots respondre ara mateix." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "El thread ha arribat al màxim de respostes possibles." + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "El thread ha arribat al límit d'imatges." + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "No has fet cap post." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "Inundacio detectada. Post descartat." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "La teva petició sembla automatitzada; Post descartat." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "Contngut no original!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Contingut no original! Has estat silenciat per %d segons" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "Has estat silenciat! Expira en %d segons." + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "La teva adreça IP està llistada a %s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "Masses links; inundació detectada." + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "Massa ciutats; post descartat." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "Massa links de diferents boards; ; post descartat." + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "No has seleccionat res per a eliminar." + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "No has seleccionat res per a denunciar." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "no pots denunciar tants posts a la vegada." + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "Contrasenya incorrecta..." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "Imatge invàlida." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "Extensió de fitxer desconeguda." + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "Tamany de fitxer màxim: %maxsz% bytes
Tamany del teu fitxer: %filesz% bytes" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "El fitxer és massa gran." + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "Aquest fitxer ja existeix!" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "Aquest fitxer ja existeix en aquest thread!" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "Hauràs d'esperar uns altres %s abans de fer això." + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "MIME type detection XSS exploit (IE) detected; post descartat." + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "No s'ha pogut donar sentit a la URL del vídeo que has intentat integrar." + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "Sembles haver escrit malament la verificació." + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "Només estàs permès de desbanejar %s usuaris alhora. Has intentat desbanejar %u usuaris." + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "Nom d'usuari i/o contrasenya invàlids." + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "No ets un mod..." + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "Nom d'usuari i/o contrasenya invàlids. El teu usuari ha pogut ser eliminat o canviat." + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "Cookies invàlides/malmeses" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "El teu navegado no ha entrat res quan ho hauria d'haver fet." + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "El camp %s és obligatori." + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "El camp %s és invàlid." + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "Ja hi ha una board de %s." + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "No tens permís per a fer això." + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "Aquest post no existeix..." + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "Pàgina no trobada." + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "Aquest mod ja existeix!" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "Aquest tema no existeix!" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "token de seguretat invàlid! Si us plau, torna-ho a provar." + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "USER WAS BANNED FOR THIS POST" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "Confirmar acció" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "No s´ha pogut trobar la versió actual! (Check .installed)" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "Panell de control" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "No hi ha boards per a buscar!" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "Resultats de cerca" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "Editar board" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "No s'ha pogut obrir la board després de la creació." + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "Nova board" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "Tauler d'anuncis" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "Notícies" + +#: ../../../../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 "Diari de navegació de moderació" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +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 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "Nou ban" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "Llista de bans" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "Moure resposta" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "La board de destí i la font, són la mateixa." + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "Impossible moure el thread; només hi ha una board." + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "Moure el thread" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "Editar usuari" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "Gestionar usuaris" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "Nou Missatge Privat per a" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "Missatge Privat " + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "safata de Missatges Privats" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "Reconstruir" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "Denunciar cua" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "Editor de Config" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "El directori de temes no existeix!" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "No es pot obrir el directori de temes; comprovar permisos." + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "Gestionar temes" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "Tema instal·lat: %s" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "Configurant tema: %s" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "Reconstruir tema: %s" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "Debug: Anti-spam" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "Debug: Posts recents" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "Debug: SQL" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "Error de base de dades:" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "Banejat?" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "No estas banejat." + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "Anar enrere." + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "Error d'Informació" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "Eliminar Post" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "Fitxer" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "Contrasenya" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "Raó" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "Denunciar" + +#: ../../../../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 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "Tornar a panell de control" + +#. 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 "Mode de post: Resposta" + +#: ../../../../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 "Enrere" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "(No hi ha noticies per a 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 "sense tema" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "per" + +#. 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 "a" + +#. 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 resposta" +msgstr[1] "%count% respostes" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "Fitxer:" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "Amagar Imatge" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "Respondre" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "Mostra Tots" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "Últim post" +msgstr[1] "Últims %count% Posts" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "1 post" +msgstr[1] "%count% posts" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "i" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "1 resposta d'imatge" +msgstr[1] "%count% respostes d'imatge" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "omès. Clica respondre per a veure." + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "Nom" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:44 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:88 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "Email" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "Tema" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "Actualitzar" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "Comentari" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "Actualment editant un raw HTML." + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "Editar markup en comptes?" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "Editar raw HTML en comptes?" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "Verificació" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "O URL" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "Embed" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "Banderes" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "Enganxar" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "Bloquejar" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "Raw HTML" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "(Per a eliminació de fitxer.)" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "Cerca de post desactivada" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "Espera una estona abans de buscar, si us plau." + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "Consulta massa àmplia." + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "%d resultat en" +msgstr[1] "%d resultats en" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "Cap resultat." + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "Buscar" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "Apel·lació de ban no trobada!" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "Apel·lacions de bans" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "Nou usuari" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "Impossible promoure/degradar usuari." + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "Debug: APC" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "El teu codi contenir errors de sintàxi de PHP. Torna enrere i corregeix-los. El PHP diu: " + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "Boards" + +#: ../../../../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 una board nova" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "Missatges" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "Veure totes les entrades al tauler d'anuncis" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "Administració" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "Canviar contrasenya" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "Configuració" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "Altres" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "Debug" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "Anti-spam" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "Posts recents" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "SQL" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "Compte d'usuari" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "Sortir" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "Nou post" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "Cos" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "Publicar al tauler d'anuncis" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "eliminar" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "eliminat?" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "Nova entrada de notícies" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "Staff" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "Nota" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "Data" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "Accions" + +#. 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 "Nova nota" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. 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 "Estat" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "Expirat" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "Actiu" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "cap raó" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "Board" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "totes les boards" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "Col·locar" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "Expira" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "mai" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "Vist" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "Sí" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "No" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "Treure ban" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "Temps" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "Acció" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "(o subnet)" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "amagat" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "Missatge" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "public; junt amb el post" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "Llargada" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "Nou Ban" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "Frase:" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "Posts" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "Notes de l'adreça 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 "(Els resultats de la cerca canvien si escrius en majúscules o minuscules. Per a fer coincidir frases exactes utilitza \"comes\". Usa un asterisc (*) per excloïr.)" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "No hi ha bans actius." + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "Adreça IP/màscara" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "Durada" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "Desbanejar seleccionat" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "Nom d'usuari" + +#. 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 "Temps d'apel·lació" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "Raó d'apel·lació" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "No hi ha cap denuncia." + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "Aquest ban no existeis o no és per a tu." + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "no pots apel·lar un ban d'aquesta llargada." + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "No pots apel·lar aquest ban una altra vegada" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "Ja hi ha una apel·lació pendent per a aquest ban." + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "Format de fitxer no suportat:" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "Error al redibuixar la imatge!" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "Error el canviar la mida de la imatge!" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "Has estat banejat! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "Estàs banejat! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "Has estat banejat de" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "Has estat banejat de" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "per la següent raó:" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "per una raó no especificada." + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "El teu ban ha estat presentat el" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "des de llavors, ha expirat. Refresca la pàgina per a continuar." + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "expira" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "des d'ara, que es el" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "no expirarà" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "La teva adreça IP és" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "Has estat banejat per al següent post a" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "Has enviat una petició d'apel·lació per aquest ban el" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "Encara està pendent" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "Has apel·lat aquest ban el" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "i ha sigut denegat. No podràs apel·lar aquest ban una altra vegada." + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "Has entrar el màxim nombre d'apel·lacions de ban. No hauries d'apel·lar aquest ban cap altra vegada." + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "i ha sigut denegat." + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "Pots apel·lar aquest ban una altra vegada. Si us plau escriu una raó a sota." + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "La última vegada que vas apel·lar aquest ban va ser el" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "Pots apel·lar aquest ban. Si us plau escriu una raó a sota." + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "adreça 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 "Tipus" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "Última acció" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "Desconegut" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "cap" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "Promoure" + +#: ../../../../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 segur que vold degradar-te a tu mateix?" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "log" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "PM" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "ID de thread" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "Marxar de thread a l'ombra" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "bloqueja el thread; respon amb un link." + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "Board de destí" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "Seleccionar board" + +#. 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 "Estàs segur que vols fer això?" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "Clica endavant per 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 "Probablement estàs veient aquest missatge perque Javascript està desactivat. Aquesta és una mesura de seguretat necessària per a preveure atacs CSRF." + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "Data de denuncia" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "Denunciat per" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "Descartar abús de denuncia" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "Descartar totes les denuncies d'aquesta adreça IP." + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "De" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "Eliminar per sempre" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "Respondre amb cita" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "Enviar missatge" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "No hi ha temes disponibles." + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "Versió" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "Descripció" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "Miniatura" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "Utilitzar tema" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "Reconfigurar" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "Instal·lar" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "Desinstal·lar" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "nou; opcional" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "Grup" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "Totes les boards" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "Crear usuari" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "Guardar canvis" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "Eliminar usuari" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "Veure més logs per aquest usuari" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "Bandera" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "Cap" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "Mogut a %s." + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "No es pot construir el tema RecentPosts, perquè no hi ha boards per a ser recollides." + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "has intentat pujar massa imatges!" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "Amagar fitxer" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "Ordre de bumps" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "Última resposta" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "Data de creació" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "Recompte de respostes" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "Random" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "Classificaar per" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "Tamany d'imatge" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "Petit" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "Gran" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "Post ID" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "Thread de destí" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "La eliminació de posts no està permesa!" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "Mètode de determinació de tamany de fitxer no reconegut." + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "Selecció de bandera invàlida!" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "exiftool ha fallat!" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "no s'ha pogut auto-orientar la imatge!" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "Hi ha hagut un problema processant el teu webm!" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "webm invalid pujat." + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "El webm pujat conté audio o una altre tipus de stream." + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "El webm pujat és més llarg que" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "Anar cap amunt" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "No mostrar bandera" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "Molt petit" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/cs_CZ/LC_MESSAGES/javascript.po b/inc/locale/cs_CZ/LC_MESSAGES/javascript.po index 05f37346..96c18f4b 100644 --- a/inc/locale/cs_CZ/LC_MESSAGES/javascript.po +++ b/inc/locale/cs_CZ/LC_MESSAGES/javascript.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgid "Delete" msgstr "Smazat" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Důvod" @@ -213,43 +213,45 @@ msgid "disabled" msgstr "vypnuto" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Ne" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Po" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Út" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "St" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Čt" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Pá" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "So" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "" @@ -317,6 +319,7 @@ msgstr "Nejsou žádná další vlákna k zobrazení" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Načítám..." @@ -433,139 +436,140 @@ msgstr "" msgid "Click on any image on this site to load it into oekaki applet" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "" @@ -604,16 +608,19 @@ msgid "Tree view" msgstr "" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "" @@ -716,3 +723,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo index 54133e91..45fa60bf 100644 Binary files a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo and b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po index 42ec68f5..4ec3f2aa 100644 --- a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po +++ b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -26,12 +26,14 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "sekunda" msgstr[1] "sekundy" msgstr[2] "sekund" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -41,12 +43,14 @@ msgstr[2] "sekund" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minuta" msgstr[1] "minuty" msgstr[2] "minut" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -56,12 +60,14 @@ msgstr[2] "minut" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "hodina" msgstr[1] "hodiny" msgstr[2] "hodin" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -71,12 +77,14 @@ msgstr[2] "hodin" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "den" msgstr[1] "dny" msgstr[2] "dnů" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -86,6 +94,7 @@ msgstr[2] "dnů" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "týden" @@ -101,6 +110,7 @@ msgstr[2] "týdnů" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "rok" @@ -111,7 +121,7 @@ msgstr[2] "let" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Máš ban!" @@ -125,6 +135,7 @@ msgstr "Máš ban!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Předchozí" @@ -138,7 +149,8 @@ msgstr "Předchozí" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Další" @@ -229,7 +241,8 @@ msgstr "Přesunout odpověď na jiný board" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Upravit příspěvek" @@ -326,6 +339,7 @@ msgstr "Přesunout vlákno na jiný board" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Byl jsi umlčen za neoriginální obsah." @@ -337,6 +351,7 @@ msgstr "Byl jsi umlčen za neoriginální obsah." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nové téma" @@ -344,6 +359,7 @@ msgstr "Nové téma" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Nová odpověď" @@ -352,6 +368,7 @@ msgstr "Nová odpověď" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -377,6 +394,7 @@ msgstr "Než něco pošleš, zjisti si, jak to tu chodí." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Vypadáš jako robot." @@ -384,6 +402,7 @@ msgstr "Vypadáš jako robot." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Tvůj prohlížeč neposlal žádný nebo poslal neplatný HTTP referer." @@ -391,6 +410,7 @@ msgstr "Tvůj prohlížeč neposlal žádný nebo poslal neplatný HTTP referer. #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "Pole %s je příliš dlouhé." @@ -399,6 +419,7 @@ msgstr "Pole %s je příliš dlouhé." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Tělo je příliš dlouhé." @@ -406,6 +427,7 @@ msgstr "Tělo je příliš dlouhé." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Tělo je příliš krátké nebo prázdné." @@ -413,6 +435,7 @@ msgstr "Tělo je příliš krátké nebo prázdné." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Musíš nahrát obrázek." @@ -420,6 +443,7 @@ msgstr "Musíš nahrát obrázek." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Server nedokázal zpracovat tvůj upload." @@ -427,6 +451,7 @@ msgstr "Server nedokázal zpracovat tvůj upload." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Nepodporovaný formát obrázku." @@ -434,6 +459,7 @@ msgstr "Nepodporovaný formát obrázku." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Neplatný board!" @@ -441,6 +467,7 @@ msgstr "Neplatný board!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Dané vlákno neexistuje." @@ -448,6 +475,7 @@ msgstr "Dané vlákno neexistuje." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Vlákno bylo zamknuto. Teď na něj nemůžeš odpovídat." @@ -455,6 +483,7 @@ msgstr "Vlákno bylo zamknuto. Teď na něj nemůžeš odpovídat." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Vlákno dosáhlo limit na počet odpovědí." @@ -462,6 +491,7 @@ msgstr "Vlákno dosáhlo limit na počet odpovědí." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Vlákno dosáhlo limit na počet obrázků." @@ -469,6 +499,7 @@ msgstr "Vlákno dosáhlo limit na počet obrázků." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Nic jsi neposlal." @@ -476,6 +507,7 @@ msgstr "Nic jsi neposlal." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Detekován flood; příspěvek zahozen." @@ -483,6 +515,7 @@ msgstr "Detekován flood; příspěvek zahozen." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Tvůj požadavek vypadá strojově; příspěvek zahozen." @@ -490,6 +523,7 @@ msgstr "Tvůj požadavek vypadá strojově; příspěvek zahozen." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Neoriginální obsah!" @@ -497,6 +531,7 @@ msgstr "Neoriginální obsah!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Neoriginální obsah! Byl jsi na %d sekund umlčen." @@ -505,6 +540,7 @@ msgstr "Neoriginální obsah! Byl jsi na %d sekund umlčen." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Byl jsi umlčen! Mluvit budeš moct až za %d sekund." @@ -513,6 +549,7 @@ msgstr "Byl jsi umlčen! Mluvit budeš moct až za %d sekund." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Tvoje IP adresa figuruje v %s." @@ -521,6 +558,7 @@ msgstr "Tvoje IP adresa figuruje v %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Příliš mnoho odkazů; detekován flood." @@ -528,6 +566,7 @@ msgstr "Příliš mnoho odkazů; detekován flood." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Příliš mnoho citací; příspěvek zahozen." @@ -535,6 +574,7 @@ msgstr "Příliš mnoho citací; příspěvek zahozen." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Příliš mnoho odkazů napříč boardy; příspěvek zahozen." @@ -542,6 +582,7 @@ msgstr "Příliš mnoho odkazů napříč boardy; příspěvek zahozen." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Nevybral jsi nic ke smazání." @@ -549,6 +590,7 @@ msgstr "Nevybral jsi nic ke smazání." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Nevybral jsi nic k nahlášení." @@ -556,6 +598,7 @@ msgstr "Nevybral jsi nic k nahlášení." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Nemůžeš nahlásit tolik příspěvků najednou." @@ -563,6 +606,7 @@ msgstr "Nemůžeš nahlásit tolik příspěvků najednou." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Špatné heslo…" @@ -570,6 +614,7 @@ msgstr "Špatné heslo…" #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Neplatný obrázek." @@ -577,6 +622,7 @@ msgstr "Neplatný obrázek." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Neznámá přípona souboru." @@ -584,6 +630,7 @@ msgstr "Neznámá přípona souboru." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maximální velikost souboru: %maxsz% bajtů
Velikost tvého souboru: %filesz% bajtů" @@ -591,6 +638,7 @@ msgstr "Maximální velikost souboru: %maxsz% bajtů
Velikost tvého souboru: #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Soubor je příliš velký." @@ -598,6 +646,7 @@ msgstr "Soubor je příliš velký." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Tenhle soubor už tu je!" @@ -606,6 +655,7 @@ msgstr "Tenhle soubor už tu je!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Tenhle soubor tu už v tomhle vláknu je!" @@ -614,6 +664,7 @@ msgstr "Tenhle soubor tu už v tomhle vláknu je!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Než to budeš moct smazat, budeš muset počkat ještě %s." @@ -622,6 +673,7 @@ msgstr "Než to budeš moct smazat, budeš muset počkat ještě %s." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "Detekován MIME type detection XSS exploit (IE); příspěvek zahozen." @@ -629,6 +681,7 @@ msgstr "Detekován MIME type detection XSS exploit (IE); příspěvek zahozen." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "Nechápu URL videa, co jsi zkusil vložit." @@ -636,6 +689,7 @@ msgstr "Nechápu URL videa, co jsi zkusil vložit." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Asi jsi se upsal u ověření." @@ -644,6 +698,7 @@ msgstr "Asi jsi se upsal u ověření." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -654,6 +709,7 @@ msgstr "Najednou můžeš odbanovat jen %s uživatel. Zkusil jsi jich odbanovat #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Neplatné uživatelské jméno a/nebo heslo." @@ -661,6 +717,7 @@ msgstr "Neplatné uživatelské jméno a/nebo heslo." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Nejsi moderátor…" @@ -668,6 +725,7 @@ msgstr "Nejsi moderátor…" #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -677,6 +735,7 @@ msgstr "Neplatné uživatelské jméno a/nebo heslo. Tvůj uživatel mohl být s #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Neplatné cookies." @@ -684,6 +743,7 @@ msgstr "Neplatné cookies." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Tvůj prohlížeč něco neposlal, i když by měl." @@ -691,6 +751,7 @@ msgstr "Tvůj prohlížeč něco neposlal, i když by měl." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Pole %s je povinné." @@ -699,6 +760,7 @@ msgstr "Pole %s je povinné." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Pole %s je neplatné." @@ -707,6 +769,7 @@ msgstr "Pole %s je neplatné." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Board %s už tu je." @@ -715,6 +778,7 @@ msgstr "Board %s už tu je." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Na to nemáš oprávnění." @@ -722,6 +786,7 @@ msgstr "Na to nemáš oprávnění." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Ten příspěvek neexistuje…" @@ -729,6 +794,7 @@ msgstr "Ten příspěvek neexistuje…" #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Stránka nenalezena." @@ -736,6 +802,7 @@ msgstr "Stránka nenalezena." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Tento moderátor už existuje!" @@ -744,6 +811,7 @@ msgstr "Tento moderátor už existuje!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Toto téma neexistuje!" @@ -751,6 +819,7 @@ msgstr "Toto téma neexistuje!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Neplatný bezpečností token! Vrať se, prosím, a zkus to znova." @@ -764,6 +833,7 @@ msgstr "Neplatný bezpečností token! Vrať se, prosím, a zkus to znova." #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "UŽIVATEL ZA PŘÍSPĚVEK DOSTAL BAN" @@ -850,10 +920,14 @@ msgstr "Log moderací" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -862,11 +936,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Nový ban" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Banlist" @@ -874,17 +952,20 @@ msgstr "Banlist" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Přesunout odpověď" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Cílový a zdrojový board se shodují." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Vlákno nelze přesunout; je tu jen jeden board." @@ -892,18 +973,20 @@ msgstr "Vlákno nelze přesunout; je tu jen jeden board." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Přesunout vlákno" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Upravit uživatele" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Správa uživatel" @@ -912,11 +995,13 @@ msgstr "Správa uživatel" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Nová SZ pro" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Soukromá zpráva" @@ -924,6 +1009,7 @@ msgstr "Soukromá zpráva" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Schránka SZ" @@ -934,12 +1020,14 @@ msgstr "Schránka SZ" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Přebudovat" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Fronta nahlášených příspěvků" @@ -947,55 +1035,66 @@ msgstr "Fronta nahlášených příspěvků" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Editor konfigurace" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Adresář s tématy neexistuje!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Nemůžu otevřít adresář s tématy; prověř oprávnění." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Správa témat" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Nainstalované téma: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Konfiguruju téma: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Téma přebudováno: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug: Antispam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug: Poslední příspěvky" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug: SQL" @@ -1063,6 +1162,10 @@ msgstr "Smazat příspěvek" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1097,6 +1200,8 @@ msgstr "Soubor" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1176,6 +1281,12 @@ msgstr "Heslo" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1248,6 +1359,8 @@ msgstr "bez předmětu" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "od" @@ -1299,6 +1412,7 @@ msgstr "Zakrýt obrázek" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Odpovědět" @@ -1310,6 +1424,7 @@ msgstr "Odpovědět" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "" @@ -1321,6 +1436,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "" @@ -1335,6 +1451,7 @@ msgstr[2] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "%count% příspěvek" @@ -1350,6 +1467,8 @@ msgstr[2] "%count% příspěvků" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "a" @@ -1361,6 +1480,7 @@ msgstr "a" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "%count% obrázková odpověď" @@ -1375,6 +1495,7 @@ msgstr[2] "%count% obrázkových odpovědí" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "vynecháno. Klikni na Odpovědět pro zobrazení." @@ -1403,6 +1524,9 @@ msgstr "vynecháno. Klikni na Odpovědět pro zobrazení." #. line 7 #. 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 @@ -1426,6 +1550,8 @@ msgstr "Jméno" #. 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 @@ -1460,6 +1586,9 @@ msgstr "Email" #. line 23 #. line 12 #. 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 @@ -1488,6 +1617,8 @@ msgstr "Aktualizovat" #. 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 @@ -1579,6 +1710,10 @@ msgstr "Flagy" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1623,6 +1758,10 @@ msgstr "Přilepené" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1667,6 +1806,10 @@ msgstr "Zamknout" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1766,6 +1909,12 @@ msgstr "Žádné výsledky." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1774,38 +1923,43 @@ msgstr "Žádné výsledky." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Hledat" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "" #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1824,6 +1978,9 @@ msgstr "" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1889,7 +2046,8 @@ msgstr "Antispam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Poslední příspěvky" @@ -2034,6 +2192,15 @@ msgstr "" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2073,6 +2240,9 @@ msgstr "Personál" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2092,6 +2262,8 @@ msgstr "Poznámka" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2134,6 +2306,8 @@ msgstr "Nová poznámka" #. 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" @@ -2228,6 +2402,15 @@ msgstr "bez důvodu" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2283,6 +2466,9 @@ msgstr "všechny boardy" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2321,6 +2507,9 @@ msgstr "Nastavit" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2367,6 +2556,9 @@ msgstr "nikdy" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2411,6 +2603,10 @@ msgstr "Sundat ban" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2450,6 +2646,11 @@ msgstr "Čas" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2511,6 +2712,8 @@ msgstr "Nový ban" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2567,6 +2770,7 @@ msgstr "Doba trvání" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Vybrán unban" @@ -2584,6 +2788,9 @@ msgstr "Vybrán unban" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2639,7 +2846,7 @@ msgstr "" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "" @@ -2673,41 +2880,54 @@ msgid "Your ban was filed on" msgstr "Tvůj ban byl zadán" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "od té doby už vypršel. Pro pokračování obnov stránku." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "vyprší za" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "což je v" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "nevyprší" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Tvoje IP adresa je" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "" @@ -2729,21 +2949,28 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2767,10 +2994,14 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "" @@ -2792,21 +3023,28 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "" @@ -2825,6 +3063,10 @@ msgstr "" #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2893,6 +3135,8 @@ msgstr "zamkne vlákno; odpovědi přes odkaz." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3052,7 +3296,8 @@ msgstr "" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "" @@ -3064,6 +3309,7 @@ msgid "" msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3078,6 +3324,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3100,6 +3350,10 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3113,6 +3367,10 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3126,6 +3384,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3195,20 +3457,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3225,3 +3493,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/da_DK/LC_MESSAGES/javascript.js b/inc/locale/da_DK/LC_MESSAGES/javascript.js index d73a228a..bcda394e 100644 --- a/inc/locale/da_DK/LC_MESSAGES/javascript.js +++ b/inc/locale/da_DK/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"Stil","File":"Fil","hide":"skjul","show":"vis","Show locked threads":"Vis l\u00e5ste tr\u00e5de","Hide locked threads":"Skjul l\u00e5ste tr\u00e5de","URL":"URL","Embed":"Indlejr","Oekaki":"Oekaki","hidden":"Skjult","Show images":"Vis billeder","Hide images":"Skjul billeder","Password":"Adgangskode","Delete file only":"Slet kun fil","Delete":"Slet","Reason":"Grund","Report":"Anmeld","Click reply to view.":"Klik svar for at vise","Click to expand":"Klik for at udvide","Hide expanded replies":"Skjul udvidede svar","Brush size":"Penselst\u00f8rrelse","Clear":"Ryd","Save":"Gem","Load":"Indl\u00e6s","Get color":"L\u00e6s farve","Use oekaki instead of file?":"Brug oekaki istedet for fil?","Edit in oekaki":"Redig\u00e9r i oekaki","Enter some text":"Skriv noget","Enter font or leave empty":"V\u00e6lg skrifttype eller lad st\u00e5 tomt","Forced anonymity":"Tvungen anonymitet","enabled":"aktiveret","disabled":"deaktiveret","Sun":"s\u00f8n","Mon":"man","Tue":"tir","Wed":"ons","Thu":"tor","Fri":"fre","Sat":"l\u00f8r","Catalog":"Katalog","Submit":"Send","Quick reply":"Hurtigt svar","Posting mode: Replying to >>{0}<\/small>":"Post tilstand: Svar til >:>{0}<\/small>","Expand all images":"Udvid alle billeder","Hello!":"Hej!","{0} users":"{0} brugere","(hide threads from this board)":"(skjul tr\u00e5de fra dette board)","(show threads from this board)":"(vis tr\u00e5de fra dette board)","No more threads to display":"Ikke flere tr\u00e5de at vise","Loading...":"Indl\u00e6ser...","Save as original filename":"Gem under oprindelige filnavn","Reported post(s).":"Anmeldte post(s).","An unknown error occured!":"Der forekom en ukendt fejl!","Something went wrong... An unknown error occured!":"Noget gik galt... Der forekom en ukendt fejl!","Working...":"Arbjeder...","Posting... (#%)":"Poster... (#%)","Posted...":"Postet...","Posting...":"Poster...","Upload URL":"Upload URL","Comment":"Kommentar","Quick Reply":"Hurtigt Svar","Stop watching this thread":"Stop med at f\u00f8lge denne tr\u00e5d","Watch this thread":"F\u00f8lg tr\u00e5d","Unpin this board":"Frig\u00f8r dette board","Pin this board":"Fastg\u00f8r dette board","Stop watching this board":"Stop med at f\u00f8lge dette board","Watch this board":"F\u00f8lg dette board","Click on any image on this site to load it into oekaki applet":"Klik p\u00e5 et billede p\u00e5 siden for at indl\u00e6se det til oekaki appletten","Sunday":"s\u00f8ndag","Monday":"mandag","Tuesday":"tirsdag","Wednesday":"onsdag","Thursday":"torsdag","Friday":"fredag","Saturday":"l\u00f8rdag","January":"januar","February":"februar","March":"marts","April":"april","May":"maj","June":"juni","July":"juli","August":"august","September":"september","October":"oktober","November":"november","December":"december","Jan":"jan","Feb":"feb","Mar":"mar","Apr":"apr","Jun":"jun","Jul":"jul","Aug":"aug","Sep":"sep","Oct":"okt","Nov":"nov","Dec":"dec","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Din browser underst\u00f8tter ikke HTML5 video","[play once]":"[afspil en gang]","[loop]":"[gentag]","WebM Settings":"WebM indstillinger","Play videos on hover":"Afspil videoer n\u00e5r musen f\u00f8res over dem","Default volume":"Standard lydstyrke"}; \ No newline at end of file +l10n = {"Style: ":"Stil:","File":"Fil","hide":"skjul","show":"vis","Show locked threads":"Vis l\u00e5ste tr\u00e5de","Hide locked threads":"Skjul l\u00e5ste tr\u00e5de","URL":"URL","Select":"V\u00e6lg","Embed":"Indlejr","Oekaki":"Oekaki","hidden":"skjult","Show images":"Vis billeder","Hide images":"Skjul billeder","Password":"Adgangskode","Delete file only":"Slet kun fil","Delete":"Slet","Reason":"Grund","Report":"Anmeld","Click reply to view.":"Klik svar for at vise","Click to expand":"Klik for at udvide","Hide expanded replies":"Skjul udvidede svar","Brush size":"Penselst\u00f8rrelse","Set text":"S\u00e6t tekst","Clear":"Ryd","Save":"Gem","Load":"Indl\u00e6s","Get color":"L\u00e6s farve","Fill":"Fyld","Use oekaki instead of file?":"Brug oekaki i stedet for fil?","Edit in oekaki":"Redig\u00e9r i oekaki","Enter some text":"Skriv noget","Enter font or leave empty":"V\u00e6lg skrifttype eller lad st\u00e5 tomt","Forced anonymity":"Tvungen anonymitet","enabled":"aktiveret","disabled":"deaktiveret","Sun":"s\u00f8n","Mon":"man","Tue":"tir","Wed":"ons","Thu":"tor","Fri":"fre","Sat":"l\u00f8r","Catalog":"Katalog","Submit":"Send","Quick reply":"Hurtigt svar","Posting mode: Replying to >>{0}<\/small>":"Indl\u00e6gstype: Svar til >:>{0}<\/small>","Return":"Tilbage","Expand all images":"Udvid alle billeder","Hello!":"Hej!","{0} users":"{0} brugere","(hide threads from this board)":"(skjul tr\u00e5de fra dette board)","(show threads from this board)":"(vis tr\u00e5de fra dette board)","No more threads to display":"Ikke flere tr\u00e5de at vise","Loading...":"Indl\u00e6ser...","Save as original filename":"Gem under oprindelige filnavn","Reported post(s).":"Anmeldte indl\u00e6g.","An unknown error occured!":"Der forekom en ukendt fejl!","Something went wrong... An unknown error occured!":"Noget gik galt... Der forekom en ukendt fejl!","Working...":"Arbjeder...","Posting... (#%)":"L\u00e6gger ind... (#%)","Posted...":"Lagt ind...","An unknown error occured when posting!":"En ukendt fejl opstod ved indl\u00e6gning!","Posting...":"L\u00e6gger ind...","Upload URL":"Upload URL","Spoiler Image":"Skjul Billede","Comment":"Kommentar","Quick Reply":"Hurtigt Svar","Stop watching this thread":"Stop med at f\u00f8lge denne tr\u00e5d","Watch this thread":"F\u00f8lg tr\u00e5d","Unpin this board":"Frig\u00f8r dette board","Pin this board":"Fastg\u00f8r dette board","Stop watching this board":"Stop med at f\u00f8lge dette board","Watch this board":"F\u00f8lg dette board","Click on any image on this site to load it into oekaki applet":"Klik p\u00e5 et billede p\u00e5 siden for at indl\u00e6se det til oekaki appletten","Sunday":"s\u00f8ndag","Monday":"mandag","Tuesday":"tirsdag","Wednesday":"onsdag","Thursday":"torsdag","Friday":"fredag","Saturday":"l\u00f8rdag","January":"januar","February":"februar","March":"marts","April":"april","May":"maj","June":"juni","July":"juli","August":"august","September":"september","October":"oktober","November":"november","December":"december","Jan":"jan","Feb":"feb","Mar":"mar","Apr":"apr","Jun":"jun","Jul":"jul","Aug":"aug","Sep":"sep","Oct":"okt","Nov":"nov","Dec":"dec","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Din browser underst\u00f8tter ikke HTML5 video","[play once]":"[afspil en gang]","[loop]":"[gentag]","WebM Settings":"WebM indstillinger","Expand videos inline":"Indlejr videoer","Play videos on hover":"Afspil videoer n\u00e5r musen f\u00f8res over dem","Default volume":"Standard lydstyrke","Tree view":"Tr\u00e6visning","Shrink all images":"Skrump alle billeder","Animate GIFs":"Anim\u00e9r GIF-billeder","Unanimate GIFs":"Hold op med at animere GIF-billeder","WebM":"WebM","No new posts.":"Ingen nye indl\u00e6g.","No new threads.":"Ingen nye tr\u00e5de.","There are {0} new threads.":"Der er {0} nye tr\u00e5de.","There are {0} new posts in this thread.":"Der er {0} nye indl\u00e6g i denne tr\u00e5d.","Options":"Indstillinger","General":"Generelt","Storage: ":"Oplagring:","Export":"Eksport\u00e9r","Import":"Import\u00e9r","Paste your storage data":"Inds\u00e6t dit oplagrede data","Erase":"Udvisk","":"Hav en backup af dit oplargring et sted, da at rode h\u00e9r kanng\u00f8re den her webside uanvendelig for dig.","User CSS":"Bruger-CSS","Update custom CSS":"Opdat\u00e9r brugerdefineret CSS","Enter here your own CSS rules...":"Skriv dine egne CSS-regler h\u00e9r...","You can include CSS files from remote servers, for example:":"Du kan bruge CSS-filer fra andre servere, for eksempel:","User JS":"Bruger-JS","Update custom Javascript":"Opdat\u00e9r brugerdefineret Javascript","Enter here your own Javascript code...":"Skriv din egen Javascript-kode h\u00e9r...","You can include JS files from remote servers, for example:":"Du kan bruge JS-filer fra andre servere, for eksempel:"}; \ No newline at end of file diff --git a/inc/locale/da_DK/LC_MESSAGES/javascript.po b/inc/locale/da_DK/LC_MESSAGES/javascript.po index 182c860a..8381d729 100644 --- a/inc/locale/da_DK/LC_MESSAGES/javascript.po +++ b/inc/locale/da_DK/LC_MESSAGES/javascript.po @@ -4,12 +4,13 @@ # # Translators: # sildeperker , 2014 +# Vladislav Višnevskij Petersen , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -20,7 +21,7 @@ msgstr "" #: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 msgid "Style: " -msgstr "Stil" +msgstr "Stil:" #: ../../../../js/hide-images.js:50 ../../../../js/upload-selection.js:51 #: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:51 @@ -69,7 +70,7 @@ msgstr "URL" #: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 #: ../../../../js/upload-selection.js:68 msgid "Select" -msgstr "" +msgstr "Vælg" #: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 #: ../../../../js/upload-selection.js:71 @@ -89,7 +90,7 @@ msgstr "Oekaki" #: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 #: ../../../../js/toggle-images.js:45 msgid "hidden" -msgstr "Skjult" +msgstr "skjult" #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 @@ -119,7 +120,7 @@ msgid "Delete" msgstr "Slet" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Grund" @@ -148,7 +149,7 @@ msgstr "Penselstørrelse" #: ../../../../js/oekaki.js:10 msgid "Set text" -msgstr "" +msgstr "Sæt tekst" #: ../../../../js/oekaki.js:10 msgid "Clear" @@ -172,11 +173,11 @@ msgstr "Læs farve" #: ../../../../js/oekaki.js:11 msgid "Fill" -msgstr "" +msgstr "Fyld" #: ../../../../js/oekaki.js:12 msgid "Use oekaki instead of file?" -msgstr "Brug oekaki istedet for fil?" +msgstr "Brug oekaki i stedet for fil?" #: ../../../../js/oekaki.js:21 msgid "Edit in oekaki" @@ -214,43 +215,45 @@ msgid "disabled" msgstr "deaktiveret" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "søn" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "man" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "tir" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "ons" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "tor" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "fre" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "lør" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalog" @@ -268,12 +271,12 @@ msgstr "Hurtigt svar" #: ../../../../js/quick-reply-old.js:35 #, python-brace-format msgid "Posting mode: Replying to >>{0}" -msgstr "Post tilstand: Svar til >:>{0}" +msgstr "Indlægstype: Svar til >:>{0}" #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 #: ../../../../js/quick-reply-old.js:35 msgid "Return" -msgstr "" +msgstr "Tilbage" #: ../../../../js/expand-all-images.js:20 #: ../../../../js/expand-all-images.js:21 @@ -318,6 +321,7 @@ msgstr "Ikke flere tråde at vise" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Indlæser..." @@ -328,7 +332,7 @@ msgstr "Gem under oprindelige filnavn" #: ../../../../js/ajax-post-controls.js:43 msgid "Reported post(s)." -msgstr "Anmeldte post(s)." +msgstr "Anmeldte indlæg." #: ../../../../js/ajax-post-controls.js:53 msgid "An unknown error occured!" @@ -344,19 +348,19 @@ msgstr "Arbjeder..." #: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 msgid "Posting... (#%)" -msgstr "Poster... (#%)" +msgstr "Lægger ind... (#%)" #: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 msgid "Posted..." -msgstr "Postet..." +msgstr "Lagt ind..." #: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 msgid "An unknown error occured when posting!" -msgstr "" +msgstr "En ukendt fejl opstod ved indlægning!" #: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 msgid "Posting..." -msgstr "Poster..." +msgstr "Lægger ind..." #: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 #: ../../../../js/quick-reply.js:225 @@ -366,7 +370,7 @@ msgstr "Upload URL" #: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 #: ../../../../js/quick-reply.js:268 msgid "Spoiler Image" -msgstr "" +msgstr "Skjul Billede" #: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 #: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 @@ -434,139 +438,140 @@ msgstr "Følg dette board" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Klik på et billede på siden for at indlæse det til oekaki appletten" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "søndag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "mandag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "tirsdag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "onsdag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "torsdag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "fredag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "lørdag" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "januar" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "februar" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "marts" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "april" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "maj" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "juni" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "juli" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "august" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "september" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "oktober" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "november" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "december" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "feb" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "apr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "aug" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "sep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "okt" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "dec" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -590,7 +595,7 @@ msgstr "WebM indstillinger" #: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 msgid "Expand videos inline" -msgstr "" +msgstr "Indlejr videoer" #: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 msgid "Play videos on hover" @@ -602,118 +607,242 @@ msgstr "Standard lydstyrke" #: ../../../../js/treeview.js:18 msgid "Tree view" -msgstr "" +msgstr "Trævisning" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" -msgstr "" +msgstr "Skrump alle billeder" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" -msgstr "" +msgstr "Animér GIF-billeder" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" -msgstr "" +msgstr "Hold op med at animere GIF-billeder" #: ../../../../js/webm-settings.js:41 msgid "WebM" -msgstr "" +msgstr "WebM" #: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 msgid "No new posts." -msgstr "" +msgstr "Ingen nye indlæg." #: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 msgid "No new threads." -msgstr "" +msgstr "Ingen nye tråde." #: ../../../../js/live-index.js:72 #, python-brace-format msgid "There are {0} new threads." -msgstr "" +msgstr "Der er {0} nye tråde." #: ../../../../js/live-index.js:83 #, python-brace-format msgid "There are {0} new posts in this thread." -msgstr "" +msgstr "Der er {0} nye indlæg i denne tråd." #: ../../../../js/options.js:106 msgid "Options" -msgstr "" +msgstr "Indstillinger" #: ../../../../js/options/general.js:15 msgid "General" -msgstr "" +msgstr "Generelt" #: ../../../../js/options/general.js:18 msgid "Storage: " -msgstr "" +msgstr "Oplagring:" #: ../../../../js/options/general.js:21 msgid "Export" -msgstr "" +msgstr "Eksportér" #: ../../../../js/options/general.js:27 msgid "Import" -msgstr "" +msgstr "Importér" #: ../../../../js/options/general.js:28 msgid "Paste your storage data" -msgstr "" +msgstr "Indsæt dit oplagrede data" #: ../../../../js/options/general.js:40 msgid "Erase" -msgstr "" +msgstr "Udvisk" #: ../../../../js/options/general.js:41 msgid "" "Are you sure you want to erase your storage? This involves your hidden " "threads, watched threads, post password and many more." -msgstr "" +msgstr "Er du sikker på at du vil udviske din oplagring? Dette omfatter dine skjulte tråde, fulgte tråde, indlægskodeord og meget mere." #: ../../../../js/options/user-css.js:14 msgid "User CSS" -msgstr "" +msgstr "Bruger-CSS" #: ../../../../js/options/user-css.js:23 msgid "Update custom CSS" -msgstr "" +msgstr "Opdatér brugerdefineret CSS" #: ../../../../js/options/user-css.js:45 msgid "Enter here your own CSS rules..." -msgstr "" +msgstr "Skriv dine egne CSS-regler hér..." #: ../../../../js/options/user-css.js:46 msgid "" "If you want to make a redistributable style, be sure to\n" " have a Yotsuba B theme selected." -msgstr "" +msgstr "Hvis du ønsker at lave en videredistribuerbar stil, vær\nsikker på at have et Yotsuba B-tema valgt." #: ../../../../js/options/user-css.js:47 msgid "You can include CSS files from remote servers, for example:" -msgstr "" +msgstr "Du kan bruge CSS-filer fra andre servere, for eksempel:" #: ../../../../js/options/user-js.js:14 msgid "User JS" -msgstr "" +msgstr "Bruger-JS" #: ../../../../js/options/user-js.js:23 msgid "Update custom Javascript" -msgstr "" +msgstr "Opdatér brugerdefineret Javascript" #: ../../../../js/options/user-js.js:54 msgid "Enter here your own Javascript code..." -msgstr "" +msgstr "Skriv din egen Javascript-kode hér..." #: ../../../../js/options/user-js.js:55 msgid "" "Have a backup of your storage somewhere, as messing here\n" " may render you this website unusable." -msgstr "" +msgstr "Hav en backup af dit oplargring et sted, da at rode hér kan\ngøre den her webside uanvendelig for dig." #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" +msgstr "Du kan bruge JS-filer fra andre servere, for eksempel:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" msgstr "" diff --git a/inc/locale/da_DK/LC_MESSAGES/tinyboard.mo b/inc/locale/da_DK/LC_MESSAGES/tinyboard.mo index 061ea130..798246fa 100644 Binary files a/inc/locale/da_DK/LC_MESSAGES/tinyboard.mo and b/inc/locale/da_DK/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/da_DK/LC_MESSAGES/tinyboard.po b/inc/locale/da_DK/LC_MESSAGES/tinyboard.po index 996f2bb6..ea2d63ea 100644 --- a/inc/locale/da_DK/LC_MESSAGES/tinyboard.po +++ b/inc/locale/da_DK/LC_MESSAGES/tinyboard.po @@ -4,12 +4,13 @@ # # Translators: # sildeperker , 2014 +# Vladislav Višnevskij Petersen , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -27,11 +28,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "sekund" +msgstr[1] "sekunder" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -41,11 +44,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "minut" +msgstr[1] "minutter" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -55,11 +60,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "time" +msgstr[1] "timer" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -69,11 +76,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "dag" +msgstr[1] "dage" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -83,10 +92,11 @@ msgstr[1] "" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "uge" +msgstr[1] "uger" #: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 #: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 @@ -97,16 +107,17 @@ msgstr[1] "" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "år" +msgstr[1] "år" #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Banlyst!" @@ -120,6 +131,7 @@ msgstr "Banlyst!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Tidligere" @@ -133,7 +145,8 @@ msgstr "Tidligere" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Næste" @@ -201,7 +214,7 @@ msgstr "Er du sikker på at du vil slette denne fil?" #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 #: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" -msgstr "" +msgstr "Skjul Fil" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 @@ -209,7 +222,7 @@ msgstr "" #: ../../../../inc/display.php:404 ../../../../inc/display.php:514 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Are you sure you want to spoiler this file?" -msgstr "" +msgstr "Er du sikker på at du vil skjule denne fil?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 #: ../../../../inc/display.php:404 ../../../../inc/display.php:408 @@ -224,7 +237,8 @@ msgstr "Flyt svar til andet board" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Redigér post" @@ -288,13 +302,13 @@ msgstr "Fastgør tråd" #: ../../../../inc/display.php:521 ../../../../inc/display.php:525 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 msgid "Allow thread to be bumped" -msgstr "" +msgstr "Tillad tråd at blive bumpet" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 #: ../../../../inc/display.php:523 ../../../../inc/display.php:527 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 msgid "Prevent thread from being bumped" -msgstr "" +msgstr "Forhindr tråd fra at blive bumpet" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 #: ../../../../inc/display.php:528 ../../../../inc/display.php:532 @@ -321,8 +335,9 @@ msgstr "Fly tråd til et andet board" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." -msgstr "" +msgstr "Du er blevet dæmpet pga. uoriginalt indhold." #. The names on the post buttons. (On most imageboards, these are both just #. "Post"). @@ -332,6 +347,7 @@ msgstr "" #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nyt Emne" @@ -339,18 +355,20 @@ msgstr "Nyt Emne" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" -msgstr "" +msgstr "Nyt Svar" #. Additional lines added to the footer of all pages. #: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." -msgstr "" +msgstr "All varemærker, ophavsrettigheder, kommentarer og billeder på denne side er ejet af deres respektive parter, hvilke også besidder ansvaret for førstnævnte." #. * ==================== #. * Error messages @@ -358,7 +376,7 @@ msgstr "" #. Error messages #: ../../../../inc/config.php:866 msgid "Lurk some more before posting." -msgstr "" +msgstr "Lur lidt mer indtil du laver indlæg." #. * ==================== #. * Error messages @@ -372,105 +390,120 @@ msgstr "" #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." -msgstr "" +msgstr "Du ser ud som en robot." #: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." -msgstr "" +msgstr "Din browser sendte en ugyldig, eller ingen HTTP-henviser." #: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." -msgstr "" +msgstr "%s-feltet er alt for langt." #: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." -msgstr "" +msgstr "Brødteksten var for lang." #: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." -msgstr "" +msgstr "Brødteksten var enten for kort eller tom." #: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." -msgstr "" +msgstr "Du er nødt til at uploade et billede." #: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." -msgstr "" +msgstr "Det lykkedes ikke serveren at behandle din upload-anmodning." #: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." -msgstr "" +msgstr "Filformatet er ikke understøttet." #: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" -msgstr "" +msgstr "Ugyldigt board!" #: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." -msgstr "" +msgstr "Den angivne tråd findes ikke." #: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." -msgstr "" +msgstr "Tråden er låst. Du kan ikke svare på nuværende tidspunkt." #: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." -msgstr "" +msgstr "Tråden har nået sin maksimale indlægsgrænse." #: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." -msgstr "" +msgstr "Tråden har nået sin maksimale billedgrænse." #: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." -msgstr "" +msgstr "Du lavede ikke et indlæg." #: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "" @@ -478,44 +511,50 @@ msgstr "" #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." -msgstr "" +msgstr "Din efterspørgsel ser automatiseret ud; indlæget er blevet kasseret." #: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" -msgstr "" +msgstr "Uoriginalt indhold!" #: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." -msgstr "" +msgstr "Uoriginalt indhold! Du er blevet dæmpet i %d sekunder." #: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." -msgstr "" +msgstr "Du er dæmpet! Udløber om %d sekunder." #: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." -msgstr "" +msgstr "Din IP-adresse er listet i %s." #: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "" @@ -523,231 +562,262 @@ msgstr "" #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." -msgstr "" +msgstr "Alt for mange citeringer; indlæget er blevet kasseret." #: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." -msgstr "" +msgstr "Alt for mange tværs-board links; indlæget er blevet kasseret." #: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." -msgstr "" +msgstr "Du har ikke valgt noget at slette." #: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." -msgstr "" +msgstr "Du har ikke valgt noget at rapportere." #: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." -msgstr "" +msgstr "Du kan ikke rapportere så mange indlæg på samme tid." #: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" -msgstr "" +msgstr "Forkert kodeord..." #: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." -msgstr "" +msgstr "Ugyldigt billede." #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." -msgstr "" +msgstr "Ukendt filtype." #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" -msgstr "" +msgstr "Maximal filstørrelse: %maxsz% bytes
Din fils størrelse: %filesz% bytes" #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." -msgstr "" +msgstr "Filen var for stor." #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" -msgstr "" +msgstr "Filen findes allerede!" #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" -msgstr "" +msgstr "Filen findes allerede i denne tråd!" #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." -msgstr "" +msgstr "Du er nødt til at vente %s endnu før du sletter dette." #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." -msgstr "" +msgstr "MIME-type-detektions-XSS-exploit (IE) opdaget; indlæget blev kasseret." #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." -msgstr "" +msgstr "Kunne ikke finde mening i URL'en af den video som du forsøgte at indlejre." #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." -msgstr "" +msgstr "Det ser ud som om at du har fejlindtastet verifikationen." #. Moderator errors #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " "users." -msgstr "" +msgstr "Du må kun fjerne bandlysningen af %s brugere på samme tid. Du forsøgte at fjerne bandlysningen på %u brugere." #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." -msgstr "" +msgstr "Ugyldigt brugernavn og/eller kodeord." #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" -msgstr "" +msgstr "Du er ikke moderator..." #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." -msgstr "" +msgstr "Ugyldigt brugernavn og/eller kodeord. Din bruger kan være blevet slettet eller ændret." #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." -msgstr "" +msgstr "Ugyldige/misdannede cookies." #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." -msgstr "" +msgstr "Din browser indsendte ikke et input da den skulle have." #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." -msgstr "" +msgstr "%s-feltet er påkrævet." #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." -msgstr "" +msgstr "%s-feltet var ugyldigt." #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." -msgstr "" +msgstr "Der er allerede et %s-board." #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." -msgstr "" +msgstr "Du har ikke tilladelse til at gøre det dér." #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" -msgstr "" +msgstr "Det indlæg findes ikke..." #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." -msgstr "" +msgstr "Side ikke fundet." #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" -msgstr "" +msgstr "Den moderator findes allerede!" #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" -msgstr "" +msgstr "Det tema findes ikke!" #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." -msgstr "" +msgstr "Ugyldigt sikkerhedstegn! Vær venlig at gå tilbage og prøve igen." #. Default public ban message. In public ban messages, %length% is replaced #. with "for x days" or @@ -759,59 +829,60 @@ msgstr "" #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" -msgstr "" +msgstr "BRUGER BLEV BANDLYST FOR DETTE INDLÆG" #: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 msgid "Confirm action" -msgstr "" +msgstr "Bekræft handling" #: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 msgid "Could not find current version! (Check .installed)" -msgstr "" +msgstr "Kunne ikke finde aktuel version! (Tjek .installed)" #: ../../../../inc/mod/pages.php:162 msgid "Dashboard" -msgstr "" +msgstr "Betjeningspanel" #: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 msgid "There are no boards to search!" -msgstr "" +msgstr "Der er ingen boards at søge på!" #. $results now contains the search results #: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 msgid "Search results" -msgstr "" +msgstr "Søgeresultater" #: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 msgid "Edit board" -msgstr "" +msgstr "Redigér board" #: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 msgid "Couldn't open board after creation." -msgstr "" +msgstr "Kunne ikke åbne board efter oprettelse." #: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 msgid "New board" -msgstr "" +msgstr "Nyt board" #. line 37 #: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 msgid "Noticeboard" -msgstr "" +msgstr "Notitsboard" #: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 msgid "News" -msgstr "" +msgstr "Nyheder" #: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 #: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 msgid "Moderation log" -msgstr "" +msgstr "Moderationslog" #. line 104 #. line 20 @@ -845,82 +916,98 @@ msgstr "" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" -msgstr "" +msgstr "IP-adresse" #. 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 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" -msgstr "" +msgstr "Ny bandlysning" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" -msgstr "" +msgstr "Bandlysningsliste" #. line 38 #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" -msgstr "" +msgstr "Flyt svar" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." -msgstr "" +msgstr "Mål- og kildeboard er de samme." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." -msgstr "" +msgstr "Umuligt at flytte tråd; der er kun et board." #. line 39 #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" -msgstr "" +msgstr "Flyt tråd" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" -msgstr "" +msgstr "Redigér bruger" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" -msgstr "" +msgstr "Administrér brugere" #. deleted? #: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" -msgstr "" +msgstr "Ny besked til" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" -msgstr "" +msgstr "Privat besked" #. line 68 #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" -msgstr "" +msgstr "Indbakke" #: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 #: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 @@ -929,95 +1016,108 @@ msgstr "" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" -msgstr "" +msgstr "Ombyg" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" -msgstr "" +msgstr "Rapportér kø" #: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" -msgstr "" +msgstr "Konfigurationseditor" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" -msgstr "" +msgstr "Temamappe findes ikke!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." -msgstr "" +msgstr "Kan ikke åbne temamappe; tjek tilladelser." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" -msgstr "" +msgstr "Administrér temaer" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" -msgstr "" +msgstr "Installeret tema: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" -msgstr "" +msgstr "Konfigurationstema: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" -msgstr "" +msgstr "Ombygget tema: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" -msgstr "" +msgstr "Fejlfinding: Anti-spam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" -msgstr "" +msgstr "Fejlfinding: Nylige indlæg" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" -msgstr "" +msgstr "Fejlfinding: SQL" #. Print error #: ../../../../inc/database.php:72 ../../../../inc/database.php:94 msgid "Database error: " -msgstr "" +msgstr "Databasefejl:" #: ../../../../banned.php:4 msgid "Banned?" -msgstr "" +msgstr "Bandlyst?" #: ../../../../banned.php:5 msgid "You are not banned." -msgstr "" +msgstr "Du er ikke bandlyst." #. line 6 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 msgid "Go back" -msgstr "" +msgstr "Gå tilbage" #. line 13 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 msgid "Error information" -msgstr "" +msgstr "Fejloplysninger" #. line 2 #. line 3 @@ -1025,7 +1125,7 @@ msgstr "" #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 msgid "Delete Post" -msgstr "" +msgstr "Slet Indlæg" #. line 3 #. line 84 @@ -1058,6 +1158,10 @@ msgstr "" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1066,7 +1170,7 @@ msgstr "" #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 msgid "File" -msgstr "" +msgstr "Fil" #. line 132 #. line 14 @@ -1092,6 +1196,8 @@ msgstr "" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1103,7 +1209,7 @@ msgstr "" #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 msgid "Password" -msgstr "" +msgstr "Kodeord" #. line 8 #. line 108 @@ -1171,6 +1277,12 @@ msgstr "" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1181,7 +1293,7 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 msgid "Reason" -msgstr "" +msgstr "Grund" #. line 10 #. line 12 @@ -1189,7 +1301,7 @@ msgstr "" #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 msgid "Report" -msgstr "" +msgstr "Rapportér" #: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 #: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 @@ -1202,7 +1314,7 @@ msgstr "" #: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 #: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 msgid "Return to dashboard" -msgstr "" +msgstr "Gå tilbage til betjeningspanelet" #. line 39 #. line 33 @@ -1243,6 +1355,8 @@ msgstr "" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "" @@ -1293,6 +1407,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "" @@ -1304,6 +1419,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "" @@ -1315,6 +1431,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "" @@ -1328,6 +1445,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "" @@ -1342,6 +1460,8 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "" @@ -1353,6 +1473,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "" @@ -1366,6 +1487,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "" @@ -1394,6 +1516,9 @@ msgstr "" #. line 7 #. 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 @@ -1417,6 +1542,8 @@ msgstr "" #. 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 @@ -1451,6 +1578,9 @@ msgstr "" #. line 23 #. line 12 #. 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 @@ -1479,6 +1609,8 @@ msgstr "" #. 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 @@ -1570,6 +1702,10 @@ msgstr "" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1614,6 +1750,10 @@ msgstr "" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1658,6 +1798,10 @@ msgstr "" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1756,6 +1900,12 @@ msgstr "" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1764,38 +1914,43 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "" #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1814,6 +1969,9 @@ msgstr "" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1879,7 +2037,8 @@ msgstr "" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "" @@ -2024,6 +2183,15 @@ msgstr "" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2063,6 +2231,9 @@ msgstr "" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2082,6 +2253,8 @@ msgstr "" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2124,6 +2297,8 @@ msgstr "" #. 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" @@ -2218,6 +2393,15 @@ msgstr "" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2273,6 +2457,9 @@ msgstr "" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2311,6 +2498,9 @@ msgstr "" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2357,6 +2547,9 @@ msgstr "" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2401,6 +2594,10 @@ msgstr "" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2440,6 +2637,11 @@ msgstr "" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2501,6 +2703,8 @@ msgstr "" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2557,6 +2761,7 @@ msgstr "" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "" @@ -2574,6 +2779,9 @@ msgstr "" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2629,7 +2837,7 @@ msgstr "" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "" @@ -2663,41 +2871,54 @@ msgid "Your ban was filed on" msgstr "" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "" @@ -2719,21 +2940,28 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2757,10 +2985,14 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "" @@ -2782,21 +3014,28 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "" @@ -2815,6 +3054,10 @@ msgstr "" #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2883,6 +3126,8 @@ msgstr "" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3042,7 +3287,8 @@ msgstr "" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "" @@ -3054,6 +3300,7 @@ msgid "" msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3068,6 +3315,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3090,6 +3341,10 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3103,6 +3358,10 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3116,6 +3375,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3185,20 +3448,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3215,3 +3484,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/de_DE/LC_MESSAGES/javascript.po b/inc/locale/de_DE/LC_MESSAGES/javascript.po index 3383bdff..59a86775 100644 --- a/inc/locale/de_DE/LC_MESSAGES/javascript.po +++ b/inc/locale/de_DE/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgid "Delete" msgstr "Löschen" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Grund" @@ -214,43 +214,45 @@ msgid "disabled" msgstr "unerlaubt" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "So" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Mo" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Di" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Mi" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Do" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Fr" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "Sa" #: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 #: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 #: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalog" @@ -318,6 +320,7 @@ msgstr "Keine Fäden vorhanden" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Lädt" @@ -434,139 +437,140 @@ msgstr "Brett verfolgen" msgid "Click on any image on this site to load it into oekaki applet" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Sonntag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Montag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Dienstag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Mittwoch" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Donnerstag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Freitag" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Samstag" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Januar" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Februar" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "März" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "April" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Mai" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Juni" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Juli" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "August" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "September" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Oktober" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "November" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Dezember" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Feb" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Apr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Aug" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Sep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Okt" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dez" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -605,16 +609,19 @@ msgid "Tree view" msgstr "" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "" @@ -717,3 +724,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo b/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo index b28bb017..41f300f0 100644 Binary files a/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo and b/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po index d5af9417..99426fd4 100644 --- a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po +++ b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "Sekunde" msgstr[1] "Sekunden" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -41,11 +43,13 @@ msgstr[1] "Sekunden" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "Minute" msgstr[1] "Minuten" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -55,11 +59,13 @@ msgstr[1] "Minuten" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "Stunde" msgstr[1] "Stunden" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -69,11 +75,13 @@ msgstr[1] "Stunden" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "Tag" msgstr[1] "Tage" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -83,6 +91,7 @@ msgstr[1] "Tage" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "Woche" @@ -97,6 +106,7 @@ msgstr[1] "Wochen" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "Jahr" @@ -106,7 +116,7 @@ msgstr[1] "Jahre" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Gebannt!" @@ -120,6 +130,7 @@ msgstr "Gebannt!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Vorheriges" @@ -133,7 +144,8 @@ msgstr "Vorheriges" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Nächstes" @@ -224,7 +236,8 @@ msgstr "Antwort in ein anderes Brett verschieben" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Post editieren" @@ -321,6 +334,7 @@ msgstr "Faden in anderes Brett verschieben" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Du wurdest für unorginellen Inhalt stumm gestellt" @@ -332,6 +346,7 @@ msgstr "Du wurdest für unorginellen Inhalt stumm gestellt" #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Neuer Faden" @@ -339,6 +354,7 @@ msgstr "Neuer Faden" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Neue Antwort" @@ -347,6 +363,7 @@ msgstr "Neue Antwort" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -372,6 +389,7 @@ msgstr "Lauer meer bevor du pfostierst" #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Du bist wie ein Bot" @@ -379,6 +397,7 @@ msgstr "Du bist wie ein Bot" #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Dein Browser sendet fehlerhafte oder keine HTTP-Referer" @@ -386,6 +405,7 @@ msgstr "Dein Browser sendet fehlerhafte oder keine HTTP-Referer" #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "Das %s Feld war zu lang." @@ -394,6 +414,7 @@ msgstr "Das %s Feld war zu lang." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Text zu lang." @@ -401,6 +422,7 @@ msgstr "Text zu lang." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Text zu kurz oder leer." @@ -408,6 +430,7 @@ msgstr "Text zu kurz oder leer." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Du musst ein Bild hochladen" @@ -415,6 +438,7 @@ msgstr "Du musst ein Bild hochladen" #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Der Server kann nicht mit der hochgeladenen Datei umgehen." @@ -422,6 +446,7 @@ msgstr "Der Server kann nicht mit der hochgeladenen Datei umgehen." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Dateiformat nicht erlaubt." @@ -429,6 +454,7 @@ msgstr "Dateiformat nicht erlaubt." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Fehlendes Brett!" @@ -436,6 +462,7 @@ msgstr "Fehlendes Brett!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Der angegebene Faden existiert nicht." @@ -443,6 +470,7 @@ msgstr "Der angegebene Faden existiert nicht." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Faden geschloßen. Posten ist zur Zeit nicht möglcih" @@ -450,6 +478,7 @@ msgstr "Faden geschloßen. Posten ist zur Zeit nicht möglcih" #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Der Faden hat die maximale Anzahl an Posts erreicht." @@ -457,6 +486,7 @@ msgstr "Der Faden hat die maximale Anzahl an Posts erreicht." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Der Faden hat die maximale Anzahl an Bildern erreicht. " @@ -464,6 +494,7 @@ msgstr "Der Faden hat die maximale Anzahl an Bildern erreicht. " #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Du hast nicht gepostet." @@ -471,6 +502,7 @@ msgstr "Du hast nicht gepostet." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Spam-Flut erkannt; Post abewehrt." @@ -478,6 +510,7 @@ msgstr "Spam-Flut erkannt; Post abewehrt." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Deine Aktivitäten scheinen automatisiert zu sein; Post abgewehrt." @@ -485,6 +518,7 @@ msgstr "Deine Aktivitäten scheinen automatisiert zu sein; Post abgewehrt." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Unorigineller Inhalt!" @@ -492,6 +526,7 @@ msgstr "Unorigineller Inhalt!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Unorigineller Inhalt! Du wurdest für %d Sekunden auf stumm geschaltet." @@ -500,6 +535,7 @@ msgstr "Unorigineller Inhalt! Du wurdest für %d Sekunden auf stumm geschaltet." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Du bist noch %d Sekunden auf stumm geschaltet." @@ -508,6 +544,7 @@ msgstr "Du bist noch %d Sekunden auf stumm geschaltet." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Deine IP-Adresse ist aufgeführt in %s." @@ -516,6 +553,7 @@ msgstr "Deine IP-Adresse ist aufgeführt in %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Zu viele Verlinkungen; Spam-Flut erkannt." @@ -523,6 +561,7 @@ msgstr "Zu viele Verlinkungen; Spam-Flut erkannt." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Zu viele Zitate; Spam-Flut erkannt." @@ -530,6 +569,7 @@ msgstr "Zu viele Zitate; Spam-Flut erkannt." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "" @@ -537,6 +577,7 @@ msgstr "" #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Du hast nichts zum löschen ausgewählt." @@ -544,6 +585,7 @@ msgstr "Du hast nichts zum löschen ausgewählt." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Du hast nichts zum melden ausgwählt." @@ -551,6 +593,7 @@ msgstr "Du hast nichts zum melden ausgwählt." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Du kannst nicht so viele Posts auf ein mal melden." @@ -558,6 +601,7 @@ msgstr "Du kannst nicht so viele Posts auf ein mal melden." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Falsches Passwort." @@ -565,6 +609,7 @@ msgstr "Falsches Passwort." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Ungültiges Bild." @@ -572,6 +617,7 @@ msgstr "Ungültiges Bild." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Unbekannte Dateiendung." @@ -579,6 +625,7 @@ msgstr "Unbekannte Dateiendung." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maximale Dateigröße: %maxsz% bytes
Deine Dateigröße: %filesz% bytes" @@ -586,6 +633,7 @@ msgstr "Maximale Dateigröße: %maxsz% bytes
Deine Dateigröße: %filesz% byt #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Die Datei ist zu groß." @@ -593,6 +641,7 @@ msgstr "Die Datei ist zu groß." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Diese Datei existiert bereits!" @@ -601,6 +650,7 @@ msgstr "Diese Datei existiert bereits!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Diese Datei existiert bereits in diesem Faden!" @@ -609,6 +659,7 @@ msgstr "Diese Datei existiert bereits in diesem Faden!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Du musst noch %s warten bevor du das löschen kannst." @@ -617,6 +668,7 @@ msgstr "Du musst noch %s warten bevor du das löschen kannst." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "" @@ -624,6 +676,7 @@ msgstr "" #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "Es macht keinen Sinn diese Video-URL einzubetten." @@ -631,6 +684,7 @@ msgstr "Es macht keinen Sinn diese Video-URL einzubetten." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Du hast das Captcha falsch eingegeben." @@ -639,6 +693,7 @@ msgstr "Du hast das Captcha falsch eingegeben." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -649,6 +704,7 @@ msgstr "Du darfst maximal %s User zur gleichen Zeit unbannen. Du wolltest %u Use #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Falscher Nutzername und/oder Passwort." @@ -656,6 +712,7 @@ msgstr "Falscher Nutzername und/oder Passwort." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Du bist kein Mod." @@ -663,6 +720,7 @@ msgstr "Du bist kein Mod." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -672,6 +730,7 @@ msgstr "Falscher Nutzername und/oder Passwort. Vielleicht hat sich ihr Benutzer #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Ungültige Cookies." @@ -679,6 +738,7 @@ msgstr "Ungültige Cookies." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Dein Browser übermittelt keine Daten wenn er sollte." @@ -686,6 +746,7 @@ msgstr "Dein Browser übermittelt keine Daten wenn er sollte." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Das Feld %s darf nicht leer bleiben." @@ -694,6 +755,7 @@ msgstr "Das Feld %s darf nicht leer bleiben." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Das Feld %s beinhaltet einen Fehler." @@ -702,6 +764,7 @@ msgstr "Das Feld %s beinhaltet einen Fehler." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Ein %s-Brett existiert bereits." @@ -710,6 +773,7 @@ msgstr "Ein %s-Brett existiert bereits." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Du hast nicht die Berechtigung das zu tun." @@ -717,6 +781,7 @@ msgstr "Du hast nicht die Berechtigung das zu tun." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Dieser Post existiert nicht..." @@ -724,6 +789,7 @@ msgstr "Dieser Post existiert nicht..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -731,6 +797,7 @@ msgstr "Seite nicht gefunden." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Der Mod existiert bereits!" @@ -739,6 +806,7 @@ msgstr "Der Mod existiert bereits!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Dieses Theme existiert nicht" @@ -746,6 +814,7 @@ msgstr "Dieses Theme existiert nicht" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Falsche Sicherheitszeichen! Bitte gehe zurück und probiere es erneut!" @@ -759,6 +828,7 @@ msgstr "Falsche Sicherheitszeichen! Bitte gehe zurück und probiere es erneut!" #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "USER WURDE FÜR DIESEN POST GEBANNT" @@ -845,10 +915,14 @@ msgstr "Mod-Log" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -857,11 +931,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Neuer Bann" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Bannliste" @@ -869,17 +947,20 @@ msgstr "Bannliste" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Antwort verschieben" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Quell- und Zielbrett sind das selbe." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Verschieben nicht möglich; nur ein Brett vorhanden." @@ -887,18 +968,20 @@ msgstr "Verschieben nicht möglich; nur ein Brett vorhanden." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Faden verschieben" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "User editieren" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Userübersicht" @@ -907,11 +990,13 @@ msgstr "Userübersicht" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Neue PN an" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Private Nachricht" @@ -919,6 +1004,7 @@ msgstr "Private Nachricht" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "PNs" @@ -929,12 +1015,14 @@ msgstr "PNs" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "wiederherstellen" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Gemeldete Posts" @@ -942,55 +1030,66 @@ msgstr "Gemeldete Posts" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Einstellungen" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Themenkatalog existiert nicht!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Themenkatalog kann nicht geöffnet werden; überprüfe deine Berechtigungen." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Themen-Manager" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Installiertes Theme: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "" @@ -1058,6 +1157,10 @@ msgstr "Post löschen" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1092,6 +1195,8 @@ msgstr "Datei" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1171,6 +1276,12 @@ msgstr "Passwort" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1243,6 +1354,8 @@ msgstr "Kein Betreff" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "von" @@ -1293,6 +1406,7 @@ msgstr "Bilder spoilern" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Antwort" @@ -1304,6 +1418,7 @@ msgstr "Antwort" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Alle anzeigen" @@ -1315,6 +1430,7 @@ msgstr "Alle anzeigen" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Letzter Post" @@ -1328,6 +1444,7 @@ msgstr[1] "Letzten %count% Posts" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 Post" @@ -1342,6 +1459,8 @@ msgstr[1] "%count% Posts" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "und" @@ -1353,6 +1472,7 @@ msgstr "und" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 Bild" @@ -1366,6 +1486,7 @@ msgstr[1] "%count% Bilder" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "nicht angezeigt. (Klicke 'Antworten' zum anzeigen.)" @@ -1394,6 +1515,9 @@ msgstr "nicht angezeigt. (Klicke 'Antworten' zum anzeigen.)" #. line 7 #. 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 @@ -1417,6 +1541,8 @@ msgstr "Name" #. 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 @@ -1451,6 +1577,9 @@ msgstr "Email" #. line 23 #. line 12 #. 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 @@ -1479,6 +1608,8 @@ msgstr "Update" #. 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 @@ -1570,6 +1701,10 @@ msgstr "Länderflaggen" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1614,6 +1749,10 @@ msgstr "Pinn" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1658,6 +1797,10 @@ msgstr "Geschloßen" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1756,6 +1899,12 @@ msgstr "Keine Ergebnisse" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1764,38 +1913,43 @@ msgstr "Keine Ergebnisse" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Suche" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Bannbeschwerde nicht gefunden!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Bannbeschwerden" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Neuer User" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Fördern/degradieren des Users nicht möglich." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1814,6 +1968,9 @@ msgstr "" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1879,7 +2036,8 @@ msgstr "Anti Spam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Letzte Posts" @@ -2024,6 +2182,15 @@ msgstr "Neuigkeiten-Beitrag posten" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2063,6 +2230,9 @@ msgstr "Personal" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2082,6 +2252,8 @@ msgstr "Notiz" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2124,6 +2296,8 @@ msgstr "Neue Notiz" #. 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" @@ -2218,6 +2392,15 @@ msgstr "kein Grund" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2273,6 +2456,9 @@ msgstr "Alle Bretter" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2311,6 +2497,9 @@ msgstr "übernehmen" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2357,6 +2546,9 @@ msgstr "nie" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2401,6 +2593,10 @@ msgstr "Bann entfernen" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2440,6 +2636,11 @@ msgstr "Zeit" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2501,6 +2702,8 @@ msgstr "Neuer Bann" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2557,6 +2760,7 @@ msgstr "Dauer" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Gewählte User unbannen" @@ -2574,6 +2778,9 @@ msgstr "Gewählte User unbannen" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2629,7 +2836,7 @@ msgstr "Bild kann nicht neu generiert werden!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Größe des Bildes kann nicht geändert werden!" @@ -2663,41 +2870,54 @@ msgid "Your ban was filed on" msgstr "Gesperrt seit" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "ist abgelaufen. Lade die Seite neu um fortzfahren." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "läuft ab" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "ab jetzt," #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "unbefristet" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Deine IP-Adresse lautet" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Du wurdest für den follgenden Post gebannt" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Du hast bereits eine Beschwerde gegen diesen Bann eingereicht am" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Antwort steht noch aus" @@ -2719,21 +2939,28 @@ msgstr "Antwort steht noch aus" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Du beschwertest dich über diesen Bann am" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "und sie wurde abgelehnt. Du kannst dich nicht noch mal über diesen Bann beschweren." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2757,10 +2984,14 @@ msgstr "Du hast die maximale Anzahl an Bannbeschwerden eingereicht. Du kannst di #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "und sie wurde abgelehnt. " @@ -2782,21 +3013,28 @@ msgstr "und sie wurde abgelehnt. " #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Du kannst dich noch mal über diesen Bann beschweren. Bitte nenne hier deinen Grund." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Du hast dich zuletzt über diesen Bann beschwert am" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Du kannst dich über diesen Bann beschweren. Bitte nenne hier deinen Grund." @@ -2815,6 +3053,10 @@ msgstr "Du kannst dich über diesen Bann beschweren. Bitte nenne hier deinen Gru #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2883,6 +3125,8 @@ msgstr "" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3042,7 +3286,8 @@ msgstr "" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "" @@ -3054,6 +3299,7 @@ msgid "" msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3068,6 +3314,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3090,6 +3340,10 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3103,6 +3357,10 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3116,6 +3374,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3185,20 +3447,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3215,3 +3483,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/en/LC_MESSAGES/javascript.po b/inc/locale/en/LC_MESSAGES/javascript.po index a9a57d2c..e857e1d2 100644 --- a/inc/locale/en/LC_MESSAGES/javascript.po +++ b/inc/locale/en/LC_MESSAGES/javascript.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -118,7 +118,7 @@ msgid "Delete" msgstr "" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "" @@ -213,43 +213,45 @@ msgid "disabled" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" 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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "" @@ -317,6 +319,7 @@ msgstr "" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "" @@ -433,139 +436,140 @@ msgstr "" msgid "Click on any image on this site to load it into oekaki applet" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "" @@ -604,16 +608,19 @@ msgid "Tree view" msgstr "" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "" @@ -716,3 +723,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/en/LC_MESSAGES/tinyboard.po b/inc/locale/en/LC_MESSAGES/tinyboard.po index 90887200..e1b8f64b 100644 --- a/inc/locale/en/LC_MESSAGES/tinyboard.po +++ b/inc/locale/en/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-09-21 04:38+0200\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -27,11 +27,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "" msgstr[1] "" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -41,11 +43,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "" msgstr[1] "" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -55,11 +59,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "" msgstr[1] "" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -69,11 +75,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "" msgstr[1] "" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -83,6 +91,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "" @@ -97,6 +106,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "" @@ -106,7 +116,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "" @@ -120,6 +130,7 @@ msgstr "" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "" @@ -133,7 +144,8 @@ msgstr "" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "" @@ -224,7 +236,8 @@ msgstr "" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "" @@ -321,6 +334,7 @@ msgstr "" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "" @@ -331,6 +345,7 @@ msgstr "" #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "" @@ -338,6 +353,7 @@ msgstr "" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "" @@ -346,6 +362,7 @@ msgstr "" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -373,6 +390,7 @@ msgstr "" #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "" @@ -380,6 +398,7 @@ msgstr "" #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "" @@ -387,6 +406,7 @@ msgstr "" #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "" @@ -395,6 +415,7 @@ msgstr "" #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "" @@ -402,6 +423,7 @@ msgstr "" #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "" @@ -409,6 +431,7 @@ msgstr "" #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "" @@ -416,6 +439,7 @@ msgstr "" #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "" @@ -423,6 +447,7 @@ msgstr "" #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "" @@ -430,6 +455,7 @@ msgstr "" #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "" @@ -437,6 +463,7 @@ msgstr "" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "" @@ -444,6 +471,7 @@ msgstr "" #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "" @@ -451,6 +479,7 @@ msgstr "" #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "" @@ -458,6 +487,7 @@ msgstr "" #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "" @@ -465,6 +495,7 @@ msgstr "" #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "" @@ -472,6 +503,7 @@ msgstr "" #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "" @@ -479,6 +511,7 @@ msgstr "" #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "" @@ -486,6 +519,7 @@ msgstr "" #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "" @@ -493,6 +527,7 @@ msgstr "" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "" @@ -501,6 +536,7 @@ msgstr "" #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "" @@ -509,6 +545,7 @@ msgstr "" #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "" @@ -517,6 +554,7 @@ msgstr "" #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "" @@ -524,6 +562,7 @@ msgstr "" #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "" @@ -531,6 +570,7 @@ msgstr "" #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "" @@ -538,6 +578,7 @@ msgstr "" #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "" @@ -545,6 +586,7 @@ msgstr "" #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "" @@ -552,6 +594,7 @@ msgstr "" #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "" @@ -559,6 +602,7 @@ msgstr "" #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "" @@ -566,6 +610,7 @@ msgstr "" #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "" @@ -573,6 +618,7 @@ msgstr "" #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "" @@ -580,6 +626,7 @@ msgstr "" #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "" @@ -587,6 +634,7 @@ msgstr "" #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "" @@ -594,6 +642,7 @@ msgstr "" #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "" @@ -602,6 +651,7 @@ msgstr "" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "" @@ -610,6 +660,7 @@ msgstr "" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "" @@ -618,6 +669,7 @@ msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "" @@ -625,6 +677,7 @@ msgstr "" #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "" @@ -632,6 +685,7 @@ msgstr "" #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "" @@ -640,6 +694,7 @@ msgstr "" #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -650,6 +705,7 @@ msgstr "" #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "" @@ -657,6 +713,7 @@ msgstr "" #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "" @@ -664,6 +721,7 @@ msgstr "" #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or changed." msgstr "" @@ -672,6 +730,7 @@ msgstr "" #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "" @@ -679,6 +738,7 @@ msgstr "" #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "" @@ -686,6 +746,7 @@ msgstr "" #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "" @@ -694,6 +755,7 @@ msgstr "" #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "" @@ -702,6 +764,7 @@ msgstr "" #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "" @@ -710,6 +773,7 @@ msgstr "" #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "" @@ -717,6 +781,7 @@ msgstr "" #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "" @@ -724,6 +789,7 @@ msgstr "" #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "" @@ -731,6 +797,7 @@ msgstr "" #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "" @@ -739,6 +806,7 @@ msgstr "" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "" @@ -746,6 +814,7 @@ msgstr "" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "" @@ -758,6 +827,7 @@ msgstr "" #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "" @@ -844,10 +914,14 @@ msgstr "" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "" @@ -856,11 +930,15 @@ msgstr "" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "" @@ -868,17 +946,20 @@ msgstr "" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "" #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "" @@ -886,18 +967,20 @@ msgstr "" #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "" @@ -906,11 +989,13 @@ msgstr "" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "" @@ -918,6 +1003,7 @@ msgstr "" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "" @@ -928,12 +1014,14 @@ msgstr "" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "" @@ -941,55 +1029,66 @@ msgstr "" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "" #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "" @@ -1057,6 +1156,10 @@ msgstr "" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1091,6 +1194,8 @@ msgstr "" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1170,6 +1275,12 @@ msgstr "" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1242,6 +1353,8 @@ msgstr "" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "" @@ -1292,6 +1405,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "" @@ -1303,6 +1417,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "" @@ -1314,6 +1429,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "" @@ -1327,6 +1443,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "" @@ -1341,6 +1458,8 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "" @@ -1352,6 +1471,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "" @@ -1365,6 +1485,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "" @@ -1393,6 +1514,9 @@ msgstr "" #. line 7 #. 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 @@ -1416,6 +1540,8 @@ msgstr "" #. 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 @@ -1450,6 +1576,9 @@ msgstr "" #. line 23 #. line 12 #. 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 @@ -1478,6 +1607,8 @@ msgstr "" #. 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 @@ -1569,6 +1700,10 @@ msgstr "" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1613,6 +1748,10 @@ msgstr "" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1657,6 +1796,10 @@ msgstr "" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1755,6 +1898,12 @@ msgstr "" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1763,38 +1912,43 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "" #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1813,6 +1967,9 @@ msgstr "" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1878,7 +2035,8 @@ msgstr "" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "" @@ -2023,6 +2181,15 @@ msgstr "" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2062,6 +2229,9 @@ msgstr "" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2081,6 +2251,8 @@ msgstr "" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2123,6 +2295,8 @@ msgstr "" #. 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" @@ -2217,6 +2391,15 @@ msgstr "" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2272,6 +2455,9 @@ msgstr "" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2310,6 +2496,9 @@ msgstr "" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2356,6 +2545,9 @@ msgstr "" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2400,6 +2592,10 @@ msgstr "" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2439,6 +2635,11 @@ msgstr "" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2500,6 +2701,8 @@ msgstr "" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2556,6 +2759,7 @@ msgstr "" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "" @@ -2573,6 +2777,9 @@ msgstr "" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2628,7 +2835,7 @@ msgstr "" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "" @@ -2662,41 +2869,54 @@ msgid "Your ban was filed on" msgstr "" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "" @@ -2718,21 +2938,28 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2756,10 +2983,14 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "" @@ -2781,21 +3012,28 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "" @@ -2814,6 +3052,10 @@ msgstr "" #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2882,6 +3124,8 @@ msgstr "" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3039,7 +3283,8 @@ msgstr "" #. a capcode) will be made, linking to the new location for the thread. "%s" will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "" @@ -3050,6 +3295,7 @@ msgid "" msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3064,6 +3310,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3086,6 +3336,10 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3099,6 +3353,10 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3112,6 +3370,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3181,20 +3443,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3211,3 +3479,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/en_AU/LC_MESSAGES/javascript.po b/inc/locale/en_AU/LC_MESSAGES/javascript.po index c390b387..8777b3cc 100644 --- a/inc/locale/en_AU/LC_MESSAGES/javascript.po +++ b/inc/locale/en_AU/LC_MESSAGES/javascript.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgid "Delete" msgstr "" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "" @@ -213,43 +213,45 @@ msgid "disabled" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" 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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "" @@ -317,6 +319,7 @@ msgstr "" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "" @@ -433,139 +436,140 @@ msgstr "" msgid "Click on any image on this site to load it into oekaki applet" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "" @@ -604,16 +608,19 @@ msgid "Tree view" msgstr "" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "" @@ -716,3 +723,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo b/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo index 7ce7b866..4f4571ec 100644 Binary files a/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo and b/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/en_AU/LC_MESSAGES/tinyboard.po b/inc/locale/en_AU/LC_MESSAGES/tinyboard.po index ba89f15e..4e659c02 100644 --- a/inc/locale/en_AU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/en_AU/LC_MESSAGES/tinyboard.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n" "MIME-Version: 1.0\n" @@ -26,11 +26,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "" msgstr[1] "" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -40,11 +42,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "" msgstr[1] "" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -54,11 +58,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "" msgstr[1] "" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -68,11 +74,13 @@ msgstr[1] "" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "" msgstr[1] "" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -82,6 +90,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "" @@ -96,6 +105,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "" @@ -105,7 +115,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "" @@ -119,6 +129,7 @@ msgstr "" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "" @@ -132,7 +143,8 @@ msgstr "" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "" @@ -223,7 +235,8 @@ msgstr "" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "" @@ -320,6 +333,7 @@ msgstr "" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "" @@ -331,6 +345,7 @@ msgstr "" #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "" @@ -338,6 +353,7 @@ msgstr "" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "" @@ -346,6 +362,7 @@ msgstr "" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -371,6 +388,7 @@ msgstr "" #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "" @@ -378,6 +396,7 @@ msgstr "" #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "" @@ -385,6 +404,7 @@ msgstr "" #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "" @@ -393,6 +413,7 @@ msgstr "" #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "" @@ -400,6 +421,7 @@ msgstr "" #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "" @@ -407,6 +429,7 @@ msgstr "" #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "" @@ -414,6 +437,7 @@ msgstr "" #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "" @@ -421,6 +445,7 @@ msgstr "" #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "" @@ -428,6 +453,7 @@ msgstr "" #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "" @@ -435,6 +461,7 @@ msgstr "" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "" @@ -442,6 +469,7 @@ msgstr "" #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "" @@ -449,6 +477,7 @@ msgstr "" #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "" @@ -456,6 +485,7 @@ msgstr "" #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "" @@ -463,6 +493,7 @@ msgstr "" #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "" @@ -470,6 +501,7 @@ msgstr "" #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "" @@ -477,6 +509,7 @@ msgstr "" #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "" @@ -484,6 +517,7 @@ msgstr "" #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "" @@ -491,6 +525,7 @@ msgstr "" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "" @@ -499,6 +534,7 @@ msgstr "" #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "" @@ -507,6 +543,7 @@ msgstr "" #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "" @@ -515,6 +552,7 @@ msgstr "" #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "" @@ -522,6 +560,7 @@ msgstr "" #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "" @@ -529,6 +568,7 @@ msgstr "" #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "" @@ -536,6 +576,7 @@ msgstr "" #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "" @@ -543,6 +584,7 @@ msgstr "" #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "" @@ -550,6 +592,7 @@ msgstr "" #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "" @@ -557,6 +600,7 @@ msgstr "" #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "" @@ -564,6 +608,7 @@ msgstr "" #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "" @@ -571,6 +616,7 @@ msgstr "" #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "" @@ -578,6 +624,7 @@ msgstr "" #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "" @@ -585,6 +632,7 @@ msgstr "" #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "" @@ -592,6 +640,7 @@ msgstr "" #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "" @@ -600,6 +649,7 @@ msgstr "" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "" @@ -608,6 +658,7 @@ msgstr "" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "" @@ -616,6 +667,7 @@ msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "" @@ -623,6 +675,7 @@ msgstr "" #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "" @@ -630,6 +683,7 @@ msgstr "" #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "" @@ -638,6 +692,7 @@ msgstr "" #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -648,6 +703,7 @@ msgstr "" #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "" @@ -655,6 +711,7 @@ msgstr "" #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "" @@ -662,6 +719,7 @@ msgstr "" #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -671,6 +729,7 @@ msgstr "" #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "" @@ -678,6 +737,7 @@ msgstr "" #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "" @@ -685,6 +745,7 @@ msgstr "" #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "" @@ -693,6 +754,7 @@ msgstr "" #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "" @@ -701,6 +763,7 @@ msgstr "" #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "" @@ -709,6 +772,7 @@ msgstr "" #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "" @@ -716,6 +780,7 @@ msgstr "" #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "" @@ -723,6 +788,7 @@ msgstr "" #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "" @@ -730,6 +796,7 @@ msgstr "" #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "" @@ -738,6 +805,7 @@ msgstr "" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "" @@ -745,6 +813,7 @@ msgstr "" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "" @@ -758,6 +827,7 @@ msgstr "" #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "" @@ -844,10 +914,14 @@ msgstr "" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "" @@ -856,11 +930,15 @@ msgstr "" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "" @@ -868,17 +946,20 @@ msgstr "" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "" #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "" @@ -886,18 +967,20 @@ msgstr "" #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "" @@ -906,11 +989,13 @@ msgstr "" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "" @@ -918,6 +1003,7 @@ msgstr "" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "" @@ -928,12 +1014,14 @@ msgstr "" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "" @@ -941,55 +1029,66 @@ msgstr "" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "" #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "" @@ -1057,6 +1156,10 @@ msgstr "" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1091,6 +1194,8 @@ msgstr "" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1170,6 +1275,12 @@ msgstr "" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1242,6 +1353,8 @@ msgstr "" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "" @@ -1292,6 +1405,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "" @@ -1303,6 +1417,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "" @@ -1314,6 +1429,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "" @@ -1327,6 +1443,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "" @@ -1341,6 +1458,8 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "" @@ -1352,6 +1471,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "" @@ -1365,6 +1485,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "" @@ -1393,6 +1514,9 @@ msgstr "" #. line 7 #. 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 @@ -1416,6 +1540,8 @@ msgstr "" #. 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 @@ -1450,6 +1576,9 @@ msgstr "" #. line 23 #. line 12 #. 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 @@ -1478,6 +1607,8 @@ msgstr "" #. 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 @@ -1569,6 +1700,10 @@ msgstr "" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1613,6 +1748,10 @@ msgstr "" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1657,6 +1796,10 @@ msgstr "" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1755,6 +1898,12 @@ msgstr "" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1763,38 +1912,43 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "" #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1813,6 +1967,9 @@ msgstr "" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1878,7 +2035,8 @@ msgstr "" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "" @@ -2023,6 +2181,15 @@ msgstr "" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2062,6 +2229,9 @@ msgstr "" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2081,6 +2251,8 @@ msgstr "" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2123,6 +2295,8 @@ msgstr "" #. 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" @@ -2217,6 +2391,15 @@ msgstr "" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2272,6 +2455,9 @@ msgstr "" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2310,6 +2496,9 @@ msgstr "" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2356,6 +2545,9 @@ msgstr "" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2400,6 +2592,10 @@ msgstr "" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2439,6 +2635,11 @@ msgstr "" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2500,6 +2701,8 @@ msgstr "" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2556,6 +2759,7 @@ msgstr "" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "" @@ -2573,6 +2777,9 @@ msgstr "" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2628,7 +2835,7 @@ msgstr "" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "" @@ -2662,41 +2869,54 @@ msgid "Your ban was filed on" msgstr "" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "" @@ -2718,21 +2938,28 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2756,10 +2983,14 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "" @@ -2781,21 +3012,28 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "" @@ -2814,6 +3052,10 @@ msgstr "" #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2882,6 +3124,8 @@ msgstr "" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3041,7 +3285,8 @@ msgstr "" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "" @@ -3053,6 +3298,7 @@ msgid "" msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3067,6 +3313,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3089,6 +3339,10 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3102,6 +3356,10 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3115,6 +3373,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3184,20 +3446,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3214,3 +3482,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/en_NZ/LC_MESSAGES/javascript.js b/inc/locale/en_NZ/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..e55b7a65 --- /dev/null +++ b/inc/locale/en_NZ/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Style:","File":"File","hide":"hide","show":"show","Show locked threads":"Show locked threads","Hide locked threads":"Hide locked threads","URL":"URL","Select":"Select","Remote":"Remote","Embed":"Embed","Oekaki":"Oekaki","hidden":"hidden","Show images":"Show images","Hide images":"Hide images","Password":"Password","Delete file only":"Delete file only","Delete":"Delete","Reason":"Reason","Report":"Report","Click reply to view.":"Click reply to view","Click to expand":"Click to expand","Hide expanded replies":"Hide expanded replies","Brush size":"Brush size","Set text":"Set text","Clear":"Clear","Save":"Save","Load":"Load","Toggle eraser":"Toggle rubber","Get color":"Get colour","Fill":"Fill","Use oekaki instead of file?":"Use oekaki instead of file?","Edit in oekaki":"Edit in oekaki","Enter some text":"Enter some text","Enter font or leave empty":"Enter font or leave empty","Forced anonymity":"Forced anonymity","enabled":"enabled","disabled":"disabled","Sun":"Sun","Mon":"Mon","Tue":"Tue","Wed":"Wed","Thu":"Thu","Fri":"Fri","Sat":"Sat","Catalog":"Catalogue","Submit":"Submit","Quick reply":"Quick reply","Posting mode: Replying to >>{0}<\/small>":"Posting mode: Replying to >>{0}<\/small>","Return":"Return","Expand all images":"Expand all images","Hello!":"Kia ora!","{0} users":"{0} users","(hide threads from this board)":"(hide threads from this board)","(show threads from this board)":"(show threads from this board)","No more threads to display":"No more threads to display","Loading...":"Loading...","Save as original filename":"Save as original filename","Reported post(s).":"Reported post(s).","An unknown error occured!":"An unknown error occurred!","Something went wrong... An unknown error occured!":"Something went wrong... An unknown error occurred!","Working...":"Working...","Posting... (#%)":"Posting... (#%)","Posted...":"Posted...","An unknown error occured when posting!":"An unknown error occurred when posting!","Posting...":"Posting...","Upload URL":"Upload URL","Spoiler Image":"Spoiler Image","Comment":"Comment","Quick Reply":"Quick Reply","Stop watching this thread":"Stop watching this thread","Watch this thread":"Watch this thread","Unpin this board":"Unpin this board","Pin this board":"Pin this board","Stop watching this board":"Stop watching this board","Watch this board":"Watch this board","Click on any image on this site to load it into oekaki applet":"Click on any image on this site to load it into oekaki applet","Sunday":"Sunday","Monday":"Monday","Tuesday":"Tuesday","Wednesday":"Wednesday","Thursday":"Thursday","Friday":"Friday","Saturday":"Saturday","January":"January","February":"February","March":"March","April":"April","May":"May","June":"June","July":"July","August":"August","September":"September","October":"October","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dec","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Your browser does not support HTML5 video.","[play once]":"[play once]","[loop]":"[loop]","WebM Settings":"WebM Settings","Expand videos inline":"Expand videos inline","Play videos on hover":"Play videos on hover","Default volume":"Default volume","Tree view":"Tree view","Shrink all images":"Shrink all images","Animate GIFs":"Animate GIFs","Unanimate GIFs":"Unanimate GIFs","WebM":"WebM","No new posts.":"No new posts.","No new threads.":"No new threads.","There are {0} new threads.":"There are {0} new threads.","There are {0} new posts in this thread.":"There are {0} new posts in this thread.","Options":"Options","General":"General","Storage: ":"Storage: ","Export":"Export","Import":"Import","Paste your storage data":"Paste your storage data","Erase":"Erase","":"Have a backup of your storage somewhere, as messing around here may render this website unusable for you.","User CSS":"User CSS","Update custom CSS":"Update custom CSS","Enter here your own CSS rules...":"Enter your own CSS rules here...","You can include CSS files from remote servers, for example:":"You can include CSS files from remote servers, for example:","User JS":"User JS","Update custom Javascript":"Update custom JavaScript","Enter here your own Javascript code...":"Enter here your own JavaScript code...","You can include JS files from remote servers, for example:":"You can include JS files from remote servers, for example:","Color IDs":"Colour IDs","Update":"Update"}; \ No newline at end of file diff --git a/inc/locale/en_NZ/LC_MESSAGES/javascript.po b/inc/locale/en_NZ/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..61cb48b2 --- /dev/null +++ b/inc/locale/en_NZ/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Zero , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_NZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_NZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Style:" + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "File" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "hide" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +msgstr "show" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "Show locked threads" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "Hide locked threads" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Select" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "Remote" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "Embed" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "hidden" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "Show images" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Hide images" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Password" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Delete file only" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Delete" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Reason" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Report" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Click reply to view" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Click to expand" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "Hide expanded replies" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Brush size" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "Set text" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Clear" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Save" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Load" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Toggle rubber" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Get colour" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Fill" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Use oekaki instead of file?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Edit in oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Enter some text" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Enter font or leave empty" + +#: ../../../../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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +msgid "Forced anonymity" +msgstr "Forced anonymity" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +msgid "enabled" +msgstr "enabled" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "disabled" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "Sun" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "Mon" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "Tue" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "Wed" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "Thu" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "Fri" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "Sat" + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Catalogue" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Submit" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Quick reply" + +#: ../../../../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 "Posting mode: Replying to >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Return" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Expand all images" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Kia ora!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} users" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +msgid "(hide threads from this board)" +msgstr "(hide threads from this board)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(show threads from this board)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "No more threads to display" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +msgstr "Loading..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Save as original filename" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "Reported post(s)." + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "An unknown error occurred!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Something went wrong... An unknown error occurred!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Working..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Posting... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Posted..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "An unknown error occurred when posting!" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Posting..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "Upload URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Spoiler Image" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "Comment" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +msgid "Quick Reply" +msgstr "Quick Reply" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Stop watching this thread" +msgstr "Stop watching this thread" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Watch this thread" +msgstr "Watch this thread" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Unpin this board" +msgstr "Unpin this board" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Pin this board" +msgstr "Pin this board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Stop watching this board" +msgstr "Stop watching this board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "Watch this board" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Click on any image on this site to load it into oekaki applet" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Sunday" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Monday" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Tuesday" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Wednesday" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Thursday" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "Friday" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Saturday" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "January" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "February" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "March" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "April" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "May" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "June" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "July" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "August" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "September" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "October" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "November" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "December" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "Jan" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "Apr" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "Jun" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "Jul" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "Aug" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "Oct" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "Dec" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "Your browser does not support HTML5 video." + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[play once]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[loop]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "WebM Settings" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "Expand videos inline" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "Play videos on hover" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "Default volume" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "Tree view" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "Shrink all images" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "Animate GIFs" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "Unanimate GIFs" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "No new posts." + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "No new threads." + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "There are {0} new threads." + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "There are {0} new posts in this thread." + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "Options" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "General" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "Storage: " + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "Export" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "Import" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "Paste your storage data" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "Erase" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "Are you sure you want to erase your storage? This involves your hidden threads, watched threads, post password, and more." + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "User CSS" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "Update custom CSS" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "Enter your own CSS rules here..." + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "If you want to make a redistributable style, be sure to have a Yotsuba B theme selected." + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "You can include CSS files from remote servers, for example:" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "User JS" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "Update custom JavaScript" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "Enter here your own JavaScript code..." + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "Have a backup of your storage somewhere, as messing around here may render this website unusable for you." + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "You can include JS files from remote servers, for example:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "Colour IDs" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "Update" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/en_NZ/LC_MESSAGES/tinyboard.mo b/inc/locale/en_NZ/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..b8fcce9d Binary files /dev/null and b/inc/locale/en_NZ/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/en_NZ/LC_MESSAGES/tinyboard.po b/inc/locale/en_NZ/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..8277ebd6 --- /dev/null +++ b/inc/locale/en_NZ/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3501 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Zero , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: English (New Zealand) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_NZ/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_NZ\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "second" +msgstr[1] "seconds" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minute" +msgstr[1] "minutes" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "hour" +msgstr[1] "hours" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "day" +msgstr[1] "days" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weeks" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "year" +msgstr[1] "years" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "Banned!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "Previous" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "Next" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "Error" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "An error has occurred." + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "Login" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "Post too long. Click here to view the full text." + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +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 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "Ban & Delete" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "Delete file" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "Are you sure you want to delete this file?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "Spoiler File" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "Are you sure you want to spoiler this file?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "Move reply to another board" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "Edit post" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "Delete" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "Are you sure you want to delete this?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "Delete all posts by IP" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "Are you sure you want to delete all posts by this IP address?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "Delete all posts by IP across all boards" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "Are you sure you want to delete all posts by this IP address, across all boards?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "Make thread not sticky" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "Make thread sticky" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "Allow thread to be bumped" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "Prevent thread from being bumped" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "Unlock thread" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "Lock thread" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +msgid "Move thread to another board" +msgstr "Move thread to another board" + +#. 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 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "You have been muted for unoriginal content." + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "New Topic" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "New Reply" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "All trademarks, copyrights, comments, and images on this page are owned by and are the responsibility of their respective parties." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Lurk some more before posting." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "You look like a bot." + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "Your browser sent an invalid or no HTTP referrer." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "The %s field was too long." + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "The body was too long." + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "The body was too short or empty." + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "You must upload an image." + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "The server failed to handle your upload." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "Unsupported image format." + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "Invalid board!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "Thread specified does not exist." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "Thread locked. You may not reply at this time." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "Thread has reached its maximum reply limit." + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "Thread has reached its maximum image limit." + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "You didn't make a post." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "Flood detected; Post discarded." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "Your request looks automated; Post discarded." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "Unoriginal content!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Unoriginal content! You have been muted for %d seconds." + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "You are muted! Expires in %d seconds." + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "Your IP address is listed in %s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "Too many links; flood detected." + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "Too many cites; post discarded." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "Too many cross-board links; post discarded." + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "You didn't select anything to delete." + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "You didn't select anything to report." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "You can't report that many posts at once." + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "Wrong password…" + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "Invalid image." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "Unknown file extension." + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "The file was too big." + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "That file already exists!" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "That file already exists in this thread!" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "You'll have to wait another %s before deleting that." + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "MIME type detection XSS exploit (IE) detected; post discarded." + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "Couldn't make sense of the URL of the video you tried to embed." + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "You seem to have mistyped the verification." + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "You are only allowed to unban %s users at a time. You tried to unban %u users." + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "Invalid username and/or password." + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "You are not a mod…" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "Invalid username and/or password. Your user may have been deleted or changed." + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "Invalid/malformed cookies." + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "Your browser didn't submit an input when it should have." + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "The %s field is required." + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "The %s field was invalid." + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "There is already a %s board." + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "You don't have permission to do that." + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "That post doesn't exist…" + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "Page not found." + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "That mod already exists!" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "That theme doesn't exist!" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "Invalid security token! Please go back and try again." + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "USER WAS BANNED FOR THIS POST" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "Confirm action" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "Could not find current version! (Check .installed)" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "Dashboard" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "There are no boards to search!" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "Search results" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "Edit board" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "Couldn't open board after creation." + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "New board" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "Noticeboard" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "News" + +#: ../../../../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 "Moderation log" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +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 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "New ban" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "Ban list" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "Move reply" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "Target and source board are the same." + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "Impossible to move thread; there is only one board." + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "Move thread" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "Edit user" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "Manage users" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "New PM for" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "Private message" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "PM inbox" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "Rebuild" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "Report queue" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "Config editor" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "Themes directory doesn't exist!" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "Cannot open themes directory; check permissions." + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "Manage themes" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "Installed theme: %s" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "Configuring theme: %s" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "Rebuilt theme: %s" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "Debug: Anti-spam" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "Debug: Recent posts" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "Debug: SQL" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "Database error: " + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "Banned?" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "You are not banned." + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "Go back" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "Error information" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "Delete Post" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "File" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "Password" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "Reason" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "Report" + +#: ../../../../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 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "Return to dashboard" + +#. 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 "Posting mode: Reply" + +#: ../../../../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 "Return" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "(No news to show.)" + +#: ../../../../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 "no subject" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "by" + +#. 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 "at" + +#. 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 reply" +msgstr[1] "%count% replies" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "File:" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "Spoiler Image" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "Reply" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "View All" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "Last 1 Post" +msgstr[1] "Last %count% Posts" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "1 post" +msgstr[1] "%count% posts" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "and" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "1 image reply" +msgstr[1] "%count% image replies" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "omitted. Click reply to view." + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "Name" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:44 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:88 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "Email" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "Subject" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "Update" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "Comment" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "Currently editing raw HTML." + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "Edit markup instead?" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "Edit raw HTML instead?" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "Verification" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "Or URL" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "Embed" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "Flags" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "Sticky" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "Lock" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "Raw HTML" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "(For file deletion.)" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "Post search is disabled" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "Wait a while before searching again, please." + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "Query too broad." + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "%d result in" +msgstr[1] "%d results in" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "No results." + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "Search" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "Ban appeal not found!" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "Ban appeals" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "New user" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "Impossible to promote/demote user." + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "Debug: APC" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "Your code contained PHP syntax errors. Please go back and correct them. PHP says: " + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "Boards" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "edit" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "Create new board" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "Messages" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "View all noticeboard entries" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "Administration" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "Change password" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "Configuration" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "Other" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "Debug" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "Anti-spam" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "Recent posts" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "SQL" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "User account" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "Logout" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "New post" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "Body" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "Post to noticeboard" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "delete" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "deleted?" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "Post news entry" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "Staff" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "Note" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "Date" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "Actions" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "remove" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "New note" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. 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 "Status" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "Expired" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "Active" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "no reason" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "Board" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "all boards" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "Set" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "Expires" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "never" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "Seen" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "Yes" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "No" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "Remove ban" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "Time" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "Action" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "(or subnet)" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "hidden" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "Message" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "public; attached to post" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "Length" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "New Ban" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "Phrase:" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "Posts" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "IP address notes" + +#: ../../../../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 "(Search is case-insensitive and based on keywords. To match exact phrases, use \"quotes\". Use an asterisk (*) for wildcard.)" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "There are no active bans." + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "IP address/mask" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "Duration" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "Unban selected" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "Username" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "Continue" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "Appeal time" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "Appeal reason" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "There are no reports." + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "That ban doesn't exist or is not for you." + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "You cannot appeal a ban of this length." + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "You cannot appeal this ban again." + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "There is already a pending appeal for this ban." + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "Unsupported file format: " + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "Failed to redraw image!" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "Failed to resize image!" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "You were banned! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "You are banned! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "You were banned from" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "You have been banned from" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "for the following reason:" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "for an unspecified reason." + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "Your ban was filed on" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "has since expired. Refresh the page to continue." + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "expires" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "from now, which is on" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "will not expire" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "Your IP address is" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "You were banned for the following post on" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "You submitted an appeal for this ban on" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "It is still pending" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "You appealed this ban on" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "and it was denied. You may not appeal this ban again." + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "You have submitted the maximum number of ban appeals allowed. You may not appeal this ban again." + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "and it was denied." + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "You may appeal this ban again. Please enter your reasoning below." + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "You last appealed this ban on" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "You may appeal this ban. Please enter your reasoning below." + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "IP address" + +#. 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 "Type" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "Last action" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "Unknown" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "none" + +#: ../../../../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 "Are you sure you want to demote yourself?" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "log" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "PM" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "Thread ID" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "Leave shadow thread" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "locks thread; replies to it with a link." + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "Target board" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "Select board" + +#. 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 "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." + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "Are you sure you want to do that?" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "Click to proceed to" + +#. 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 "You are probably seeing this message because JavaScript is disabled. This is a necessary security measure to prevent CSRF attacks." + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "Report date" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "Reported by" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "Discard abuse report" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "Discard all abuse reports by this IP address" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "From" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "Delete forever" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "Reply with quote" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "Send message" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "There are no themes available." + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "Version" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "Description" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "Thumbnail" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "Use theme" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "Reconfigure" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "Install" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "Uninstall" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "new; optional" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "Group" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "All boards" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "Create user" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "Save changes" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "Delete user" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "View more logs for this user." + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "Flag" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "None" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "Moved to %s." + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "Can't build the RecentPosts theme, because there are no boards to be fetched." + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "You have attempted to upload too many images!" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "Spoiler File" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "Bump order" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "Last reply" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "Creation date" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "Reply count" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "Random" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "Sort by" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "Image size" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "Small" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "Large" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "Post ID" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "Target thread" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "Post deletion is not allowed!" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "Unrecognized file size determination method." + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "Invalid flag selection!" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "exiftool failed!" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "Could not auto-orient image!" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "Could not strip EXIF metadata!" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "There was a problem processing your WebM." + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "Invalid WebM uploaded." + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "The uploaded WebM contains an audio or another type of additional stream." + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "The uploaded WebM is longer than " + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "Go to top" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "Don't show my flag" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "Very small" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "(no comment)" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/eo/LC_MESSAGES/javascript.po b/inc/locale/eo/LC_MESSAGES/javascript.po index b705ebd8..b76b1fe2 100644 --- a/inc/locale/eo/LC_MESSAGES/javascript.po +++ b/inc/locale/eo/LC_MESSAGES/javascript.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/eo/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgid "Delete" msgstr "Forviŝi" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Kialo" @@ -215,43 +215,45 @@ msgid "disabled" msgstr "malebligita" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Dim" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Lun" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Mar" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Mer" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Ĵaŭ" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Ven" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "Sab" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalogo" @@ -319,6 +321,7 @@ msgstr "Neniom plu fadenoj por vidigi" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Ŝarĝanta..." @@ -435,139 +438,140 @@ msgstr "Gvati ĉi tiun tabulon" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Klaku je iu ajn bildo en ĉi tiu retejo por ŝarĝigi ĝin al aplikaĵo oekaki" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Dimanĉo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Lundo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Mardo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Merkredo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Ĵaŭdo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Vendredo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Sabato" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Januaro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Februaro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Marto" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Aprilo" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Majo" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Junio" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Julio" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Aŭgusto" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Septembro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Oktobro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Novembro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Decembro" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Feb" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Apr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Aŭg" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Sep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Okt" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dec" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -606,16 +610,19 @@ msgid "Tree view" msgstr "Arba vido" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "Malgrandigi ĉiujn bildojn" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "Movigu GIF-miniaturojn" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "Haltigu GIF-miniaturojn" @@ -718,3 +725,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/eo/LC_MESSAGES/tinyboard.po b/inc/locale/eo/LC_MESSAGES/tinyboard.po index a71848ae..8a526541 100644 --- a/inc/locale/eo/LC_MESSAGES/tinyboard.po +++ b/inc/locale/eo/LC_MESSAGES/tinyboard.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/eo/)\n" "MIME-Version: 1.0\n" @@ -30,11 +30,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "sekundo" msgstr[1] "sekundoj" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -44,11 +46,13 @@ msgstr[1] "sekundoj" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minuto" msgstr[1] "minutoj" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -58,11 +62,13 @@ msgstr[1] "minutoj" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "horo" msgstr[1] "horoj" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -72,11 +78,13 @@ msgstr[1] "horoj" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "tago" msgstr[1] "tagoj" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -86,6 +94,7 @@ msgstr[1] "tagoj" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "semajno" @@ -100,6 +109,7 @@ msgstr[1] "semajnoj" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "jaro" @@ -109,7 +119,7 @@ msgstr[1] "jaroj" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Malpermesita!" @@ -123,6 +133,7 @@ msgstr "Malpermesita!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Antaŭa" @@ -136,7 +147,8 @@ msgstr "Antaŭa" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Sekvanta" @@ -227,7 +239,8 @@ msgstr "Transloki respondon al alia tabulo" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Redakti afiŝon" @@ -324,6 +337,7 @@ msgstr "Transloki fadenon al alia tabulo" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Vi mutiĝis pro maloriginala enhavo." @@ -335,6 +349,7 @@ msgstr "Vi mutiĝis pro maloriginala enhavo." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nova Temo" @@ -342,6 +357,7 @@ msgstr "Nova Temo" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Nova Respondo" @@ -350,6 +366,7 @@ msgstr "Nova Respondo" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -375,6 +392,7 @@ msgstr "Gvatu iom plu antaŭ afiŝi." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Vi ŝajnas kiel bot. " @@ -382,6 +400,7 @@ msgstr "Vi ŝajnas kiel bot. " #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Via retumilo sendis malvalidan aŭ nenian HTTP referer." @@ -389,6 +408,7 @@ msgstr "Via retumilo sendis malvalidan aŭ nenian HTTP referer." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "La %s tekstejo tro longis." @@ -397,6 +417,7 @@ msgstr "La %s tekstejo tro longis." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "La mesaĝo tro longis." @@ -404,6 +425,7 @@ msgstr "La mesaĝo tro longis." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "La mesaĝo tro mallongis aŭ estis malplena." @@ -411,6 +433,7 @@ msgstr "La mesaĝo tro mallongis aŭ estis malplena." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Vi devas alŝuti bildon." @@ -418,6 +441,7 @@ msgstr "Vi devas alŝuti bildon." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "La servilo malsukcesis prilabori vian alŝuton." @@ -425,6 +449,7 @@ msgstr "La servilo malsukcesis prilabori vian alŝuton." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Nesubtenita bildotipo." @@ -432,6 +457,7 @@ msgstr "Nesubtenita bildotipo." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Malvalida tabulo!" @@ -439,6 +465,7 @@ msgstr "Malvalida tabulo!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Specifita fadeno ne ekzistas." @@ -446,6 +473,7 @@ msgstr "Specifita fadeno ne ekzistas." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Fadeno fermita. Vi ne povas respondi nuntempe." @@ -453,6 +481,7 @@ msgstr "Fadeno fermita. Vi ne povas respondi nuntempe." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Fadeno atingis sian maksimuman limon de respondoj." @@ -460,6 +489,7 @@ msgstr "Fadeno atingis sian maksimuman limon de respondoj." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Fadeno atingis sian maksimuman limon de bildoj." @@ -467,6 +497,7 @@ msgstr "Fadeno atingis sian maksimuman limon de bildoj." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Vi ne faris afiŝon." @@ -474,6 +505,7 @@ msgstr "Vi ne faris afiŝon." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Inundon perceptita; Afiŝon forigita." @@ -481,6 +513,7 @@ msgstr "Inundon perceptita; Afiŝon forigita." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Via peto ŝajnas aŭtomata; Afiŝon forigita." @@ -488,6 +521,7 @@ msgstr "Via peto ŝajnas aŭtomata; Afiŝon forigita." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Maloriginala enhavo!" @@ -495,6 +529,7 @@ msgstr "Maloriginala enhavo!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Maloriginala enhavo! Vi mutiĝos dum %d sekundoj." @@ -503,6 +538,7 @@ msgstr "Maloriginala enhavo! Vi mutiĝos dum %d sekundoj." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Vi mutiĝis! Finiĝos post %d sekundoj." @@ -511,6 +547,7 @@ msgstr "Vi mutiĝis! Finiĝos post %d sekundoj." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Via IP adreso listiĝas en %s." @@ -519,6 +556,7 @@ msgstr "Via IP adreso listiĝas en %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Tro da ligiloj; inundon perceptita." @@ -526,6 +564,7 @@ msgstr "Tro da ligiloj; inundon perceptita." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Tro da citaĵoj; afiŝon forigita." @@ -533,6 +572,7 @@ msgstr "Tro da citaĵoj; afiŝon forigita." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Tro da trans-tabulaj ligoj; afiŝo forigita." @@ -540,6 +580,7 @@ msgstr "Tro da trans-tabulaj ligoj; afiŝo forigita." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Vi ne elektis ion por forviŝi." @@ -547,6 +588,7 @@ msgstr "Vi ne elektis ion por forviŝi." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Vi ne elektis ion por raporti." @@ -554,6 +596,7 @@ msgstr "Vi ne elektis ion por raporti." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Vi ne povas raporti tiom da afiŝoj samtempe." @@ -561,6 +604,7 @@ msgstr "Vi ne povas raporti tiom da afiŝoj samtempe." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Malĝusta pasvorto..." @@ -568,6 +612,7 @@ msgstr "Malĝusta pasvorto..." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Malvalida bildo." @@ -575,6 +620,7 @@ msgstr "Malvalida bildo." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Nekonata dosiertipo." @@ -582,6 +628,7 @@ msgstr "Nekonata dosiertipo." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maksimuma dosiera grandeco: %maxsz% bitokoj
Via dosiera grandeco: %filesz% bitokoj" @@ -589,6 +636,7 @@ msgstr "Maksimuma dosiera grandeco: %maxsz% bitokoj
Via dosiera grandeco: %fi #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "La dosiero tro grandis." @@ -596,6 +644,7 @@ msgstr "La dosiero tro grandis." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Tiu dosiero jam ekzistas!" @@ -604,6 +653,7 @@ msgstr "Tiu dosiero jam ekzistas!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Tiu dosiero jam ekzistas en ĉi tiu fadeno!" @@ -612,6 +662,7 @@ msgstr "Tiu dosiero jam ekzistas en ĉi tiu fadeno!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Vi devos esperi %s antaŭ vi povos forviŝi tion." @@ -620,6 +671,7 @@ msgstr "Vi devos esperi %s antaŭ vi povos forviŝi tion." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "MIME-tipo detection XSS exploit (IE) perceptita; afiŝon forigita." @@ -627,6 +679,7 @@ msgstr "MIME-tipo detection XSS exploit (IE) perceptita; afiŝon forigita." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "Maleblis kompreni la URL-on de la videon kiun vi provis enmeti." @@ -634,6 +687,7 @@ msgstr "Maleblis kompreni la URL-on de la videon kiun vi provis enmeti." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Vi ŝajne mistajpis la kontrolilon." @@ -642,6 +696,7 @@ msgstr "Vi ŝajne mistajpis la kontrolilon." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -652,6 +707,7 @@ msgstr "Vi nur eblas repermesi %s uzantojn samtempe. Vi provis repermesi %u uzan #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Malvalida salutnomo kaj/aŭ pasvorto." @@ -659,6 +715,7 @@ msgstr "Malvalida salutnomo kaj/aŭ pasvorto." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Vi ne estas estrarano..." @@ -666,6 +723,7 @@ msgstr "Vi ne estas estrarano..." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -675,6 +733,7 @@ msgstr "Malvalida salutnomo kaj/aŭ pasvorto. Via uzanto eble forviŝiĝis aŭ #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Malvalidaj/misformitaj cookie-oj." @@ -682,6 +741,7 @@ msgstr "Malvalidaj/misformitaj cookie-oj." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Via retumilo ne faris enigon kiam ĝi devis." @@ -689,6 +749,7 @@ msgstr "Via retumilo ne faris enigon kiam ĝi devis." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "La %s tekstejo endas." @@ -697,6 +758,7 @@ msgstr "La %s tekstejo endas." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "La %s tekstejo malvalidis." @@ -705,6 +767,7 @@ msgstr "La %s tekstejo malvalidis." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Jam ekzistas tabulo %s." @@ -713,6 +776,7 @@ msgstr "Jam ekzistas tabulo %s." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Vi ne havas permeson por fari tion." @@ -720,6 +784,7 @@ msgstr "Vi ne havas permeson por fari tion." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Tiu afiŝo ne ekzistas..." @@ -727,6 +792,7 @@ msgstr "Tiu afiŝo ne ekzistas..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Paĝon ne trovita." @@ -734,6 +800,7 @@ msgstr "Paĝon ne trovita." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Tiu estrarano jam ekzistas!" @@ -742,6 +809,7 @@ msgstr "Tiu estrarano jam ekzistas!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Tiu temo ne ekzistas!" @@ -749,6 +817,7 @@ msgstr "Tiu temo ne ekzistas!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Nevalida sekurecsigno! Bonvolu reiri kaj reprovu." @@ -762,6 +831,7 @@ msgstr "Nevalida sekurecsigno! Bonvolu reiri kaj reprovu." #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "UZANTO ESTIS MALPERMESITA PRO ĈI TIU AFIŜO" @@ -848,10 +918,14 @@ msgstr "Registro estrarana" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -860,11 +934,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Nova malpermeso" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Malpermesullisto" @@ -872,17 +950,20 @@ msgstr "Malpermesullisto" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Transloki respondon" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Cela kaj fonta tabuloj samas." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Maleblas transloki fadenon; ekzistas nur unu tabulo." @@ -890,18 +971,20 @@ msgstr "Maleblas transloki fadenon; ekzistas nur unu tabulo." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Transloki fadenon" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Redakti uzanton" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Administri uzantojn" @@ -910,11 +993,13 @@ msgstr "Administri uzantojn" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Nova PM por" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Privata mesaĝo" @@ -922,6 +1007,7 @@ msgstr "Privata mesaĝo" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "PM ricevujo" @@ -932,12 +1018,14 @@ msgstr "PM ricevujo" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Rekonstrui" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Raporta vico" @@ -945,55 +1033,66 @@ msgstr "Raporta vico" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Agordredaktilo" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Dosierujo de temoj ne ekzistas!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Maleblas malfermi dosierujo de temoj; kontrolu permesojn." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Administri temojn" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Instalita stilo: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Agordado stilon: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Rekonstruita stilon: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Malcimigo: Kontraŭrubmesaĝo" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Malcimigo: Freŝaj afiŝoj" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Malcimigo: SQL" @@ -1061,6 +1160,10 @@ msgstr "Forviŝi Afiŝon" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1095,6 +1198,8 @@ msgstr "Dosiero" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1174,6 +1279,12 @@ msgstr "Pasvorto" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1246,6 +1357,8 @@ msgstr "nenia temo" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "per" @@ -1296,6 +1409,7 @@ msgstr "Cenzuri Bildon" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Respondi" @@ -1307,6 +1421,7 @@ msgstr "Respondi" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Vidi ĉion" @@ -1318,6 +1433,7 @@ msgstr "Vidi ĉion" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Lasta afiŝo" @@ -1331,6 +1447,7 @@ msgstr[1] "Lastaj %count% afiŝoj" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "Unu afiŝo" @@ -1345,6 +1462,8 @@ msgstr[1] "%count% afiŝoj" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "kaj" @@ -1356,6 +1475,7 @@ msgstr "kaj" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 bildhava respondo" @@ -1369,6 +1489,7 @@ msgstr[1] "%count% bildhavaj respondoj" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "malinkluzivas. Klaku respondi por vidi." @@ -1397,6 +1518,9 @@ msgstr "malinkluzivas. Klaku respondi por vidi." #. line 7 #. 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 @@ -1420,6 +1544,8 @@ msgstr "Nomo" #. 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 @@ -1454,6 +1580,9 @@ msgstr "Retpoŝtadreso" #. line 23 #. line 12 #. 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 @@ -1482,6 +1611,8 @@ msgstr "Ĝisdatigi" #. 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 @@ -1573,6 +1704,10 @@ msgstr "Flagoj" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1617,6 +1752,10 @@ msgstr "Glui" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1661,6 +1800,10 @@ msgstr "Fermi" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1759,6 +1902,12 @@ msgstr "Neniaj rezultoj." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1767,38 +1916,43 @@ msgstr "Neniaj rezultoj." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Serĉi" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Apelacion ne trovita!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Malpermesaj apelacioj" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Nova uzanto" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Maleblas promocii/malpromocii uzanton." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1817,6 +1971,9 @@ msgstr "Via kodo enhavis PHP sintaksajn erarojn. Bonvolu reiri kaj kontroli ilin #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1882,7 +2039,8 @@ msgstr "Kontraŭrubmesaĝo" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Freŝaj afiŝoj" @@ -2027,6 +2185,15 @@ msgstr "Afiŝi novaĵon" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2066,6 +2233,9 @@ msgstr "Stabo" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2085,6 +2255,8 @@ msgstr "Noto" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2127,6 +2299,8 @@ msgstr "Nova noto" #. 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" @@ -2221,6 +2395,15 @@ msgstr "nenial" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2276,6 +2459,9 @@ msgstr "ĉiuj tabuloj" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2314,6 +2500,9 @@ msgstr "Set" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2360,6 +2549,9 @@ msgstr "neniam" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2404,6 +2596,10 @@ msgstr "Forigi malpermeson" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2443,6 +2639,11 @@ msgstr "Tempo" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2504,6 +2705,8 @@ msgstr "Nova Malpermeso" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2560,6 +2763,7 @@ msgstr "Daŭro" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Repermesi elektita" @@ -2577,6 +2781,9 @@ msgstr "Repermesi elektita" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2632,7 +2839,7 @@ msgstr "Malsukcesis reafiŝi la bildon!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Malsukcesis adapti grandecon de la bildo!" @@ -2666,41 +2873,54 @@ msgid "Your ban was filed on" msgstr "Via malpermeso fajlis je" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "jam finiĝis. Refreŝigu la paĝon por daŭri." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "finiĝas" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "ekde nun, kiu estas je" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "ne finiĝos" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Via IP adreso estas" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Vi fariĝis malpermesita pro la jena afiŝo je" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Vi sendis apelacion por ĉi tiu malpermeso je" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Ĝi jam pritraktatas." @@ -2722,21 +2942,28 @@ msgstr "Ĝi jam pritraktatas." #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Vi apelaciis ĉi tiun malpermeson je" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "kaj ĝi estas forneiita.. Vi ne povas apelacii ĉi tiun malpermeson denove." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2760,10 +2987,14 @@ msgstr "Vi sendis la maksimuman kiomon de apelacioj akcepteblaj. Vi ne povas ape #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "kaj malakceptiĝis." @@ -2785,21 +3016,28 @@ msgstr "kaj malakceptiĝis." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Vi povas apelacii ĉi tiun malpermeson denove. Bonvolu enskribi viajn kialojn suben." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Vi laste apelaciis ĉi tiun malpermeson je" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Vi povas apelacii ĉi tiun malpermeson. Bonvolu enskribi viajn kialojn suben." @@ -2818,6 +3056,10 @@ msgstr "Vi povas apelacii ĉi tiun malpermeson. Bonvolu enskribi viajn kialojn s #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2886,6 +3128,8 @@ msgstr "fermas fadenon; respondas al ĝi kun ligilo." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3045,7 +3289,8 @@ msgstr "Neniom" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Translokita al %s." @@ -3057,6 +3302,7 @@ msgid "" msgstr "Maleblas konstrui la RecentPosts temo, ĉar ne estas tabuloj por trovi." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "Vi klopodis alŝuti tro da dosieroj! " @@ -3071,6 +3317,10 @@ msgstr "Cenzuri dosieron" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3093,6 +3343,10 @@ msgstr "Lasta respondo" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3106,6 +3360,10 @@ msgstr "Tago de kreo" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3119,6 +3377,10 @@ msgstr "Nombro da respondoj" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3188,20 +3450,26 @@ msgstr "Malsukcesis aŭtomate turni la bildon!" msgid "Could not strip EXIF metadata!" msgstr "Malsukcesis forviŝi la EXIFajn datumojn!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3218,3 +3486,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/es_ES/LC_MESSAGES/javascript.po b/inc/locale/es_ES/LC_MESSAGES/javascript.po index 74a4ec6d..bf23a114 100644 --- a/inc/locale/es_ES/LC_MESSAGES/javascript.po +++ b/inc/locale/es_ES/LC_MESSAGES/javascript.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgid "Delete" msgstr "Eliminar" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Razón" @@ -215,43 +215,45 @@ msgid "disabled" msgstr "desactivado" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Dom" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Lun" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Mar" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Mie" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Jue" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Vie" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Catálogo" @@ -319,6 +321,7 @@ msgstr "No hay más hilos para mostrar" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Cargando..." @@ -435,139 +438,140 @@ msgstr "Ver este hilo" 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 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Domingo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Lunes" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Martes" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Miércoles" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Jueves" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Viernes" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Sábado" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Enero" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Febrero" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Marzo" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Abril" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Mayo" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Junio" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Julio" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Agosto" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Septiembre" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Octubre" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Noviembre" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Diciembre" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Ene" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Feb" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Abr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Aug" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Sep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Oct" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dic" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -606,16 +610,19 @@ msgid "Tree view" msgstr "Vista tipo árbol" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "Encoger todas las imágenes" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "Animar GIFs" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "No animar GIFs" @@ -718,3 +725,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo index 10a28912..916f1610 100644 Binary files a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo 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 index c4f374fe..619e42ad 100644 --- a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po +++ b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -29,11 +29,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "segundo" msgstr[1] "segundos" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -43,11 +45,13 @@ msgstr[1] "segundos" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minuto" msgstr[1] "minutos" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -57,11 +61,13 @@ msgstr[1] "minutos" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "hora" msgstr[1] "horas" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -71,11 +77,13 @@ msgstr[1] "horas" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "día" msgstr[1] "días" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -85,6 +93,7 @@ msgstr[1] "días" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "semana" @@ -99,6 +108,7 @@ msgstr[1] "semanas" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "año" @@ -108,7 +118,7 @@ msgstr[1] "años" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Baneado!" @@ -122,6 +132,7 @@ msgstr "Baneado!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Anterior" @@ -135,7 +146,8 @@ msgstr "Anterior" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Siguiente" @@ -226,7 +238,8 @@ msgstr "Mover respuesta a otro foro" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Editar post" @@ -323,6 +336,7 @@ msgstr "Mover hilo a otro tablón" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Fuiste muteado por contenido poco original." @@ -334,6 +348,7 @@ msgstr "Fuiste muteado por contenido poco original." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nuevo Hilo" @@ -341,6 +356,7 @@ msgstr "Nuevo Hilo" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Nueva Respuesta" @@ -349,6 +365,7 @@ msgstr "Nueva Respuesta" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -374,6 +391,7 @@ msgstr "Lurkea algo más antes de postear." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Pareces un bot, chico rudo de internet." @@ -381,6 +399,7 @@ msgstr "Pareces un bot, chico rudo de internet." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Tu navegador no envió una referencia, o ésta fue inválida." @@ -388,6 +407,7 @@ msgstr "Tu navegador no envió una referencia, o ésta fue inválida." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "El campo %s es muy largo." @@ -396,6 +416,7 @@ msgstr "El campo %s es muy largo." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "El mensaje es muy largo." @@ -403,6 +424,7 @@ msgstr "El mensaje es muy largo." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "El mensaje es muy corto o está vacío." @@ -410,6 +432,7 @@ msgstr "El mensaje es muy corto o está vacío." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Debes subir una imagen." @@ -417,6 +440,7 @@ msgstr "Debes subir una imagen." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "El servidor falló al subir tu imagen." @@ -424,6 +448,7 @@ msgstr "El servidor falló al subir tu imagen." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Formato de imagen no soportado." @@ -431,6 +456,7 @@ msgstr "Formato de imagen no soportado." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Tablón inválido!" @@ -438,6 +464,7 @@ msgstr "Tablón inválido!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Hilo específicado no existe." @@ -445,6 +472,7 @@ msgstr "Hilo específicado no existe." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Hilo cerrado. No puedes responder en este momento." @@ -452,6 +480,7 @@ msgstr "Hilo cerrado. No puedes responder en este momento." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "El hilo llegó al límite de respuestas." @@ -459,6 +488,7 @@ msgstr "El hilo llegó al límite de respuestas." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "El hilo llegó al máximo de imágenes permitido" @@ -466,6 +496,7 @@ msgstr "El hilo llegó al máximo de imágenes permitido" #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "No has hecho ningún post." @@ -473,6 +504,7 @@ msgstr "No has hecho ningún post." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Flood detectado; Post descartado." @@ -480,6 +512,7 @@ msgstr "Flood detectado; Post descartado." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Tu respuesta parece automática; Post descartado." @@ -487,6 +520,7 @@ msgstr "Tu respuesta parece automática; Post descartado." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Contenido no original!" @@ -494,6 +528,7 @@ msgstr "Contenido no original!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Contenido poco original! Fuiste muteado durante %d segundos." @@ -502,6 +537,7 @@ msgstr "Contenido poco original! Fuiste muteado durante %d segundos." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Estás muteado! Expira en %d segundos." @@ -510,6 +546,7 @@ msgstr "Estás muteado! Expira en %d segundos." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Tu dirección IP está listada en %s." @@ -518,6 +555,7 @@ msgstr "Tu dirección IP está listada en %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Muchos links; flood detectado." @@ -525,6 +563,7 @@ msgstr "Muchos links; flood detectado." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Muchas citas; post descartado." @@ -532,6 +571,7 @@ msgstr "Muchas citas; post descartado." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Muchos links de otros tablones; post descartado." @@ -539,6 +579,7 @@ msgstr "Muchos links de otros tablones; post descartado." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "No has seleccionado nada para eliminar." @@ -546,6 +587,7 @@ msgstr "No has seleccionado nada para eliminar." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "No has seleccionado nada para reportar." @@ -553,6 +595,7 @@ msgstr "No has seleccionado nada para reportar." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "No puedes reportar varios posts a la vez." @@ -560,6 +603,7 @@ msgstr "No puedes reportar varios posts a la vez." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Contraseña incorrecta..." @@ -567,6 +611,7 @@ msgstr "Contraseña incorrecta..." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Imagen no válida." @@ -574,6 +619,7 @@ msgstr "Imagen no válida." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Extensión del archivo desconocida." @@ -581,6 +627,7 @@ msgstr "Extensión del archivo desconocida." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 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" @@ -588,6 +635,7 @@ msgstr "Peso máximo del archivo: %maxsz% bytes
Tu archivo pesa %filesz% byte #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "El archivo es muy grande." @@ -595,6 +643,7 @@ msgstr "El archivo es muy grande." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Ese archivo ya existe!" @@ -603,6 +652,7 @@ msgstr "Ese archivo ya existe!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Ese archivo ya existe en este hilo!" @@ -611,6 +661,7 @@ msgstr "Ese archivo ya existe en este hilo!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Tienes que esperar otros %s antes de eliminar eso." @@ -619,6 +670,7 @@ msgstr "Tienes que esperar otros %s antes de eliminar eso." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "MIME type detection XSS exploit (IE) detectado; post descartado." @@ -626,6 +678,7 @@ msgstr "MIME type detection XSS exploit (IE) detectado; post descartado." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 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." @@ -633,6 +686,7 @@ msgstr "No tiene sentido la URL del vídeo que has intentado incrustar." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Parece que escribiste mal la verificación." @@ -641,6 +695,7 @@ msgstr "Parece que escribiste mal la verificación." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -651,6 +706,7 @@ msgstr "Sólo estás permitido desbanear %s usuarios a la vez. Has intentado des #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Nombre de usuario y/o contraseña no válida." @@ -658,6 +714,7 @@ msgstr "Nombre de usuario y/o contraseña no válida." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "No eres un mod..." @@ -665,6 +722,7 @@ msgstr "No eres un mod..." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -674,6 +732,7 @@ msgstr "Nombre de usuario y/o contraseña no válida. Puede que tu usuario fue e #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Cookies no válidas/malformadas." @@ -681,6 +740,7 @@ msgstr "Cookies no válidas/malformadas." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla." @@ -688,6 +748,7 @@ msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Es necesario el campo %s." @@ -696,6 +757,7 @@ msgstr "Es necesario el campo %s." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "No es válido el campo %s." @@ -704,6 +766,7 @@ msgstr "No es válido el campo %s." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Ya hay el tablón %s." @@ -712,6 +775,7 @@ msgstr "Ya hay el tablón %s." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "No tienes permisos para hacer eso." @@ -719,6 +783,7 @@ msgstr "No tienes permisos para hacer eso." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Ese post no existe..." @@ -726,6 +791,7 @@ msgstr "Ese post no existe..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Página no encontrada." @@ -733,6 +799,7 @@ msgstr "Página no encontrada." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Ese mod ya existe!" @@ -741,6 +808,7 @@ msgstr "Ese mod ya existe!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Ese hilo no existe!" @@ -748,6 +816,7 @@ msgstr "Ese hilo no existe!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 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." @@ -761,6 +830,7 @@ msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "USUARIO FUE BANEADO DE ESTE POST" @@ -847,10 +917,14 @@ msgstr "Log de moderación" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -859,11 +933,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Nuevo baneo" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Lista de baneos" @@ -871,17 +949,20 @@ msgstr "Lista de baneos" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Mover respuesta" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 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 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Imposible al mover hilo; sólo hay un tablón." @@ -889,18 +970,20 @@ msgstr "Imposible al mover hilo; sólo hay un tablón." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Mover hilo" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Editar usuarios" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Gestionar usuarios" @@ -909,11 +992,13 @@ msgstr "Gestionar usuarios" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Nuevo MP para" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Mensaje privado" @@ -921,6 +1006,7 @@ msgstr "Mensaje privado" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Bandeja de MP" @@ -931,12 +1017,14 @@ msgstr "Bandeja de MP" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Reconstruir" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Reportar cola" @@ -944,55 +1032,66 @@ msgstr "Reportar cola" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Configurar editor" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "El directorio de temas no existe!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 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 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Gestionar temas" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Tema instalado: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Configurando tema: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Reconstruir tema: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Depurar: Anti-spam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Depurar: Posts recientes" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Depurar: SQL" @@ -1060,6 +1159,10 @@ msgstr "Eliminar Post" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1094,6 +1197,8 @@ msgstr "Archivo" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1173,6 +1278,12 @@ msgstr "Contraseña" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1245,6 +1356,8 @@ msgstr "sin tema" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "por" @@ -1295,6 +1408,7 @@ msgstr "Spoiler" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Responder" @@ -1306,6 +1420,7 @@ msgstr "Responder" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Ver todo" @@ -1317,6 +1432,7 @@ msgstr "Ver todo" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Último post" @@ -1330,6 +1446,7 @@ msgstr[1] "Últimos %count% posts" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 post" @@ -1344,6 +1461,8 @@ msgstr[1] "%count% posts" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "y" @@ -1355,6 +1474,7 @@ msgstr "y" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 imagen" @@ -1368,6 +1488,7 @@ msgstr[1] "%count% imágenes" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "omitidos. Click Responder para ver." @@ -1396,6 +1517,9 @@ msgstr "omitidos. Click Responder para ver." #. line 7 #. 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 @@ -1419,6 +1543,8 @@ msgstr "Nombre" #. 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 @@ -1453,6 +1579,9 @@ msgstr "Email" #. line 23 #. line 12 #. 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 @@ -1481,6 +1610,8 @@ msgstr "Actualización" #. 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 @@ -1572,6 +1703,10 @@ msgstr "Banderas" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1616,6 +1751,10 @@ msgstr "Marca" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1660,6 +1799,10 @@ msgstr "Bloquear" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1758,6 +1901,12 @@ msgstr "Ningún resultado." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1766,38 +1915,43 @@ msgstr "Ningún resultado." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Buscar" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Apelación del ban no encontrado!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Apelaciones de bans" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Nuevo usuario" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Imposible al ascender/degradar usuario." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Depurar: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1816,6 +1970,9 @@ msgstr "Tu código contiene errores de sintaxis PHP. Por favor, vuelve atrás y #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1881,7 +2038,8 @@ msgstr "Anti-spam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Post recientes" @@ -2026,6 +2184,15 @@ msgstr "Postear nueva entrada" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2065,6 +2232,9 @@ msgstr "Staff" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2084,6 +2254,8 @@ msgstr "Nota" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2126,6 +2298,8 @@ msgstr "Nueva nota" #. 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" @@ -2220,6 +2394,15 @@ msgstr "Sin razón" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2275,6 +2458,9 @@ msgstr "Todos los tablones" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2313,6 +2499,9 @@ msgstr "Conjunto" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2359,6 +2548,9 @@ msgstr "nunca" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2403,6 +2595,10 @@ msgstr "Eliminar baneo" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2442,6 +2638,11 @@ msgstr "Tiempo" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2503,6 +2704,8 @@ msgstr "Nuevo Ban" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2559,6 +2762,7 @@ msgstr "Duración" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Desban seleccionado" @@ -2576,6 +2780,9 @@ msgstr "Desban seleccionado" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2631,7 +2838,7 @@ 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 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Fallo al redimensionar la imagen!" @@ -2665,41 +2872,54 @@ msgid "Your ban was filed on" msgstr "Tu ban fue presentado en" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 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 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "expira" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "a partir de ahora, que está en" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "no va a expirar" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Tu dirección IP es" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Fuiste baneado por el siguiente post en" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 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 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Sigue pendiente" @@ -2721,21 +2941,28 @@ msgstr "Sigue pendiente" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Apelaste este ban en" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 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 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2759,10 +2986,14 @@ msgstr "Has alcanzado el número máximo de apelaciones permitido. Ya no puedes #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "y fue rechazado." @@ -2784,21 +3015,28 @@ msgstr "y fue rechazado." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 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 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Tu última apelación de este ban es" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Ya puedes apelar este ban. Por favor, introduce abajo el porqué." @@ -2817,6 +3055,10 @@ msgstr "Ya puedes apelar este ban. Por favor, introduce abajo el porqué." #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2885,6 +3127,8 @@ msgstr "bloqueas el hilo; las respuestas irán en un link." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3044,7 +3288,8 @@ msgstr "Nada" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Movido a %s." @@ -3056,6 +3301,7 @@ msgid "" msgstr "No se puede generar el tema de RecentPosts; no hay ningún tablón para generar." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "¡Has intentado subir demasiadas imágenes!" @@ -3070,6 +3316,10 @@ msgstr "Archivo spoiler" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3092,6 +3342,10 @@ msgstr "Última respuesta" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3105,6 +3359,10 @@ msgstr "Fecha de creación" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3118,6 +3376,10 @@ msgstr "Número de respuestas" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3187,20 +3449,26 @@ msgstr "No se pudo orientar automaticamente la imagen." msgid "Could not strip EXIF metadata!" msgstr "No se pudieron eliminar los metadatos EXIF" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3217,3 +3485,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/es_MX/LC_MESSAGES/javascript.js b/inc/locale/es_MX/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..f8a3b262 --- /dev/null +++ b/inc/locale/es_MX/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Estilo:","File":"Archivo","hide":"ocultar","show":"mostrar","Show locked threads":"Mostrar ","Hide locked threads":"Esconder hilos cerrados","URL":"URL","Select":"Seleccionar","Remote":"Remoto","Embed":"Insertar","Oekaki":"Oekaki","hidden":"oculto","Show images":"Mostrar imagenes","Hide images":"Esconder imagenes","Password":"Contrase\u00f1a","Delete file only":"Solo borrar el archivo","Delete":"Borrar","Reason":"Razon","Report":"Reportar","Click reply to view.":"Da clic en Respuesta para ver","Click to expand":"Clic para expander","Hide expanded replies":"Esconder respuestas expandidas","Brush size":"Tama\u00f1o del pincel","Clear":"Limpiar","Save":"Guardar","Load":"Cargar","Get color":"Obtener color","Fill":"Rellenar","Use oekaki instead of file?":"\u00bfUsar oekaki en lugar del archivo?","Edit in oekaki":"Editar en oekaki","Enter some text":"Escribe algun texto","Enter font or leave empty":"Ingrese fuente o deje en blanco","Forced anonymity":"Anonimato Forzado","enabled":"activado","disabled":"desactivado","Sun":"Dom","Mon":"Lun","Tue":"Mar","Wed":"Mie","Thu":"Jue","Fri":"Vie","Sat":"Sab","Catalog":"Catalogo","Submit":"Enviar","Quick reply":"Respuesta rapida","Posting mode: Replying to >>{0}<\/small>":"Modo de posteo: Respondiendo a >>{0}<\/small>","Return":"Regresar","Expand all images":"Expandir todas las imagenes","Hello!":"\u00a1Hola!","{0} users":"{0} usuarios","(hide threads from this board)":"(esconder hilos de este tablon)","(show threads from this board)":"(mostrar hilos de este tablon)","No more threads to display":"No hay mas hilos para mostrar","Loading...":"Cargando","Save as original filename":"Guardar con el nombre original del archivo","Reported post(s).":"Post(s) reportado(s)","An unknown error occured!":"\u00a1Un error desconocido a ocurrido!","Something went wrong... An unknown error occured!":"Algo anda mal... \u00a1Un error desconocido a ocurrido!","Working...":"Trabajando...","Posting... (#%)":"Publicando... (#%)","Posted...":"Publicado...","An unknown error occured when posting!":"\u00a1Un error desconocido ocurrio al publicar!","Posting...":"Publicando...","Upload URL":"Subir URL","Spoiler Image":"Imagen con Spoiler","Comment":"Comentario","Quick Reply":"Respuesta Rapida","Stop watching this thread":"Dejar de seguir este hilo","Watch this thread":"Seguir este hilo","Unpin this board":"Desmarcar este tablon","Pin this board":"Marcar este tablon","Stop watching this board":"Dejar de seguir este tablon","Watch this board":"Seguir este tablon","Click on any image on this site to load it into oekaki applet":"Da clic en cualquier imagen en este sitio para cargarla en el oekaki","Sunday":"Domingo","Monday":"Lunes","Tuesday":"Martes","Wednesday":"Miercoles","Thursday":"Jueves","Friday":"Viernes","Saturday":"Sabado","January":"Ener","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":"Ago","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dic","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Tu explorador no soporta videos en HTML5 :(","WebM Settings":"Configuracion de WebM","Default volume":"Volumen predeterminado","Shrink all images":"Encoger todas las imagenes","Animate GIFs":"Animar GIFs","Unanimate GIFs":"Desanimar GIFs","WebM":"WebM","No new posts.":"No hay nuevas respuestas","No new threads.":"No hay nuevos hilos","There are {0} new threads.":"Hay {0} hilos nuevos.","There are {0} new posts in this thread.":"Hay {0} nuevas respuestas en este hilo.","Options":"Opciones","General":"General","Export":"Exportar","Import":"Importar","Erase":"Borrar","User CSS":"CSS del Usuario","Update custom CSS":"Actualizar CSS personalizada","Enter here your own CSS rules...":"Ingresa tus propias reglas CSS...","User JS":"JS del Usuario","Update custom Javascript":"Actualizar Javascript personalizado","Enter here your own Javascript code...":"Ingresa aqui tu propio codigo Javascript..."}; \ No newline at end of file diff --git a/inc/locale/es_MX/LC_MESSAGES/javascript.po b/inc/locale/es_MX/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..d99f8e85 --- /dev/null +++ b/inc/locale/es_MX/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jose Maria Radillo Villegas , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 ../../../../js/upload-selection.js:69 +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 +#: ../../../../js/hide-images.js:63 +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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "Esconder hilos cerrados" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Seleccionar" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "Remoto" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "Insertar" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "oculto" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +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 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Esconder 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 "Solo borrar el archivo" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Borrar" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Razon" + +#: ../../../../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 "Da clic en Respuesta para ver" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Clic para expander" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "Esconder respuestas expandidas" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Tamaño del pincel" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "" + +#: ../../../../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 "" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Obtener color" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Rellenar" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "¿Usar oekaki en lugar del archivo?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Editar en oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Escribe algun texto" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Ingrese fuente o deje en blanco" + +#: ../../../../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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +msgid "Forced anonymity" +msgstr "Anonimato Forzado" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "desactivado" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "Dom" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "Lun" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "Mar" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "Mie" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "Jue" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "Vie" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "Sab" + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Catalogo" + +#: ../../../../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 rapida" + +#: ../../../../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 "Modo de posteo: Respondiendo a >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Regresar" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Expandir todas las imagenes" + +#: ../../../../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 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +msgid "(hide threads from this board)" +msgstr "(esconder hilos de este tablon)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(mostrar hilos de este tablon)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "No hay mas hilos para mostrar" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +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) reportado(s)" + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "¡Un error desconocido a ocurrido!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Algo anda mal... ¡Un error desconocido a ocurrido!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Trabajando..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Publicando... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Publicado..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "¡Un error desconocido ocurrio al publicar!" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Publicando..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "Subir URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Imagen con Spoiler" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "Comentario" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +msgid "Quick Reply" +msgstr "Respuesta Rapida" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Stop watching this thread" +msgstr "Dejar de seguir 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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Watch this thread" +msgstr "Seguir 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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Unpin this board" +msgstr "Desmarcar este tablon" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Pin this board" +msgstr "Marcar este tablon" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Stop watching this board" +msgstr "Dejar de seguir este tablon" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "Seguir este tablon" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Da clic en cualquier imagen en este sitio para cargarla en el oekaki" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Domingo" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Lunes" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Martes" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Miercoles" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Jueves" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "Viernes" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Sabado" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "Ener" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "Febrero" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "Marzo" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "Abril" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "Mayo" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "Junio" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "Julio" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "Agosto" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "Septiembre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "Octubre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "Noviembre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "Diciembre" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "Ene" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "Abr" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "Jun" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "Jul" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "Ago" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "Oct" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "Dic" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "Tu explorador no soporta videos en HTML5 :(" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "Configuracion de WebM" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "Volumen predeterminado" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "Encoger todas las imagenes" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "Animar GIFs" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "Desanimar GIFs" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "No hay nuevas respuestas" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "No hay nuevos hilos" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "Hay {0} hilos nuevos." + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "Hay {0} nuevas respuestas en este hilo." + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "Opciones" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "General" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "Exportar" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "Importar" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "Borrar" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "CSS del Usuario" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "Actualizar CSS personalizada" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "Ingresa tus propias reglas CSS..." + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "JS del Usuario" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "Actualizar Javascript personalizado" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "Ingresa aqui tu propio codigo Javascript..." + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/es_MX/LC_MESSAGES/tinyboard.mo b/inc/locale/es_MX/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..f08bd4ca Binary files /dev/null and b/inc/locale/es_MX/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/es_MX/LC_MESSAGES/tinyboard.po b/inc/locale/es_MX/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..a8855c43 --- /dev/null +++ b/inc/locale/es_MX/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3501 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Jose Maria Radillo Villegas , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Spanish (Mexico) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_MX/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_MX\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "hours" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dias" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +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 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +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 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "Siguiente" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "Error" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +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 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "Login" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "El hilo es muy largo. Clic aqui para verlo 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 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +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 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "Borrar 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 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "¿Estas seguro de que quieres borrar 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 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "Archivo con 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 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "¿Estas seguro que quieres poner spoiler a este archivo" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +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:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "" + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "" + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "" + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "" + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "" + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "" + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "" + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "" + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "" + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "" + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "" + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "" + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "" + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "" + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "" + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "" + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +msgid "IP" +msgstr "" + +#. line 171 +#: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367 +#: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "" + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "" + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/fi_FI/LC_MESSAGES/javascript.po b/inc/locale/fi_FI/LC_MESSAGES/javascript.po index 935077d5..ac44687a 100644 --- a/inc/locale/fi_FI/LC_MESSAGES/javascript.po +++ b/inc/locale/fi_FI/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgid "Delete" msgstr "Poista" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Syy" @@ -214,43 +214,45 @@ msgid "disabled" msgstr "ei käytössä" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Sun" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Maa" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Tii" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Kes" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Tor" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Per" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "Lau" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalogi" @@ -318,6 +320,7 @@ msgstr "Ei enempää lankoja näytettäväksi" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Lataa..." @@ -434,139 +437,140 @@ msgstr "Seuraa tätä lautaa" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Paina mitä tahansa kuvaa tällä sivulla ladataksesi sen oekaki ohjelmaan" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Sunnuntai" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Maanantai" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Tiistai" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Keskiviikko" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Torstai" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Perjantai" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Lauantai" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Tammikuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Helmikuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Maaliskuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Huhtikuu" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Toukokuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Kesäkuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Heinäkuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Elokuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Syyskuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Lokakuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Marraskuu" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Joulukuu" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Tammi" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Helmi" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Maalis" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Huhti" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Kesä" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Heinä" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Elo" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Syys" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Loka" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Marras" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Joulu\nJoulu" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AP" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "IP" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "ap" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "ip" @@ -605,16 +609,19 @@ msgid "Tree view" msgstr "Puunäkymä" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "Pienennä kaikki kuvat" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "Animoi GIFit" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "Poista GIFien animointi" @@ -717,3 +724,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo index 36d807ae..19aa3c95 100644 Binary files a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo and b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po index 5d4caa31..a49e667e 100644 --- a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po +++ b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -27,11 +27,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "sekunti" msgstr[1] "sekuntia" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -41,11 +43,13 @@ msgstr[1] "sekuntia" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minuutti" msgstr[1] "minuuttia" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -55,11 +59,13 @@ msgstr[1] "minuuttia" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "tunti" msgstr[1] "tuntia" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -69,11 +75,13 @@ msgstr[1] "tuntia" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "päivä" msgstr[1] "päivää" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -83,6 +91,7 @@ msgstr[1] "päivää" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "viikko" @@ -97,6 +106,7 @@ msgstr[1] "viikkoa" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "vuosi" @@ -106,7 +116,7 @@ msgstr[1] "vuotta" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Bannattu!" @@ -120,6 +130,7 @@ msgstr "Bannattu!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Edellinen" @@ -133,7 +144,8 @@ msgstr "Edellinen" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Seuraava" @@ -224,7 +236,8 @@ msgstr "Siirrä viesti toiselle laudalle" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Muokkaa postausta" @@ -321,6 +334,7 @@ msgstr "Siirrä lankasi toiselle laudalle" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Sinut on mykistetty ei-alkuperäisen sisällöln vuoksi" @@ -332,6 +346,7 @@ msgstr "Sinut on mykistetty ei-alkuperäisen sisällöln vuoksi" #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Uusi lanka" @@ -339,6 +354,7 @@ msgstr "Uusi lanka" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Uusi aihe" @@ -347,6 +363,7 @@ msgstr "Uusi aihe" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -372,6 +389,7 @@ msgstr "Lurkkaa lisää ennenkuin postaat." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Näytät botilta." @@ -379,6 +397,7 @@ msgstr "Näytät botilta." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Selaimesi ei lähettänyt tai lähetti vääristyneen HTTP-välitteen." @@ -386,6 +405,7 @@ msgstr "Selaimesi ei lähettänyt tai lähetti vääristyneen HTTP-välitteen." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "%s kenttä oli liian pitkä." @@ -394,6 +414,7 @@ msgstr "%s kenttä oli liian pitkä." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Viestin runko oli liian pitkä" @@ -401,6 +422,7 @@ msgstr "Viestin runko oli liian pitkä" #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Viestin runko oli liian lyhyt tai tyhjä." @@ -408,6 +430,7 @@ msgstr "Viestin runko oli liian lyhyt tai tyhjä." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Sinun täytyy antaa kuva." @@ -415,6 +438,7 @@ msgstr "Sinun täytyy antaa kuva." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Serveri ei pystynyt käsittelemään lähetystäsi." @@ -422,6 +446,7 @@ msgstr "Serveri ei pystynyt käsittelemään lähetystäsi." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Tukematon kuvaformaatti." @@ -429,6 +454,7 @@ msgstr "Tukematon kuvaformaatti." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Väärä lauta!" @@ -436,6 +462,7 @@ msgstr "Väärä lauta!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Lankaa ei ole olemassa." @@ -443,6 +470,7 @@ msgstr "Lankaa ei ole olemassa." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Lanka lukittu. Et saa vastata." @@ -450,6 +478,7 @@ msgstr "Lanka lukittu. Et saa vastata." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Lanka on ylittänyt bumplimitin." @@ -457,6 +486,7 @@ msgstr "Lanka on ylittänyt bumplimitin." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Lanka on ylittänyt sallittujen kuvien rajan." @@ -464,6 +494,7 @@ msgstr "Lanka on ylittänyt sallittujen kuvien rajan." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Et postannut." @@ -471,6 +502,7 @@ msgstr "Et postannut." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Floodia havaittu; viestiä ei huomioida." @@ -478,6 +510,7 @@ msgstr "Floodia havaittu; viestiä ei huomioida." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Pyyntösi vaikuttaa olevan automatisoitu; viestiä ei huomioida." @@ -485,6 +518,7 @@ msgstr "Pyyntösi vaikuttaa olevan automatisoitu; viestiä ei huomioida." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Ei-alkuperäistä sisältöä!" @@ -492,6 +526,7 @@ msgstr "Ei-alkuperäistä sisältöä!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Ei-alkuperäistä sisältöä! Sinut on mykistetty %d sekunniksi" @@ -500,6 +535,7 @@ msgstr "Ei-alkuperäistä sisältöä! Sinut on mykistetty %d sekunniksi" #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Olet mykistetty! Loppuu %d sekunnissa." @@ -508,6 +544,7 @@ msgstr "Olet mykistetty! Loppuu %d sekunnissa." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "IP osoitteesi on listattu %s" @@ -516,6 +553,7 @@ msgstr "IP osoitteesi on listattu %s" #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Liian monta linkkiä; floodia havaittu." @@ -523,6 +561,7 @@ msgstr "Liian monta linkkiä; floodia havaittu." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Liian monta lainausta; viestiä ei huomioida." @@ -530,6 +569,7 @@ msgstr "Liian monta lainausta; viestiä ei huomioida." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Liian monta lautojen välistä linkkiä; postausta ei huomioida." @@ -537,6 +577,7 @@ msgstr "Liian monta lautojen välistä linkkiä; postausta ei huomioida." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Et valinnut mitään poistettavaksi." @@ -544,6 +585,7 @@ msgstr "Et valinnut mitään poistettavaksi." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Et valinnut mitään raportoitavaksi." @@ -551,6 +593,7 @@ msgstr "Et valinnut mitään raportoitavaksi." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Et voi raportoida niin monta postausta kerralla." @@ -558,6 +601,7 @@ msgstr "Et voi raportoida niin monta postausta kerralla." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Väärä salasana..." @@ -565,6 +609,7 @@ msgstr "Väärä salasana..." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Väärä kuva." @@ -572,6 +617,7 @@ msgstr "Väärä kuva." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Tuntematon tiedostotyyppi." @@ -579,6 +625,7 @@ msgstr "Tuntematon tiedostotyyppi." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maksimi tiedoston koko: %maxsz% bittiä
Tiedostosi koko: %filesz% bittiä" @@ -586,6 +633,7 @@ msgstr "Maksimi tiedoston koko: %maxsz% bittiä
Tiedostosi koko: %filesz% bit #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Tiedosto oli liian suuri" @@ -593,6 +641,7 @@ msgstr "Tiedosto oli liian suuri" #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Tämä tiedosto on jo olemassa!" @@ -601,6 +650,7 @@ msgstr "Tämä tiedosto on jo olemassa!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Tuo tiedosto on jo tässä langassa!" @@ -609,6 +659,7 @@ msgstr "Tuo tiedosto on jo tässä langassa!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Sinun täytyy odottaa %s ennenkuin poistat tuon." @@ -617,6 +668,7 @@ msgstr "Sinun täytyy odottaa %s ennenkuin poistat tuon." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "MIME tyypin XSS hyökkäys (IE) havaittu; postausta ei huomioida." @@ -624,6 +676,7 @@ msgstr "MIME tyypin XSS hyökkäys (IE) havaittu; postausta ei huomioida." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "Upotteen URLista ei saatu selvää." @@ -631,6 +684,7 @@ msgstr "Upotteen URLista ei saatu selvää." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Et kirjoittanut oikein varmistusta." @@ -639,6 +693,7 @@ msgstr "Et kirjoittanut oikein varmistusta." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -649,6 +704,7 @@ msgstr "Voit poistaa bannit enintään %s käyttäjältä kerralla. Yritit poist #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Väärä käyttäjänimi ja/tai salasana." @@ -656,6 +712,7 @@ msgstr "Väärä käyttäjänimi ja/tai salasana." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Et ole modi..." @@ -663,6 +720,7 @@ msgstr "Et ole modi..." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -672,6 +730,7 @@ msgstr "Väärä käyttäjänimi ja/tai salasana. Käyttäjä on saatettu poista #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Väärät/väärennetyt keksit." @@ -679,6 +738,7 @@ msgstr "Väärät/väärennetyt keksit." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Selaimesi ei antanut syötettä kun piti." @@ -686,6 +746,7 @@ msgstr "Selaimesi ei antanut syötettä kun piti." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Kenttä %s vaaditaan." @@ -694,6 +755,7 @@ msgstr "Kenttä %s vaaditaan." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Kenttä %s oli epäkelpo." @@ -702,6 +764,7 @@ msgstr "Kenttä %s oli epäkelpo." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "On olemassa jo lauta %s." @@ -710,6 +773,7 @@ msgstr "On olemassa jo lauta %s." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Sinulla ei ole lupa tehdä tuota." @@ -717,6 +781,7 @@ msgstr "Sinulla ei ole lupa tehdä tuota." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Tuota postausta ei ole olemassa..." @@ -724,6 +789,7 @@ msgstr "Tuota postausta ei ole olemassa..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Sivua ei löytynyt." @@ -731,6 +797,7 @@ msgstr "Sivua ei löytynyt." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Tuo mode on jo olemassa!" @@ -739,6 +806,7 @@ msgstr "Tuo mode on jo olemassa!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Teemaa ei ole olemassa." @@ -746,6 +814,7 @@ msgstr "Teemaa ei ole olemassa." #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Väärä nimismies! Mene takaisin ja yritä uusiksi." @@ -759,6 +828,7 @@ msgstr "Väärä nimismies! Mene takaisin ja yritä uusiksi." #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "KÄYTTÄJÄ SAI BANNIA!" @@ -845,10 +915,14 @@ msgstr "Moderaatio logi" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -857,11 +931,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Uusi banni" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Bannit" @@ -869,17 +947,20 @@ msgstr "Bannit" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Siirrä vastaus" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Kohde ja lähdelauta ovat samat." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Ei voida siirtää lankaa; on vain yksi lauta." @@ -887,18 +968,20 @@ msgstr "Ei voida siirtää lankaa; on vain yksi lauta." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Siirrä aihe." #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Muokkaa käyttäjää." #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Hallitse käyttäjiä" @@ -907,11 +990,13 @@ msgstr "Hallitse käyttäjiä" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Uusi yksityisviesti käyttäjälle" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Yksityisviestit" @@ -919,6 +1004,7 @@ msgstr "Yksityisviestit" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Yksityisviestien postilaatikko" @@ -929,12 +1015,14 @@ msgstr "Yksityisviestien postilaatikko" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Rakenna uudelleen" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Ilmiannot" @@ -942,55 +1030,66 @@ msgstr "Ilmiannot" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Asetuseditori" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Teemakansiota ei ole olemassa!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Ei voitu avata teemakansiota, tarkista luvat." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Hallitse teemoja" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Asennettiin teema: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Konfiguroidaan teemaa: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Rakennetaan uudelleen teema: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug: Anti-spam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug: Viimeisimmät postaukset" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug: SQL" @@ -1058,6 +1157,10 @@ msgstr "Poista Viesti" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1092,6 +1195,8 @@ msgstr "Tiedosto" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1171,6 +1276,12 @@ msgstr "Salasana" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1243,6 +1354,8 @@ msgstr "ei aihetta" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "kanssa" @@ -1293,6 +1406,7 @@ msgstr "Spoiler Image" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Vastaa" @@ -1304,6 +1418,7 @@ msgstr "Vastaa" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Näytä kaikki" @@ -1315,6 +1430,7 @@ msgstr "Näytä kaikki" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Viimeisin postaus" @@ -1328,6 +1444,7 @@ msgstr[1] "Viimeisimmät %count% postausta" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "Yksi postaus" @@ -1342,6 +1459,8 @@ msgstr[1] "%count% postausta" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "ja" @@ -1353,6 +1472,7 @@ msgstr "ja" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "Yksi kuvavastaus" @@ -1366,6 +1486,7 @@ msgstr[1] "%count% kuvavastaus" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "jätetty näyttämättä. Paina vastaa näyttääksesi." @@ -1394,6 +1515,9 @@ msgstr "jätetty näyttämättä. Paina vastaa näyttääksesi." #. line 7 #. 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 @@ -1417,6 +1541,8 @@ msgstr "Nimi" #. 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 @@ -1451,6 +1577,9 @@ msgstr "Email" #. line 23 #. line 12 #. 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 @@ -1479,6 +1608,8 @@ msgstr "Päivitys" #. 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 @@ -1570,6 +1701,10 @@ msgstr "Arvot" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1614,6 +1749,10 @@ msgstr "Sticky" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1658,6 +1797,10 @@ msgstr "Lukko" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1756,6 +1899,12 @@ msgstr "Ei tuloksia" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1764,38 +1913,43 @@ msgstr "Ei tuloksia" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Etsi" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Bannivalitusta ei löydetty!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Bannivalitukset" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Uusi käyttäjä" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Mahdotonta ylentää/alentaa käyttäjää." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1814,6 +1968,9 @@ msgstr "Koodisi sisältää PHP syntaksivirheita. Mene takaisin ja korjaa. PHP s #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1879,7 +2036,8 @@ msgstr "Anti-spam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Viimeisimmät postaukset" @@ -2024,6 +2182,15 @@ msgstr "Postaa uutinen" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2063,6 +2230,9 @@ msgstr "Moderaattori" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2082,6 +2252,8 @@ msgstr "Muistutus" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2124,6 +2296,8 @@ msgstr "Uusi muistio" #. 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" @@ -2218,6 +2392,15 @@ msgstr "ei syytä" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2273,6 +2456,9 @@ msgstr "kaikki laudat" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2311,6 +2497,9 @@ msgstr "Aseta" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2357,6 +2546,9 @@ msgstr "ei koskaan" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2401,6 +2593,10 @@ msgstr "Poista banni" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2440,6 +2636,11 @@ msgstr "Aika" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2501,6 +2702,8 @@ msgstr "Uusi banni" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2557,6 +2760,7 @@ msgstr "Kesto" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Poista valittujen bannit" @@ -2574,6 +2778,9 @@ msgstr "Poista valittujen bannit" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2629,7 +2836,7 @@ msgstr "Kuvaa ei voitu uudelleenpiirtää." #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Kuvan kokoa ei voitu muokata." @@ -2663,41 +2870,54 @@ msgid "Your ban was filed on" msgstr "Bannisi luotiin" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "on nyt vanhentunut. Päivitä sivu jatkaaksesi." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "vanhentuu" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "tästä lähtien, mikä on" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "ei vanhene" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "IP osoitteesi on" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Sinut bannattiin seuraavan postauksen vuoksi" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Tänä päivänä pistit valituksen bannistasi:" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Se on yhä käsittelyssä" @@ -2719,21 +2939,28 @@ msgstr "Se on yhä käsittelyssä" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Valitit tästä bannista" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "ja se hylättiin. Et voi valittaa uudelleen." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2757,10 +2984,14 @@ msgstr "Olet lähettänyt maksimimäärän bannivalituksia ja et voi valittaa en #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "ja se hylättiin" @@ -2782,21 +3013,28 @@ msgstr "ja se hylättiin" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Et voi valittaa tästä bannista uudelleen ehkä. Anna valituksesti tähän." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Viimeksi valittamasi banni oli" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Saat valittaa bannista. Anna syyt alla." @@ -2815,6 +3053,10 @@ msgstr "Saat valittaa bannista. Anna syyt alla." #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2883,6 +3125,8 @@ msgstr "lukittu lanka; vastaa siihen linkillä" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3042,7 +3286,8 @@ msgstr "Ei mitään" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Siirrettiin tänne %s" @@ -3054,6 +3299,7 @@ msgid "" msgstr "Ei voida luoda RecentPosts-teemaa, koska lautoja ei voitu hakea." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "Olet yrittänyt postata liian monta kuvaa!" @@ -3068,6 +3314,10 @@ msgstr "Spoilerikuva" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3090,6 +3340,10 @@ msgstr "Viimeisin vastaus" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3103,6 +3357,10 @@ msgstr "Luontipäivä" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3116,6 +3374,10 @@ msgstr "Vastausmäärä" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3185,20 +3447,26 @@ msgstr "Kuvaa ei voitu automaattisesti kääntää!" msgid "Could not strip EXIF metadata!" msgstr "EXIF-metadataa ei voitu poistaa!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3215,3 +3483,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/fr_FR/LC_MESSAGES/javascript.js b/inc/locale/fr_FR/LC_MESSAGES/javascript.js index edb778dd..ba1ac316 100644 --- a/inc/locale/fr_FR/LC_MESSAGES/javascript.js +++ b/inc/locale/fr_FR/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"Style:","File":"Fichier","hide":"masquer","show":"montrer","Show locked threads":"Montrer les fils v\u00e9rouill\u00e9s","Hide locked threads":"Masquer les fils v\u00e9rouill\u00e9s","URL":"URL","Select":"Choisissez","hidden":"cach\u00e9","Show images":"Montrer les images","Hide images":"Masquer les Images","Password":"Mot de passe","Delete file only":"Supprimer le fichier uniquement","Delete":"Supprimer","Reason":"Raison","Report":"Signaler","Click reply to view.":"Cliquer sur r\u00e9pondre pour voir les r\u00e9ponses.","Brush size":"Taille du pinceau","Set text":"Saisir le texte","Clear":"Effacer","Save":"Sauvegarder","Load":"Charger","Toggle eraser":"S\u00e9lectionner la gomme","Fill":"Remplir","Enter some text":"Entrer du texte","Enter font or leave empty":"Entrer une police ou laissez vide","Forced anonymity":"Anonymat forc\u00e9.","enabled":"activ\u00e9","disabled":"d\u00e9sactiv\u00e9","Sun":"Dim","Mon":"Lun","Tue":"Mar","Wed":"Mer","Thu":"Jeu","Fri":"Ven","Sat":"Sam","Catalog":"Catalogue","Submit":"Envoyer","Quick reply":"R\u00e9ponse rapide","Posting mode: Replying to >>{0}<\/small>":"Mode de messagerie: R\u00e9ponse \u00e0 >>{0}<\/small>","Return":"Retour","Hello!":"Bonjour!","{0} users":"{0} utilisateurs","(hide threads from this board)":"(masquer les fis de cette planche)","(show threads from this board)":"(montrer les fils de cette planche)","No more threads to display":"Plus aucun fil \u00e0 afficher","Loading...":"Chargement\u2026","Save as original filename":"Sauvegarder avec le nom de fichier d'origine","Reported post(s).":"Message(s) signal\u00e9(s).","An unknown error occured!":"Une erreur inconnu s'est produite\u00a0!","Something went wrong... An unknown error occured!":"Quelque chose s'est mal pass\u00e9\u2026 Une erreur inconnu s'est produite\u00a0!","An unknown error occured when posting!":"Une erreur s'est produite lors de l'envoi du message!","Upload URL":"URL d'upload","Comment":"Commentaire","Quick Reply":"R\u00e9ponse Rapide","Stop watching this thread":"Arr\u00eater de surveiller le fil","Watch this thread":"Surveiller ce fil","Unpin this board":"D\u00e9s\u00e9pingler cette planche","Pin this board":"\u00c9pingler cette planche","Stop watching this board":"Arr\u00eater de surveiller cette planche","Watch this board":"Surveiller cette planche","Sunday":"Dimanche","Monday":"Lundi","Tuesday":"Mardi","Wednesday":"Mercredi","Thursday":"Jeudi","Friday":"Vendredi","Saturday":"Samedi","January":"Janvier","February":"F\u00e9vrier","March":"Mars","April":"Avril","May":"Mai","June":"Juin","July":"Juillet","August":"Aout","September":"Septembre","October":"Otobre","November":"Novembre","December":"D\u00e9cembre","Jan":"Jan","Feb":"Fev","Mar":"Mar","Apr":"Avr","Jun":"Jun","Jul":"Jul","Aug":"Aou","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dec","Your browser does not support HTML5 video.":"Votre navigateur ne supporte pas les vid\u00e9os HTML5.","[play once]":"[jouer une fois]","[loop]":"[boucler]","WebM Settings":"Param\u00e8tres Webm","Expand videos inline":"Lire les vid\u00e9os sur passage de la souris.","Play videos on hover":"Lire les vid\u00e9o sur passage de la souris","Default volume":"Volume par d\u00e9faut"}; \ No newline at end of file +l10n = {"Style: ":"Style :","File":"Fichier","hide":"masquer","show":"montrer","Show locked threads":"Montrer les fils v\u00e9rouill\u00e9s","Hide locked threads":"Masquer les fils v\u00e9rouill\u00e9s","URL":"URL","Select":"Choisis","Remote":"Isoler","Embed":"Ins\u00e9rer","Oekaki":"Oekaki","hidden":"cach\u00e9","Show images":"Montrer les images","Hide images":"Masquer les Images","Password":"Mot de passe","Delete file only":"Supprimer le fichier uniquement","Delete":"Supprimer","Reason":"Raison","Report":"Signaler","Click reply to view.":"Cliquer sur r\u00e9pondre pour voir les r\u00e9ponses.","Click to expand":"Cliquer pour agrandir.","Hide expanded replies":"Cacher les r\u00e9ponses","Brush size":"Taille du pinceau","Set text":"Saisir le texte","Clear":"Effacer","Save":"Sauvegarder","Load":"Charger","Toggle eraser":"S\u00e9lectionner la gomme","Get color":"Choisir couleur","Fill":"Remplir","Use oekaki instead of file?":"Utiliser cet oekaki \u00e0 la place d'un fichier ?","Edit in oekaki":"Modifier dans l'oekaki","Enter some text":"\u00c9crire du texte","Enter font or leave empty":"Entrer une police ou laissez vide","Forced anonymity":"Anonymat forc\u00e9.","enabled":"activ\u00e9","disabled":"d\u00e9sactiv\u00e9","Sun":"Dim","Mon":"Lun","Tue":"Mar","Wed":"Mer","Thu":"Jeu","Fri":"Ven","Sat":"Sam","Catalog":"Catalogue","Submit":"Envoyer","Quick reply":"R\u00e9ponse rapide","Posting mode: Replying to >>{0}<\/small>":"Mode de messagerie: R\u00e9ponse \u00e0 >>{0}<\/small>","Return":"Retour","Expand all images":"Agrandir toutes les images","Hello!":"Bonjour.","{0} users":"{0} utilisateurs","(hide threads from this board)":"(masquer les fis de cette planche)","(show threads from this board)":"(montrer les fils de cette planche)","No more threads to display":"Plus aucun fil \u00e0 afficher","Loading...":"Chargement\u2026","Save as original filename":"Sauvegarder avec le nom de fichier d'origine","Reported post(s).":"Message(s) signal\u00e9(s).","An unknown error occured!":"Une erreur inconnu s'est produite.","Something went wrong... An unknown error occured!":"Quelque chose s'est mal pass\u00e9\u2026 Une erreur inconnu s'est produite.","Working...":"Chargement...","Posting... (#%)":"Envoi... (#%)","Posted...":"Envoy\u00e9...","An unknown error occured when posting!":"Une erreur s'est produite lors de l'envoi du message.","Posting...":"Envoi...","Upload URL":"URL de mise en ligne","Spoiler Image":"Image sous spoiler","Comment":"Commentaire","Quick Reply":"R\u00e9ponse Rapide","Stop watching this thread":"Arr\u00eater de surveiller le fil","Watch this thread":"Surveiller ce fil","Unpin this board":"D\u00e9s\u00e9pingler cette planche","Pin this board":"\u00c9pingler cette planche","Stop watching this board":"Arr\u00eater de surveiller cette planche","Watch this board":"Surveiller cette planche","Click on any image on this site to load it into oekaki applet":"Clique sur n'importe quel image du site pour le charger dans l'application oekaki.","Sunday":"Dimanche","Monday":"Lundi","Tuesday":"Mardi","Wednesday":"Mercredi","Thursday":"Jeudi","Friday":"Vendredi","Saturday":"Samedi","January":"Janvier","February":"F\u00e9vrier","March":"Mars","April":"Avril","May":"Mai","June":"Juin","July":"Juillet","August":"Aout","September":"Septembre","October":"Otobre","November":"Novembre","December":"D\u00e9cembre","Jan":"Jan","Feb":"Fev","Mar":"Mar","Apr":"Avr","Jun":"Jun","Jul":"Jul","Aug":"Aou","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dec","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Votre navigateur ne supporte pas les vid\u00e9os HTML5.","[play once]":"[jouer une fois]","[loop]":"[boucler]","WebM Settings":"Param\u00e8tres Webm","Expand videos inline":"Lire les vid\u00e9os sur passage de la souris.","Play videos on hover":"Lire les vid\u00e9o sur passage de la souris","Default volume":"Volume par d\u00e9faut","Tree view":"Arborescence","Shrink all images":"R\u00e9duire toutes les images","Animate GIFs":"GIFs anim\u00e9s","Unanimate GIFs":"GIFs non-anim\u00e9s","WebM":"WebM","No new posts.":"Pas de nouveaux messages.","No new threads.":"Pas de nouveaux fils.","There are {0} new threads.":"Il y a {0} nouveaux fils.","There are {0} new posts in this thread.":"Il y a {0} nouveaux messages dans ce fil.","Options":"Options","General":"G\u00e9n\u00e9ral","Storage: ":"Stockage :","Export":"Exporter","Import":"Importer","Paste your storage data":"Coller tes donn\u00e9es de stockage","Erase":"Effacer","":"Avoir une sauvegarde de ton stockage quelque part, comme indiqu\u00e9 icin peut rendre ce site inutilisable pour toi.","User CSS":"CSS utilisateur","Update custom CSS":"Mise \u00e0 jour d'un CSS personalis\u00e9","Enter here your own CSS rules...":"Entre ici tes propres r\u00e8gles CSS...","You can include CSS files from remote servers, for example:":"Tu peux inclure des fichiers CSS d'un serveur isol\u00e9, comme par exemple :","User JS":"JS utilisateur","Update custom Javascript":"Mise \u00e0 jour d'un code Javascript personalis\u00e9","Enter here your own Javascript code...":"Entre ici ton propre code Javascript...","You can include JS files from remote servers, for example:":"Tu peux inclure des fichiers JS d'un serveur isol\u00e9, comme par exemple :"}; \ No newline at end of file diff --git a/inc/locale/fr_FR/LC_MESSAGES/javascript.po b/inc/locale/fr_FR/LC_MESSAGES/javascript.po index c72220c0..de6681a2 100644 --- a/inc/locale/fr_FR/LC_MESSAGES/javascript.po +++ b/inc/locale/fr_FR/LC_MESSAGES/javascript.po @@ -4,12 +4,13 @@ # # Translators: # kaf , 2014 +# ryd , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -20,7 +21,7 @@ msgstr "" #: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 msgid "Style: " -msgstr "Style:" +msgstr "Style :" #: ../../../../js/hide-images.js:50 ../../../../js/upload-selection.js:51 #: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:51 @@ -69,22 +70,22 @@ msgstr "URL" #: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 #: ../../../../js/upload-selection.js:68 msgid "Select" -msgstr "Choisissez" +msgstr "Choisis" #: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 #: ../../../../js/upload-selection.js:71 msgid "Remote" -msgstr "" +msgstr "Isoler" #: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 #: ../../../../js/upload-selection.js:74 msgid "Embed" -msgstr "" +msgstr "Insérer" #: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 #: ../../../../js/upload-selection.js:77 msgid "Oekaki" -msgstr "" +msgstr "Oekaki" #: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 #: ../../../../js/toggle-images.js:45 @@ -119,7 +120,7 @@ msgid "Delete" msgstr "Supprimer" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Raison" @@ -135,12 +136,12 @@ msgstr "Cliquer sur répondre pour voir les réponses." #: ../../../../js/expand.js:20 ../../../../js/expand.js:22 #: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 msgid "Click to expand" -msgstr "" +msgstr "Cliquer pour agrandir." #: ../../../../js/expand.js:44 ../../../../js/expand.js:46 #: ../../../../js/expand.js:50 msgid "Hide expanded replies" -msgstr "" +msgstr "Cacher les réponses" #: ../../../../js/oekaki.js:10 msgid "Brush size" @@ -168,7 +169,7 @@ msgstr "Sélectionner la gomme" #: ../../../../js/oekaki.js:11 msgid "Get color" -msgstr "" +msgstr "Choisir couleur" #: ../../../../js/oekaki.js:11 msgid "Fill" @@ -176,15 +177,15 @@ msgstr "Remplir" #: ../../../../js/oekaki.js:12 msgid "Use oekaki instead of file?" -msgstr "" +msgstr "Utiliser cet oekaki à la place d'un fichier ?" #: ../../../../js/oekaki.js:21 msgid "Edit in oekaki" -msgstr "" +msgstr "Modifier dans l'oekaki" #: ../../../../js/oekaki.js:152 msgid "Enter some text" -msgstr "Entrer du texte" +msgstr "Écrire du texte" #: ../../../../js/oekaki.js:153 msgid "Enter font or leave empty" @@ -214,43 +215,45 @@ msgid "disabled" msgstr "désactivé" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Dim" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Lun" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Mar" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Mer" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Jeu" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Ven" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "Sam" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Catalogue" @@ -280,11 +283,11 @@ msgstr "Retour" #: ../../../../js/expand-all-images.js:22 #: ../../../../js/expand-all-images.js:23 msgid "Expand all images" -msgstr "" +msgstr "Agrandir toutes les images" #: ../../../../templates/main.js:6 msgid "Hello!" -msgstr "Bonjour!" +msgstr "Bonjour." #: ../../../../templates/main.js:18 #, python-brace-format @@ -318,6 +321,7 @@ msgstr "Plus aucun fil à afficher" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Chargement…" @@ -332,41 +336,41 @@ msgstr "Message(s) signalé(s)." #: ../../../../js/ajax-post-controls.js:53 msgid "An unknown error occured!" -msgstr "Une erreur inconnu s'est produite !" +msgstr "Une erreur inconnu s'est produite." #: ../../../../js/ajax-post-controls.js:60 msgid "Something went wrong... An unknown error occured!" -msgstr "Quelque chose s'est mal passé… Une erreur inconnu s'est produite !" +msgstr "Quelque chose s'est mal passé… Une erreur inconnu s'est produite." #: ../../../../js/ajax-post-controls.js:68 msgid "Working..." -msgstr "" +msgstr "Chargement..." #: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 msgid "Posting... (#%)" -msgstr "" +msgstr "Envoi... (#%)" #: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 msgid "Posted..." -msgstr "" +msgstr "Envoyé..." #: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 msgid "An unknown error occured when posting!" -msgstr "Une erreur s'est produite lors de l'envoi du message!" +msgstr "Une erreur s'est produite lors de l'envoi du message." #: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 msgid "Posting..." -msgstr "" +msgstr "Envoi..." #: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 #: ../../../../js/quick-reply.js:225 msgid "Upload URL" -msgstr "URL d'upload" +msgstr "URL de mise en ligne" #: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 #: ../../../../js/quick-reply.js:268 msgid "Spoiler Image" -msgstr "" +msgstr "Image sous spoiler" #: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 #: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 @@ -432,143 +436,144 @@ msgstr "Surveiller cette planche" #: ../../../../js/wpaint.js:113 msgid "Click on any image on this site to load it into oekaki applet" -msgstr "" +msgstr "Clique sur n'importe quel image du site pour le charger dans l'application oekaki." -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Dimanche" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Lundi" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Mardi" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Mercredi" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Jeudi" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Vendredi" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Samedi" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Janvier" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Février" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Mars" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Avril" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Mai" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Juin" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Juillet" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Aout" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Septembre" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Otobre" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Novembre" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Décembre" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Fev" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Avr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Aou" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Sep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Oct" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dec" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" -msgstr "" +msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" -msgstr "" +msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" -msgstr "" +msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" -msgstr "" +msgstr "pm" #: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 msgid "Your browser does not support HTML5 video." @@ -602,118 +607,242 @@ msgstr "Volume par défaut" #: ../../../../js/treeview.js:18 msgid "Tree view" -msgstr "" +msgstr "Arborescence" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" -msgstr "" +msgstr "Réduire toutes les images" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" -msgstr "" +msgstr "GIFs animés" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" -msgstr "" +msgstr "GIFs non-animés" #: ../../../../js/webm-settings.js:41 msgid "WebM" -msgstr "" +msgstr "WebM" #: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 msgid "No new posts." -msgstr "" +msgstr "Pas de nouveaux messages." #: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 msgid "No new threads." -msgstr "" +msgstr "Pas de nouveaux fils." #: ../../../../js/live-index.js:72 #, python-brace-format msgid "There are {0} new threads." -msgstr "" +msgstr "Il y a {0} nouveaux fils." #: ../../../../js/live-index.js:83 #, python-brace-format msgid "There are {0} new posts in this thread." -msgstr "" +msgstr "Il y a {0} nouveaux messages dans ce fil." #: ../../../../js/options.js:106 msgid "Options" -msgstr "" +msgstr "Options" #: ../../../../js/options/general.js:15 msgid "General" -msgstr "" +msgstr "Général" #: ../../../../js/options/general.js:18 msgid "Storage: " -msgstr "" +msgstr "Stockage :" #: ../../../../js/options/general.js:21 msgid "Export" -msgstr "" +msgstr "Exporter" #: ../../../../js/options/general.js:27 msgid "Import" -msgstr "" +msgstr "Importer" #: ../../../../js/options/general.js:28 msgid "Paste your storage data" -msgstr "" +msgstr "Coller tes données de stockage" #: ../../../../js/options/general.js:40 msgid "Erase" -msgstr "" +msgstr "Effacer" #: ../../../../js/options/general.js:41 msgid "" "Are you sure you want to erase your storage? This involves your hidden " "threads, watched threads, post password and many more." -msgstr "" +msgstr "Es-tu sûr de vouloir effacer ton stockage ? Ceci inclut tes fils cachés, tes fils surveillés, ton dernier mot de passe et autres." #: ../../../../js/options/user-css.js:14 msgid "User CSS" -msgstr "" +msgstr "CSS utilisateur" #: ../../../../js/options/user-css.js:23 msgid "Update custom CSS" -msgstr "" +msgstr "Mise à jour d'un CSS personalisé" #: ../../../../js/options/user-css.js:45 msgid "Enter here your own CSS rules..." -msgstr "" +msgstr "Entre ici tes propres règles CSS..." #: ../../../../js/options/user-css.js:46 msgid "" "If you want to make a redistributable style, be sure to\n" " have a Yotsuba B theme selected." -msgstr "" +msgstr "Si tu veux créer un thème redistribuable, veille bien à \n avoir sélectionné le thème Yotsuba B." #: ../../../../js/options/user-css.js:47 msgid "You can include CSS files from remote servers, for example:" -msgstr "" +msgstr "Tu peux inclure des fichiers CSS d'un serveur isolé, comme par exemple :" #: ../../../../js/options/user-js.js:14 msgid "User JS" -msgstr "" +msgstr "JS utilisateur" #: ../../../../js/options/user-js.js:23 msgid "Update custom Javascript" -msgstr "" +msgstr "Mise à jour d'un code Javascript personalisé" #: ../../../../js/options/user-js.js:54 msgid "Enter here your own Javascript code..." -msgstr "" +msgstr "Entre ici ton propre code Javascript..." #: ../../../../js/options/user-js.js:55 msgid "" "Have a backup of your storage somewhere, as messing here\n" " may render you this website unusable." -msgstr "" +msgstr "Avoir une sauvegarde de ton stockage quelque part, comme indiqué ici\n peut rendre ce site inutilisable pour toi." #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" +msgstr "Tu peux inclure des fichiers JS d'un serveur isolé, comme par exemple :" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" msgstr "" diff --git a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo index b342a593..8d8a05d4 100644 Binary files a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo and b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po index bf52fa01..c48ae65c 100644 --- a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po @@ -5,12 +5,13 @@ # Translators: # kaf , 2014 # CHAFIK , 2014 +# ryd , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -28,11 +29,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "seconde" msgstr[1] "secondes" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -42,11 +45,13 @@ msgstr[1] "secondes" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minute" msgstr[1] "minutes" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -56,11 +61,13 @@ msgstr[1] "minutes" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "heure" msgstr[1] "heures" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -70,11 +77,13 @@ msgstr[1] "heures" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "jour" msgstr[1] "jours" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -84,6 +93,7 @@ msgstr[1] "jours" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "semaine" @@ -98,6 +108,7 @@ msgstr[1] "semaines" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "année" @@ -107,7 +118,7 @@ msgstr[1] "années" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Banni !" @@ -121,6 +132,7 @@ msgstr "Banni !" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Précédent" @@ -134,7 +146,8 @@ msgstr "Précédent" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Suivant" @@ -195,7 +208,7 @@ msgstr "Supprimer le fichier" #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 msgid "Are you sure you want to delete this file?" -msgstr "Êtes-vous sûr de vouloir supprimer ce fichier ?" +msgstr "Es-tu sûr de vouloir supprimer ce fichier ?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 @@ -210,7 +223,7 @@ msgstr "Mettre le fichier sous Spoiler" #: ../../../../inc/display.php:404 ../../../../inc/display.php:514 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Are you sure you want to spoiler this file?" -msgstr "Êtes-vous sûr de vouloir mettre ce fichier sous Spoiler ?" +msgstr "Es-tu sûr de vouloir mettre ce fichier sous spoiler ?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 #: ../../../../inc/display.php:404 ../../../../inc/display.php:408 @@ -225,7 +238,8 @@ msgstr "Déplacer la réponse sur une autre planche" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Éditer message" @@ -245,7 +259,7 @@ msgstr "Supprimer" #: ../../../../inc/display.php:486 ../../../../inc/display.php:490 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 msgid "Are you sure you want to delete this?" -msgstr "Êtes-vous sûr de vouloir supprimer ceci ?" +msgstr "Es-tu sûr de vouloir supprimer ceci ?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 #: ../../../../inc/display.php:490 ../../../../inc/display.php:494 @@ -257,7 +271,7 @@ msgstr "Supprimer tout les messages ayant cette IP" #: ../../../../inc/display.php:490 ../../../../inc/display.php:494 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 msgid "Are you sure you want to delete all posts by this IP address?" -msgstr "Êtes-vous sûr de vouloir supprimer tout les messages ayant cette adresse IP ?" +msgstr "Es-tu sûr de vouloir supprimer tous les messages ayant cette adresse IP ?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 #: ../../../../inc/display.php:494 ../../../../inc/display.php:498 @@ -271,7 +285,7 @@ msgstr "Supprimer tout les messages ayant cette IP, sur toutes les planches" msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" -msgstr "Êtes-vous sûr de vouloir supprimer tout les messages de toutes les planches ayant cette adresse IP ?" +msgstr "Es-tu sûr de vouloir supprimer tous les messages de toutes les planches ayant cette adresse IP ?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 #: ../../../../inc/display.php:515 ../../../../inc/display.php:519 @@ -322,8 +336,9 @@ msgstr "Déplacer le fil sur une autre planche" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." -msgstr "Vous avez été rendu muet pour cause de contenu non-original." +msgstr "Tu as été rendu muet pour cause de contenu non-original." #. The names on the post buttons. (On most imageboards, these are both just #. "Post"). @@ -333,6 +348,7 @@ msgstr "Vous avez été rendu muet pour cause de contenu non-original." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nouveau Fil" @@ -340,6 +356,7 @@ msgstr "Nouveau Fil" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Nouvelle réponse" @@ -348,10 +365,11 @@ msgstr "Nouvelle réponse" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." -msgstr "" +msgstr "Tous les droits d'auteurs, marques, commentaires et images de cette page sont détenu par et sont de la responsabilité de leurs parties respectives." #. * ==================== #. * Error messages @@ -373,6 +391,7 @@ msgstr "Rôde plus avant de poster." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Tu ressembles à un robot." @@ -380,13 +399,15 @@ msgstr "Tu ressembles à un robot." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." -msgstr "Votre navigateur nous a envoyé un référant invalide ou aucun référant." +msgstr "Ton navigateur nous a envoyé un référant invalide ou aucun référant." #: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "Le champ %s comporte trop de caractères." @@ -395,13 +416,15 @@ msgstr "Le champ %s comporte trop de caractères." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." -msgstr "Vous avez atteint la limite de caractères pour le texte." +msgstr "Le corps du texte est trop long." #: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Ce texte est trop court ou vide." @@ -409,20 +432,23 @@ msgstr "Ce texte est trop court ou vide." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." -msgstr "Vous devez mettre en ligne une image." +msgstr "Tu dois mettre en ligne une image." #: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." -msgstr "Le serveur a échoué la mise en ligne de votre image." +msgstr "Le serveur a échoué la mise en ligne de ton image." #: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Format d'image non-supporté." @@ -430,6 +456,7 @@ msgstr "Format d'image non-supporté." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Planche invalide." @@ -437,6 +464,7 @@ msgstr "Planche invalide." #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Le fil spécifié n'existe pas." @@ -444,6 +472,7 @@ msgstr "Le fil spécifié n'existe pas." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Fil verrouillé." @@ -451,6 +480,7 @@ msgstr "Fil verrouillé." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Le fil a atteint le nombre de réponses maximum." @@ -458,6 +488,7 @@ msgstr "Le fil a atteint le nombre de réponses maximum." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Le fil a atteint le nombre d'images maximum." @@ -465,13 +496,15 @@ msgstr "Le fil a atteint le nombre d'images maximum." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." -msgstr "Vous n'avez pas écrit de message." +msgstr "Tu n'as pas écrit de message." #: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Flood détecté ; Message ignoré." @@ -479,13 +512,15 @@ msgstr "Flood détecté ; Message ignoré." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." -msgstr "Votre requête semble automatisée ; Message ignoré." +msgstr "Ta requête semble automatisée ; message ignoré." #: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Ce contenu n'est pas original." @@ -493,14 +528,16 @@ msgstr "Ce contenu n'est pas original." #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." -msgstr "Ce contenu n'est pas original. Vous avez été muté pour %d secondes." +msgstr "Ce contenu n'est pas original. Tu as été muté pour %d secondes." #: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Tu as été muté. Interdiction de poster pendant %d secondes." @@ -509,14 +546,16 @@ msgstr "Tu as été muté. Interdiction de poster pendant %d secondes." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." -msgstr "Votre addresse IP est listée en %s." +msgstr "Ton adresse IP est listée en %s." #: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Trop de liens ; Flood détecté." @@ -524,6 +563,7 @@ msgstr "Trop de liens ; Flood détecté." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Trop de citations ; Message ignoré." @@ -531,6 +571,7 @@ msgstr "Trop de citations ; Message ignoré." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Trop de liens inter-planches ; message ignoré." @@ -538,27 +579,31 @@ msgstr "Trop de liens inter-planches ; message ignoré." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." -msgstr "Vous n'avez rien sélectionné à supprimer." +msgstr "Tu n'as rien sélectionné à supprimer." #: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." -msgstr "Vous n'avez sélectionné aucun message à signaler." +msgstr "Tu n'as sélectionné aucun message à signaler." #: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." -msgstr "Vous ne pouvez pas signaler autant de messages à la fois." +msgstr "Tu ne peux pas signaler autant de messages à la fois." #: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Mot de passe incorrect." @@ -566,6 +611,7 @@ msgstr "Mot de passe incorrect." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Image invalide." @@ -573,6 +619,7 @@ msgstr "Image invalide." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Extension de fichier inconnu." @@ -580,13 +627,15 @@ msgstr "Extension de fichier inconnu." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" -msgstr "Taille de fichier maximum : %maxsz% octets
La taille de votre fichier : %filesz% octets" +msgstr "Taille de fichier maximum : %maxsz% octets
La taille de ton fichier : %filesz% octets" #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Ce fichier est trop volumineux." @@ -594,6 +643,7 @@ msgstr "Ce fichier est trop volumineux." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Ce fichier existe déjà ici : " @@ -602,6 +652,7 @@ msgstr "Ce fichier existe déjà ici : " #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Ce fichier existe déjà dans ce fil." @@ -610,14 +661,16 @@ msgstr "Ce fichier existe déjà dans ce fil." #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." -msgstr "Vous devez encore attendre %s avant de supprimer votre message." +msgstr "Tu dois encore attendre %s avant de supprimer ton message." #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "Exploitation XSS de type MIME (IE) détecté ; Message ignoré." @@ -625,31 +678,35 @@ msgstr "Exploitation XSS de type MIME (IE) détecté ; Message ignoré." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." -msgstr "L'URL de votre vidéo est impossible à analyser." +msgstr "L'URL de ta vidéo est impossible à analyser." #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." -msgstr "Vous semblez avoir fait une erreur lors de votre vérification." +msgstr "Tu sembles avoir fait une erreur lors de ta vérification." #. Moderator errors #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " "users." -msgstr "Vous n'êtes autorisé à débannir que %s utilisateur en même temps. Vous avez essayé de débannir %u utilisateurs." +msgstr "Tu n'es autorisé à débannir que %s utilisateur en même temps. Tu as essayé de débannir %u utilisateurs." #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Identifiant et/ou mot de passe invalide(s)." @@ -657,13 +714,15 @@ msgstr "Identifiant et/ou mot de passe invalide(s)." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" -msgstr "Vous n'êtes pas modérateurs…" +msgstr "Tu n'es pas modérateur…" #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -673,6 +732,7 @@ msgstr "Identifiant et/ou mot de passe invalide(s). L'identifiant a peut être #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Cookies invalides ou mal formés." @@ -680,13 +740,15 @@ msgstr "Cookies invalides ou mal formés." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." -msgstr "Votre navigateur n'a pas envoyé de donnée lorsqu'il aurait dû le faire." +msgstr "Ton navigateur n'a pas envoyé de donnée lorsqu'il aurait dû le faire." #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Le champ %s est obligatoire." @@ -695,6 +757,7 @@ msgstr "Le champ %s est obligatoire." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Le champ %s est invalide." @@ -703,6 +766,7 @@ msgstr "Le champ %s est invalide." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Il existe déjà une planche %s." @@ -711,13 +775,15 @@ msgstr "Il existe déjà une planche %s." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." -msgstr "Vous n'avez pas la permission de faire ceci." +msgstr "Tu n'as pas la permission de faire ceci." #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Ce message n'existe pas…" @@ -725,6 +791,7 @@ msgstr "Ce message n'existe pas…" #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Page introuvable." @@ -732,6 +799,7 @@ msgstr "Page introuvable." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Le modo existe déjà : " @@ -740,6 +808,7 @@ msgstr "Le modo existe déjà : " #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Ce thème n'existe pas." @@ -747,8 +816,9 @@ msgstr "Ce thème n'existe pas." #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." -msgstr "Le Token de securité est invalide. Veuillez retourner à la page précédent et recommencer." +msgstr "Le jeton de sécurité est invalide. Retourne à la page précédente et recommencer." #. Default public ban message. In public ban messages, %length% is replaced #. with "for x days" or @@ -760,6 +830,7 @@ msgstr "Le Token de securité est invalide. Veuillez retourner à la page préc #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "L'UTILISATEUR A ÉTÉ BANNI POUR CE MESSAGE" @@ -769,7 +840,7 @@ msgstr "Confirmer cette action." #: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 msgid "Could not find current version! (Check .installed)" -msgstr "Version actuelle introuvable. (Vérifiez .installed)" +msgstr "Version actuelle introuvable. (Vérifie .installed)" #: ../../../../inc/mod/pages.php:162 msgid "Dashboard" @@ -777,7 +848,7 @@ msgstr "Panneau de Configuration" #: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 msgid "There are no boards to search!" -msgstr "Il n'y a aucune planche pour la recherche !" +msgstr "Il n'y a aucune planche pour la recherche." #. $results now contains the search results #: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 @@ -846,10 +917,14 @@ msgstr "Registre de modération" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -858,11 +933,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Nouveau ban" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Liste des ban" @@ -870,17 +949,20 @@ msgstr "Liste des ban" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Déplacer la réponse" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Les planches de départ et d'arrivé sont les mêmes." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Impossible de déplacer ce fil ; il n'y a qu'une seule planche." @@ -888,18 +970,20 @@ msgstr "Impossible de déplacer ce fil ; il n'y a qu'une seule planche." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Déplacer fil" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Éditer l'utilisateur" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Gérer les utilisateurs" @@ -908,11 +992,13 @@ msgstr "Gérer les utilisateurs" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Nouveau MP pour" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Message privé" @@ -920,6 +1006,7 @@ msgstr "Message privé" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Messagerie" @@ -930,12 +1017,14 @@ msgstr "Messagerie" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Reconstruire" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Signalements" @@ -943,55 +1032,66 @@ msgstr "Signalements" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Éditeur de config" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Le répertoire de thème n'existe pas." #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." -msgstr "Vous n'avez pas la permission de créer un nouveau répertoire" +msgstr "Impossible d'ouvrir le répertoire des thèmes ; vérifie les permissions" #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Gérer les thèmes" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Thème installé : %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Thème configuré : %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Thème reconstruit : %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug : Anti-spam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug : Messages récents" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug : SQL" @@ -1006,13 +1106,13 @@ msgstr "Banni ?" #: ../../../../banned.php:5 msgid "You are not banned." -msgstr "Vous n'êtes pas banni." +msgstr "Tu n'es pas banni." #. line 6 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 msgid "Go back" -msgstr "Retourner" +msgstr "Revenir" #. line 13 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 @@ -1059,6 +1159,10 @@ msgstr "Supprimer message" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1093,6 +1197,8 @@ msgstr "Fichier" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1172,6 +1278,12 @@ msgstr "Mot de passe" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1244,6 +1356,8 @@ msgstr "Pas de sujet" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "par" @@ -1294,6 +1408,7 @@ msgstr "Image sous Spoiler" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Réponse" @@ -1305,6 +1420,7 @@ msgstr "Réponse" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Voir tous" @@ -1316,6 +1432,7 @@ msgstr "Voir tous" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "le dernier message" @@ -1329,6 +1446,7 @@ msgstr[1] " %count% derniers messages" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 message" @@ -1343,6 +1461,8 @@ msgstr[1] "%count% messages" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "et" @@ -1354,6 +1474,7 @@ msgstr "et" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 image en réponse" @@ -1367,8 +1488,9 @@ msgstr[1] "%count% images en réponse" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." -msgstr "cachés. Cliquez sur Répondre pour les voir." +msgstr "cachés. Clique sur Répondre pour les voir." #. line 7 #. line 14 @@ -1395,6 +1517,9 @@ msgstr "cachés. Cliquez sur Répondre pour les voir." #. line 7 #. 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 @@ -1418,6 +1543,8 @@ msgstr "Nom" #. 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 @@ -1452,6 +1579,9 @@ msgstr "Courriel" #. line 23 #. line 12 #. 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 @@ -1480,6 +1610,8 @@ msgstr "Actualiser" #. 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 @@ -1571,6 +1703,10 @@ msgstr "Options" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1615,6 +1751,10 @@ msgstr "Épingler" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1659,6 +1799,10 @@ msgstr "Verrouiller" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1757,6 +1901,12 @@ msgstr "Aucun résultat." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1765,42 +1915,47 @@ msgstr "Aucun résultat." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Rechercher" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" -msgstr "Contestation de ban non trouvé !" +msgstr "Contestation de ban non trouvé." #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Contestations de ban" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Nouvel utilisateur" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Impossible de promouvoir/rétrograder l'utilisateur." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Débug : APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " -msgstr "Votre code contient des erreurs de syntaxe. Merci re retourner les corriger. PHP dit:" +msgstr "Ton code contient des erreurs de syntaxe. Merci retourner les corriger. PHP dit:" #. line 2 #. line 6 @@ -1815,6 +1970,9 @@ msgstr "Votre code contient des erreurs de syntaxe. Merci re retourner les corri #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1880,7 +2038,8 @@ msgstr "Anti-spam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Messages récents" @@ -1925,7 +2084,7 @@ msgstr "Poster une note de service" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 msgid "delete" -msgstr "Suppression" +msgstr "suppression" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 @@ -2025,6 +2184,15 @@ msgstr "Poster une nouvelle" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2064,6 +2232,9 @@ msgstr "Staff" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2083,6 +2254,8 @@ msgstr "Note" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2125,6 +2298,8 @@ msgstr "Nouvelle note" #. 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" @@ -2219,6 +2394,15 @@ msgstr "Pas de raison" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2274,6 +2458,9 @@ msgstr "Toutes les planches" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2312,6 +2499,9 @@ msgstr "Fixer" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2358,6 +2548,9 @@ msgstr "jamais" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2402,12 +2595,16 @@ msgstr "Débannir" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 msgid "Time" -msgstr "" +msgstr "Temps" #. line 185 #. line 89 @@ -2441,6 +2638,11 @@ msgstr "" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2502,6 +2704,8 @@ msgstr "Nouveau ban" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2524,7 +2728,7 @@ msgstr "Bans" msgid "" "(Search is case-insensitive and based on keywords. To match exact phrases, " "use \"quotes\". Use an asterisk (*) for wildcard.)" -msgstr "(La recherche est sensible à la casse et est basé sur les mots clés. Pour rechercher une phrase exacte, utilisez les \"guillemets\". Utilisez un astérisque (*) comme joker.)" +msgstr "(La recherche est sensible à la casse et est basé sur les mots clés. Pour rechercher une phrase exacte, utilise les \"guillemets\". Utilise un astérisque (*) comme joker.)" #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 msgid "There are no active bans." @@ -2558,6 +2762,7 @@ msgstr "Durée" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Débannir la sélection" @@ -2575,6 +2780,9 @@ msgstr "Débannir la sélection" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2603,17 +2811,17 @@ msgstr "Il n'y a aucun signalement." #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 #: ../../../../post.php:894 ../../../../post.php:896 msgid "That ban doesn't exist or is not for you." -msgstr "Ce ban n'existe pas ou n'est pas pour vous." +msgstr "Ce ban n'existe pas ou n'est pas pour toi." #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 #: ../../../../post.php:898 ../../../../post.php:900 msgid "You cannot appeal a ban of this length." -msgstr "Vous ne pouvez pas contester un ban de cette durée." +msgstr "Tu ne peux pas contester un ban de cette durée." #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 #: ../../../../post.php:905 ../../../../post.php:907 msgid "You cannot appeal this ban again." -msgstr "Vous ne pouvez pas contester à nouveau ce ban." +msgstr "Tu ne peux pas contester à nouveau ce ban." #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 #: ../../../../post.php:910 ../../../../post.php:912 @@ -2626,29 +2834,29 @@ msgstr "Format de fichier non supporté : " #: ../../../../inc/image.php:282 ../../../../inc/image.php:288 msgid "Failed to redraw image!" -msgstr "La réécriture de l'image a échoué!" +msgstr "La réécriture de l'image a échoué." #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" -msgstr "Le redimensionnement de l'image a échoué!" +msgstr "Le redimensionnement de l'image a échoué." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 msgid "You were banned! ;_;" -msgstr "Vous étiez banni ! ;_;" +msgstr "Tu étais banni ! ;_;" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 msgid "You are banned! ;_;" -msgstr "Vous êtes banni ! ;_;" +msgstr "Tu es banni ! ;_;" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 msgid "You were banned from" -msgstr "Vous aviez été banni depuis" +msgstr "Tu avais été banni de" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 msgid "You have been banned from" -msgstr "Vous êtes banni depuis" +msgstr "Tu es banni de" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 msgid "for the following reason:" @@ -2661,44 +2869,57 @@ msgstr "pour une raison non spécifié." #. line 32 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 msgid "Your ban was filed on" -msgstr "Votre ban à été est effectif depuis le" +msgstr "Ton ban est effectif depuis le" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." -msgstr "a expiré depuis. Rafraichissez la page pour continuer." +msgstr "a expiré depuis. Rafraichis la page pour continuer." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "expire le" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "à partir de maintenant, ce qui fait" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "n'expirera pas" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" -msgstr "Votre adresse IP est" +msgstr "Ton adresse IP est" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" -msgstr "Vous avez été banni pour le message suivant posté sur" +msgstr "Tu a été banni pour le message suivant posté sur" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" -msgstr "Vous avez envoyé une contestation pour ce ban le" +msgstr "Tu as envoyé une contestation pour ce ban le" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Il est toujours en attente" @@ -2720,25 +2941,32 @@ msgstr "Il est toujours en attente" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" -msgstr "Vous avez contesté ce ban le" +msgstr "Tu as contesté ce ban le" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." -msgstr "et a été refusé. Vous ne pouvez plus contester ce ban." +msgstr "et a il a été refusé. Tu ne peux plus contester ce ban." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." -msgstr "Vous avez envoyé le nombre maximum de contestations autorisé. Vous ne pouvez plus contester ce ban." +msgstr "Tu as envoyé le nombre maximum de contestations autorisé. Tu ne peux plus contester ce ban." #. line 114 #. line 121 @@ -2758,10 +2986,14 @@ msgstr "Vous avez envoyé le nombre maximum de contestations autorisé. Vous ne #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "et a été refusé." @@ -2783,23 +3015,30 @@ msgstr "et a été refusé." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." -msgstr "Vous pouvez contester ce ban à nouveau. Mercie d'entrer votre raisonnement ci-dessous." +msgstr "Tu peux contester ce ban à nouveau. Merci d'entrer ton raisonnement ci-dessous." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" -msgstr "Vous avez contesté ce ban la dernière fois le" +msgstr "Tu as contesté ce ban la dernière fois le" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." -msgstr "Vous pouvez contester ce ban. Mercie d'entrer votre raisonnement ci-dessous." +msgstr "Tu peux contester ce ban. Merci d'entrer ton raisonnement ci-dessous." #. line 4 #. line 16 @@ -2816,6 +3055,10 @@ msgstr "Vous pouvez contester ce ban. Mercie d'entrer votre raisonnement ci-dess #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2855,7 +3098,7 @@ msgstr "Rétrograder" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 msgid "Are you sure you want to demote yourself?" -msgstr "Êtes vous sûr de vouloir vous rétrograder vous-même ?" +msgstr "Es-tu sûr de vouloir te rétrograder toi-même ?" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 msgid "log" @@ -2873,17 +3116,19 @@ msgstr "ID du fil" #. line 14 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 msgid "Leave shadow thread" -msgstr "" +msgstr "Laisser un fil fantôme" #. line 18 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 msgid "locks thread; replies to it with a link." -msgstr "" +msgstr "Verrouiller le fil ; ajouter une réponse avec un lien." #. line 22 #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -2892,7 +3137,7 @@ msgstr "Planche cible" #. line 8 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 msgid "Select board" -msgstr "Planche sélectionné" +msgstr "Sélectionner une planche" #. line 17 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 @@ -2904,12 +3149,12 @@ msgid "" "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 "(La recherche est sensible à la casse et est basé sur les mots clés. Pour rechercher une phrase exacte, utilisez les \"guillemets\". Utilisez un astérisque (*) comme joker.)

Vous pouvez appliquer les filtres suivants à votre recherche :id, thread, subject, et nom. Pour appliquer un filtre, ajoutez simplement à votre requête, par exemple, name:Anonyme ou subject:\"Un sujet\". L'astérisque (*) ne peut pas être utilisé dans les filtres." +msgstr "(La recherche est sensible à la casse et est basé sur les mots clés. Pour rechercher une phrase exacte, utilise les \"guillemets\". Utilise un astérisque (*) comme joker.)

Tu peux appliquer les filtres suivants à ta recherche :id, thread, subject, et nom. Pour appliquer un filtre, ajoute le simplement à ta requête, par exemple, name:Anonyme ou subject:\"Un sujet\". L'astérisque (*) ne peut pas être utilisé dans les filtres." #. line 2 #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 msgid "Are you sure you want to do that?" -msgstr "Vous êtes sûr de vouloir faire ça ?" +msgstr "Es-tu sûr de vouloir faire ça ?" #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 msgid "Click to proceed to" @@ -2920,7 +3165,7 @@ msgstr "Cliquer pour procéder à" msgid "" "You are probably seeing this message because Javascript being disabled. This" " is a necessary security measure to prevent CSRF attacks." -msgstr "Vous voyez probablement ce message parce que vous avez désactivé Javascript. Ceci est une sécurité nécessaire pour prévenir les attaques CSRF." +msgstr "Tu vois probablement ce message parce que tu as désactivé Javascript. Ceci est une sécurité nécessaire pour prévenir les attaques CSRF." #. line 7 #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 @@ -3043,7 +3288,8 @@ msgstr "Aucun" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Déplacé vers %s." @@ -3052,16 +3298,17 @@ msgstr "Déplacé vers %s." msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "Impossible de construire le thème RecentPost, parce qu'il n'y a pas de planche à aller chercher." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "Tu essayes d'uploader trop d'images à la fois." #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Fichier sous spoiler" #. line 26 #. line 35 @@ -3069,12 +3316,16 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 msgid "Bump order" -msgstr "" +msgstr "Trier par bump" #. line 27 #. line 36 @@ -3083,7 +3334,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "Dernière réponse" #. line 28 #. line 37 @@ -3091,12 +3342,16 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 msgid "Creation date" -msgstr "" +msgstr "Date de création" #. line 29 #. line 38 @@ -3104,12 +3359,16 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 msgid "Reply count" -msgstr "" +msgstr "Nombres de réponses" #. line 30 #. line 39 @@ -3117,58 +3376,62 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Random" -msgstr "" +msgstr "Aléatoire" #. line 33 #. line 26 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 msgid "Sort by" -msgstr "" +msgstr "Trier par" #. line 42 #. line 34 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 msgid "Image size" -msgstr "" +msgstr "Taille de l'image" #. line 44 #. line 37 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 msgid "Small" -msgstr "" +msgstr "Petite" #. line 45 #. line 38 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 msgid "Large" -msgstr "" +msgstr "Grande" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "Afficher l'ID" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "Fil cible" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "Supprimer les messages n'est pas autorisé." #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "Méthode de détermination de la taille du fichier non-reconnue." #: ../../../../post.php:519 msgid "Invalid flag selection!" @@ -3176,43 +3439,65 @@ msgstr "" #: ../../../../post.php:631 ../../../../post.php:633 msgid "exiftool failed!" -msgstr "" +msgstr "Échec de exiftool." #: ../../../../post.php:641 ../../../../post.php:643 msgid "Could not auto-orient image!" -msgstr "" +msgstr "Impossible de réorienter l'image." #: ../../../../post.php:695 ../../../../post.php:697 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "Impossible de retirer les métadonnées EXIF." -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." -msgstr "" +msgstr "Il y a eu un problème dans le traitement de ton webm." -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." -msgstr "" +msgstr "Fichier webm invalide." -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." -msgstr "" +msgstr "Le webm mis en ligne contient de l'audio ou un autre type de flux ajouté." -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " -msgstr "" +msgstr "Le fichier webm ajouté est plus grand que" #. line 48 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 msgid "Go to top" -msgstr "" +msgstr "Haut de la page" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 msgid "Don't show my flag" -msgstr "" +msgstr "Ne pas montrer mon drapeau" #. line 36 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" +msgstr "Très petite" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" msgstr "" diff --git a/inc/locale/he_IL/LC_MESSAGES/javascript.js b/inc/locale/he_IL/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..fb9b10ec --- /dev/null +++ b/inc/locale/he_IL/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"\u05e2\u05d9\u05e6\u05d5\u05d1: ","File":"\u05e7\u05d5\u05d1\u05e5","hide":"\u05d4\u05e1\u05ea\u05e8","show":"\u05d4\u05e6\u05d2","Show locked threads":"\u05d4\u05e6\u05d2 \u05e9\u05e8\u05e9\u05d5\u05e8\u05d9\u05dd \u05e0\u05e2\u05d5\u05dc\u05d9\u05dd","Hide locked threads":"\u05d4\u05e1\u05ea\u05e8 \u05e9\u05e8\u05e9\u05d5\u05e8\u05d9\u05dd \u05e0\u05e2\u05d5\u05dc\u05d9\u05dd","URL":"\u05db\u05ea\u05d5\u05d1\u05ea \u05ea\u05de\u05d5\u05e0\u05d4","Select":"\u05d1\u05d7\u05e8","Remote":"\u05ea\u05de\u05d5\u05e0\u05d4 \u05de\u05db\u05ea\u05d5\u05d1\u05ea","Embed":"\u05d4\u05d8\u05de\u05e2\u05ea \u05e1\u05e8\u05d8\u05d5\u05df","Oekaki":"\u05e6\u05d9\u05d9\u05e8","hidden":"\u05de\u05d5\u05e1\u05ea\u05e8","Show images":"\u05d4\u05e6\u05d2 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea","Hide images":"\u05d4\u05e1\u05ea\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea","Password":"\u05e1\u05d9\u05e1\u05de\u05d4","Delete file only":"\u05d4\u05e1\u05e8 \u05e7\u05d5\u05d1\u05e5 \u05d1\u05dc\u05d1\u05d3","Delete":"\u05de\u05d7\u05d9\u05e7\u05d4","Reason":"\u05e1\u05d9\u05d1\u05d4","Report":"\u05d3\u05d5\u05d5\u05d7","Click reply to view.":"\u05dc\u05d7\u05e5 \u05e2\u05dc \"\u05db\u05ea\u05d5\u05d1 \u05ea\u05d2\u05d5\u05d1\u05d4\" \u05dc\u05e6\u05e4\u05d9\u05d4","Click to expand":"\u05dc\u05d7\u05e5 \u05dc\u05d4\u05e8\u05d7\u05d1\u05d4","Hide expanded replies":"\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05de\u05d5\u05e8\u05d7\u05d1\u05d5\u05ea","Brush size":"\u05d2\u05d5\u05d3\u05dc \u05de\u05d1\u05e8\u05e9\u05ea","Set text":"\u05db\u05ea\u05d5\u05d1 \u05d8\u05e7\u05e1\u05d8","Clear":"\u05e0\u05e7\u05d4","Save":"\u05e9\u05de\u05d5\u05e8","Load":"\u05d8\u05e2\u05df","Toggle eraser":"\u05d4\u05e4\u05e2\u05dc\/\u05d1\u05d8\u05dc \u05db\u05dc\u05d9 \u05de\u05d7\u05d9\u05e7\u05d4","Get color":"\u05d9\u05d1\u05d5\u05d0 \u05e6\u05d1\u05e2","Fill":"\u05de\u05d9\u05dc\u05d5\u05d9","Use oekaki instead of file?":"\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e6\u05d9\u05d9\u05e8 \u05d1\u05de\u05e7\u05d5\u05dd \u05e7\u05d5\u05d1\u05e5?","Edit in oekaki":"\u05e2\u05e8\u05d9\u05db\u05d4 \u05d1\u05e6\u05d9\u05d9\u05e8","Enter some text":"\u05d4\u05db\u05e0\u05e1 \u05d8\u05e7\u05e1\u05d8","Enter font or leave empty":"\u05d4\u05db\u05e0\u05e1 \u05e9\u05dd \u05e4\u05d5\u05e0\u05d8 \u05d0\u05d5 \u05d4\u05e9\u05d0\u05e8 \u05e8\u05d9\u05e7","Forced anonymity":"\u05d0\u05e0\u05d5\u05e0\u05d9\u05de\u05d9\u05d5\u05ea \u05db\u05e4\u05d5\u05d9\u05d4","enabled":"\u05e4\u05e2\u05d9\u05dc","disabled":"\u05dc\u05d0 \u05e4\u05e2\u05d9\u05dc","Sun":"\u05e8\u05d0\u05e9\u05d5\u05df","Mon":"\u05e9\u05e0\u05d9","Tue":"\u05e9\u05dc\u05d9\u05e9\u05d9","Wed":"\u05e8\u05d1\u05d9\u05e2\u05d9","Thu":"\u05d7\u05de\u05d9\u05e9\u05d9","Fri":"\u05e9\u05d9\u05e9\u05d9","Sat":"\u05e9\u05d1\u05ea","Catalog":"\u05e7\u05d8\u05dc\u05d5\u05d2","Submit":"\u05e9\u05dc\u05d7","Quick reply":"\u05ea\u05d2\u05d5\u05d1\u05d4 \u05de\u05d4\u05d9\u05e8\u05d4","Posting mode: Replying to >>{0}<\/small>":"\u05e4\u05e8\u05e1\u05d5\u05dd: \u05ea\u05d2\u05d5\u05d1\u05d4 \u05dc- >>{0}<\/small>","Return":"\u05d7\u05d6\u05d5\u05e8","Hello!":"\u05e9\u05dc\u05d5\u05dd!","{0} users":"{0} \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd","(hide threads from this board)":"(\u05d4\u05e1\u05ea\u05e8 \u05e9\u05e8\u05e9\u05d5\u05e8\u05d9\u05dd \u05de\u05d4\u05d1\u05d5\u05e8\u05d3 \u05d4\u05d6\u05d4)","(show threads from this board)":"(\u05d4\u05e6\u05d2 \u05e9\u05e8\u05e9\u05d5\u05e8\u05d9\u05dd \u05de\u05d4\u05d1\u05d5\u05e8\u05d3 \u05d4\u05d6\u05d4)","No more threads to display":"\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05e9\u05e8\u05e9\u05d5\u05e8\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd","Loading...":"\u05d8\u05d5\u05e2\u05df...","Save as original filename":"\u05e9\u05de\u05d5\u05e8 \u05d1\u05e9\u05dd \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d4\u05de\u05e7\u05d5\u05e8\u05d9","Reported post(s).":"\u05e4\u05d5\u05e1\u05d8\u05d9\u05dd \u05d3\u05d5\u05d5\u05d7\u05d5 \u05dc\u05d4\u05e0\u05d4\u05dc\u05d4.","An unknown error occured!":"\u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05dc\u05ea\u05d9 \u05e6\u05e4\u05d5\u05d9\u05d4","Something went wrong... An unknown error occured!":"\u05d0\u05d5\u05e4\u05e1\u05e1\u05e1, \u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05dc\u05ea\u05d9 \u05e6\u05e4\u05d5\u05d9\u05d4!","Working...":"\u05e2\u05d5\u05d1\u05d3...","Posting... (#%)":"\u05e9\u05d5\u05dc\u05d7...(#%)","Posted...":"\u05e0\u05e9\u05dc\u05d7","An unknown error occured when posting!":"\u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e2\u05ea \u05e9\u05dc\u05d9\u05d7\u05ea \u05d4\u05d4\u05d5\u05d3\u05e2\u05d4.","Posting...":"\u05e9\u05d5\u05dc\u05d7...","Upload URL":"\u05d4\u05e2\u05dc\u05d4 \u05de\u05db\u05ea\u05d5\u05d1\u05ea \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8","Spoiler Image":"\u05e1\u05e4\u05d5\u05d9\u05d9\u05dc\u05e8","Comment":"\u05ea\u05d2\u05d5\u05d1\u05d4","Quick Reply":"\u05ea\u05d2\u05d5\u05d1\u05d4 \u05de\u05d4\u05d9\u05e8\u05d4","Stop watching this thread":"\u05d1\u05d8\u05dc \u05e0\u05d9\u05d8\u05d5\u05e8 \u05e9\u05dc \u05d4\u05e9\u05e8\u05e9\u05d5\u05e8","Watch this thread":"\u05e0\u05d9\u05d8\u05d5\u05e8 \u05e9\u05dc \u05d4\u05e9\u05e8\u05e9\u05d5\u05e8","Click on any image on this site to load it into oekaki applet":"\u05dc\u05d7\u05e5 \u05e2\u05dc \u05db\u05dc \u05ea\u05de\u05d5\u05e0\u05d4 \u05d1\u05d0\u05ea\u05e8 \u05db\u05d3\u05d9 \u05dc\u05d8\u05e2\u05d5\u05df \u05d0\u05d5\u05ea\u05d4 \u05dc\u05e6\u05d9\u05d9\u05e8","Sunday":"\u05e8\u05d0\u05e9\u05d5\u05df","Monday":"\u05e9\u05e0\u05d9","Tuesday":"\u05e9\u05dc\u05d9\u05e9\u05d9","Wednesday":"\u05e8\u05d1\u05d9\u05e2\u05d9","Thursday":"\u05d7\u05de\u05d9\u05e9\u05d9","Friday":"\u05e9\u05d9\u05e9\u05d9","Saturday":"\u05e9\u05d1\u05ea","January":"\u05d9\u05e0\u05d5\u05d0\u05e8","February":"\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8","March":"\u05de\u05e8\u05e5","April":"\u05d0\u05e4\u05e8\u05d9\u05dc","May":"\u05de\u05d0\u05d9","June":"\u05d9\u05d5\u05e0\u05d9","July":"\u05d9\u05d5\u05dc\u05d9","August":"\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8","September":"\u05e1\u05e4\u05d8\u05de\u05d1\u05e8","October":"\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8","November":"\u05e0\u05d5\u05d1\u05de\u05d1\u05e8","December":"\u05d3\u05e6\u05de\u05d1\u05e8","Jan":"\u05d9\u05e0\u05d5\u05d0\u05e8","Feb":"\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8","Mar":"\u05de\u05e8\u05e5","Apr":"\u05d0\u05e4\u05e8\u05d9\u05dc","Jun":"\u05d9\u05d5\u05e0\u05d9","Jul":"\u05d9\u05d5\u05dc\u05d9","Aug":"\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8","Sep":"\u05e1\u05e4\u05d8\u05de\u05d1\u05e8","Oct":"\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8","Nov":"\u05e0\u05d5\u05d1\u05de\u05d1\u05e8","Dec":"\u05d3\u05e6\u05de\u05d1\u05e8","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"\u05d4\u05d3\u05e4\u05d3\u05e4\u05df \u05e9\u05dc\u05da \u05dc\u05d0 \u05ea\u05d5\u05de\u05da \u05d1-HTML5, \u05ea\u05d5\u05e8\u05d9\u05d3 \u05db\u05e8\u05d5\u05dd!","[play once]":"[\u05e0\u05d2\u05df \u05e4\u05e2\u05dd \u05d0\u05d7\u05ea]","[loop]":"[\u05e0\u05d2\u05df \u05d1\u05dc\u05d5\u05e4]","WebM Settings":"\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea WebM","Expand videos inline":"\u05d4\u05d2\u05d3\u05dc \u05e1\u05e8\u05d8\u05d5\u05df","Play videos on hover":"\u05e0\u05d2\u05df \u05e1\u05e8\u05d8\u05d5\u05e0\u05d9\u05dd \u05d1\u05de\u05e2\u05d1\u05e8 \u05e2\u05db\u05d1\u05e8","Default volume":"\u05d5\u05d5\u05dc\u05d9\u05d5\u05dd \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc","Tree view":"\u05ea\u05e6\u05d5\u05d2\u05ea \u05e2\u05e5","Shrink all images":"\u05e6\u05de\u05e6\u05dd \u05d0\u05ea \u05db\u05dc \u05d4\u05ea\u05de\u05d5\u05e0\u05d5\u05ea","No new posts.":"\u05d0\u05d9\u05df \u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea","No new threads.":"\u05d0\u05d9\u05df \u05e9\u05e8\u05e9\u05d5\u05e8\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd","There are {0} new threads.":"\u05d9\u05e9 {0} \u05e9\u05e8\u05e9\u05d5\u05e8\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd","There are {0} new posts in this thread.":"\u05d9\u05e9 {0} \u05ea\u05d2\u05d5\u05d1\u05d5\u05ea \u05d7\u05d3\u05e9\u05d5\u05ea \u05d1\u05e9\u05e8\u05e9\u05d5\u05e8","Options":"\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea","General":"\u05db\u05dc\u05dc\u05d9","Storage: ":"\u05d0\u05d7\u05e1\u05d5\u05df:","Export":"\u05d9\u05e6\u05d5\u05d0","Import":"\u05d9\u05d1\u05d5\u05d0","Erase":"\u05e0\u05e7\u05d4","Update":"\u05e2\u05d3\u05db\u05df"}; \ No newline at end of file diff --git a/inc/locale/he_IL/LC_MESSAGES/javascript.po b/inc/locale/he_IL/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..cb108c86 --- /dev/null +++ b/inc/locale/he_IL/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# IsrChan , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "עיצוב: " + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "קובץ" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "הסתר" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "הסתר שרשורים נעולים" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "כתובת תמונה" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "בחר" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "תמונה מכתובת" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "הטמעת סרטון" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "צייר" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "מוסתר" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "הצג תמונות" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +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:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "מחיקה" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "סיבה" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "דווח" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "לחץ על \"כתוב תגובה\" לצפיה" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "לחץ להרחבה" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +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/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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "לא פעיל" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "ראשון" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "שני" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "שלישי" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "רביעי" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "חמישי" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "שישי" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "קטלוג" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "שלח" + +#: ../../../../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:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +#, python-brace-format +msgid "Posting mode: Replying to >>{0}" +msgstr "פרסום: תגובה ל- >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "חזור" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "שלום!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} משתמשים" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +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 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(הצג שרשורים מהבורד הזה)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "לא נמצאו שרשורים נוספים" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +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 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "העלה מכתובת אינטרנט" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "ספויילר" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "תגובה" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "לחץ על כל תמונה באתר כדי לטעון אותה לצייר" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "ראשון" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "שני" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "שלישי" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "רביעי" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "חמישי" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "שישי" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "שבת" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "ינואר" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "פברואר" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "מרץ" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "אפריל" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "מאי" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "יוני" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "יולי" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "אוגוסט" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "ספטמבר" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "אוקטובר" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "נובמבר" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "דצמבר" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "ינואר" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "פברואר" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "מרץ" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "אפריל" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "יוני" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "יולי" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "אוגוסט" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "ספטמבר" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "אוקטובר" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "נובמבר" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "דצמבר" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "הדפדפן שלך לא תומך ב-HTML5, תוריד כרום!" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[נגן פעם אחת]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[נגן בלופ]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "הגדרות WebM" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "הגדל סרטון" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "נגן סרטונים במעבר עכבר" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "ווליום ברירת מחדל" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "תצוגת עץ" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "צמצם את כל התמונות" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "אין תגובות חדשות" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "אין שרשורים חדשים" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "יש {0} שרשורים חדשים" + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "יש {0} תגובות חדשות בשרשור" + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "אפשרויות" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "כללי" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "אחסון:" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "יצוא" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "יבוא" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "נקה" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "" + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "עדכן" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/he_IL/LC_MESSAGES/tinyboard.mo b/inc/locale/he_IL/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..5cac0e3b Binary files /dev/null and b/inc/locale/he_IL/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/he_IL/LC_MESSAGES/tinyboard.po b/inc/locale/he_IL/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..2ebf1d7d --- /dev/null +++ b/inc/locale/he_IL/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3501 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# IsrChan , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Hebrew (Israel) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/he_IL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: he_IL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "שנייה" +msgstr[1] "שניות" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "דקה" +msgstr[1] "דקות" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "שעה" +msgstr[1] "שעות" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "יום" +msgstr[1] "ימים" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "שבוע" +msgstr[1] "שבועות" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "שנה" +msgstr[1] "שנים" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "חסום!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "הקודם" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "הבא" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "שגיאה" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "התרחשה שגיאה" + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "התחבר" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "הטקסט ארוך מדי, לחץ כאן לצפות בטקסט המלא" + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "חסום" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "חסום ומחק" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "מחק קובץ" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "אתה בטוח שברצונך למחוק את הקובץ?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "ספויילר" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "אתה בטוח שברצונך למחוק את הספויילר?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "העבר תגובה לבורד אחר" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "ערך פוסט" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "מחק" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "אתה בטוח שברצונך למחוק?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "מחק את כל הפוסטים ל-IP" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "אתה בטוח שברצונך למחוק את כל הפוסטים עבור הכתובת הנל?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "מחק פוסטים עבור הכתובת הזאת מכל הבורדים" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "אתה בטוח שברצונך למחוק את כל הפוסטים עבור הכתובת הזאת מכל הבורדים?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "ביטול עוגן" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "הפוך לעוגן" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "הרשה לשרשור לקפוץ" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "מנע מהשרשור לקפוץ" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "בטל נעילת פוסט" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "נעל פוסט" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +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:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "You have been muted for unoriginal content." + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "הודעה חדשה" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "תגובה חדשה" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "All trademarks, copyrights, comments, and images on this page are owned by and are the responsibility of their respective parties." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Lurk some more before posting." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "הממ, בוט?" + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "Your browser sent an invalid or no HTTP referer." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "השדה %s ארוך מדי." + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "גוף ההודעה ארוך מדי." + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "גוף ההודעה קצר מדי או ריק." + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "עליך לצרף תמונה/קובץ" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "שגיאת שרת#33: השרת נכשל בקבלת העלאה." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "סוג קובץ לא נתמך" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "??? מה אתה מנסה" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "הודעה לא נמצאה." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "ההודעה נעולה. אין אפשרות להגיב כרגע." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "ההודעה הגיעה לכמות התגובות האפשרית המקסימלית" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "ההודעה הגיעה לכמות התמונות האפשרית המקסימלית." + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "You didn't make a post." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "זוהה ניסיון הצפה, מתעלם מהפוסט." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "זוהה ניסיון פרסום אוטומטי, מתעלם מהפוסט." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "קופי פסטה? נסה להיות יותר מקורי" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "קופי פסטה? נסה להיות יותר מקורי. הושתקת ל-%d שניות" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "הושתקת! השתקה תשוחרר בעוד כ-%d שניות" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "כתובת האי-פי שלך קיימת ברשימה: %s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "כמות הלינקים חורגת מהמותר, הצפה?" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "יותר מדי ציטוטים, מתעלם מהפוסט." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "Too many cross-board links; post discarded." + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "לא נבחר פוסט למחיקה." + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "לא נבחר פוסט לדיווח." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "כמות הפוסטים שאתה מנסה לדווח חורגת מהמותר" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "סיסמה שגוייה." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "תמונה לא תקינה." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "סוג קובץ לא מזוהה" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "גודל הקובץ המירבי הוא: %maxsz% bytes
גודל הקובץ שלך: %filesz% bytes" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "הקובץ גדול מדי." + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "הקובץ שאתה מנסה להעלות כבר קיים!" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "הקובץ שאתה מנסה להעלות כבר קיים!" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "עליך לחכות %s לפני שתתאפשר מחיקה." + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "MIME type detection XSS exploit (IE) detected; post discarded." + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "URL לא תקין." + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "קאפצ'ה שגויה, נסה שוב." + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "You are only allowed to unban %s users at a time. You tried to unban %u users." + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "Invalid username and/or password." + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "You are not a mod…" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "Invalid username and/or password. Your user may have been deleted or changed." + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "Invalid/malformed cookies." + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "Your browser didn't submit an input when it should have." + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "השדה %s דרוש" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "השדה %s לא תקין" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "Board %s už tu je." + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "You don't have permission to do that." + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "הפוסט לא קיים..." + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "הדף לא נמצא." + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "That mod already exists!" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "That theme doesn't exist!" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "מפתח אבטחה לא תקין, חזור אחורה ונסה שוב." + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "המשתמש נחסם בעקבות ההודעה הזו - USER WAS BANNED FOR THIS POST" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "אשר פעולה" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "Could not find current version! (Check .installed)" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "Panel" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "There are no boards to search!" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "תוצאות חיפוש" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "Edit board" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "Couldn't open board after creation." + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "New board" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "Noticeboard" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "חדשות" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "Moderation log" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +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 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "New ban" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "Ban list" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "Move reply" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "Target and source board are the same." + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "Impossible to move thread; there is only one board." + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "Move thread" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "Edit user" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "Manage users" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "New PM for" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "Private message" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "PM inbox" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "Rebuild" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "Report queue" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "Config editor" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "Themes directory doesn't exist!" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "Cannot open themes directory; check permissions." + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "Manage themes" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "Installed theme: %s" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "Configuring theme: %s" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "Rebuilt theme: %s" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "Debug: Anti-spam" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "Debug: Recent posts" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "Debug: SQL" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "Database error: " + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "חסום?" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "אינך חסום." + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "חזור" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "פירוט השגיאה:" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "מחק פוסט" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "קובץ" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "סיסמה" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "סיבה" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "דווח" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "חזור לפאנל" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "פרסום תגובה" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "חזור" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "אין חדשות להציג" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "ללא נושא" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "ע\"י" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "ב" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "תגובה אחת" +msgstr[1] "%count% תגובות" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "קובץ: " + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "ספויילר" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "כתוב תגובה" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "הצג הכל" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "פוסט אחד" +msgstr[1] "%count% פוסטים" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "ו" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "תגובה עם תמונה אחת" +msgstr[1] "%count% תגובות עם תמונה" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "נוספ/ים. לחץ כאן להצגה." + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "שם" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "דוא\"ל" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "נושא" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "עדכון" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "הודעה" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "Currently editing raw HTML." + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "Edit markup instead?" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "Edit raw HTML instead?" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "אימות" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "וידאו" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "דגלים" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "מעוגן" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "נעול" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "Raw HTML" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "(למחיקת הקובץ)" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "מערכת החיפוש מנוטרלת" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "המתן כמה שניות לפני שתנסה לחפש שוב." + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "יותר מדי תוצאות חיפוש" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "תוצאה אחת ב" +msgstr[1] "%d תוצאות ב" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "אין תוצאות" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "חיפוש" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "בורדים" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "עריכה" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "Create new board" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "הודעות" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "View all noticeboard entries" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "Administration" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "Change password" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "Configuration" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "אחר" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "Debug" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "Antispam" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "פוסטים אחרונים" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "SQL" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "User account" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "Logout" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "תגובה חדשה" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "הודעה" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "פרסם ללוח ההודעות" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "מחק" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "נמחק?" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "צוות" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "הערה" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "תאריך" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "פעולות" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "מחק" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "הערה חדשה" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "סטטוס" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "פג תוקף" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "פעיל" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "ללא סיבה" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "בורד" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "כל הבורדים" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "Set" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "יפוג" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "לעולם לא" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "נראה" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "כן" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "לא" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "מחק חסימה" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "זמן" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "פעולה" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "(או סאב-נט)" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "מוסתר" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "הודעה" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "פומבי; מצורף לפוסט" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "אורך" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "New Ban" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "ביטוי:" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "פוסטים: " + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "IP address notes" + +#: ../../../../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 "(החיפוש רגיש לאותיות גדולות/קטנות ומבוסס על מילות מפתח. לחיפוש של ביטויים מדויקים השתמש במרכאות. השתמש בכוכבית (*) כווילד-קארד)" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "אין חסימות פעילות" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "IP address/mask" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "משך זמן" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "Unban selected" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "שם משתמש" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "המשך" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "אין דיווחים" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "סוג קובץ לא חוקי" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "נחסמת!!!" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "אתה חסום!!!" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "נחסמת מ " + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "נחסמת מ " + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "מהסיבה הבאה:" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "ללא סיבה" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "נחסמת ב" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "ופגה מאז, רענן את העמוד להמשיך." + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "פגה" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "מעכשיו, שיוצא ב" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "לא תפוג" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "כתובת האי-פי שלך היא " + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "נחסמת בגלל הפוסט הבא ב" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "מזהה משתמש" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "סוג" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "כלום" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "מזהה הודעה" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "Leave shadow thread" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "locks thread; replies to it with a link." + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "Target board" + +#. 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 "החיפוש אינו רגיש לאותיות רישיות ומבוסס על מילות מפתח.\nלחיפוש ביטוי מדוייק השתמש ב\"מרחאות\".\nהשתמש בכוכבית (*) כ-wildcard.\nבאפשרותך להשתמש בפילטרים הבאים:\nid, thread, subject, name.\nלהשתמש בפילטר הוסף את מילת המפתח שלך לאחר הפילטר, לדוגמא:\nname:Anonymous\nאו\nsubject:\"Some Thread\".\nאין אפשרות להשתמש ב-wildcard בעת חיפוש פילטר" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "האם אתה בטוח שברצונך לבצע זאת?" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "לחץ להמשיך ל" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "Report date" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "Reported by" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "Discard abuse report" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "Discard all abuse reports by this IP address" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "ריק" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "הועבר ל %s" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "ניסית להעלות יותר מדי תמונות!" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "ספויילר" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "סדר הקפצה" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "תגובה אחרונה" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "תאריך פרסום" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "מספר תגובות" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "רנדומלי" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "סדר לפי" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "גודל תמונה" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "קטו" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "גדטח" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "מזהה פוסט" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "לא ניתן להסיר תמונה" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "התרחשה שגיאה בניסיון לפרסם את הWebM." + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "ה-WebM שהעלת לא תקין" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "ה-WebM שפרסמת ארוך מדי" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "חזור למעלה" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "קטן מאוד" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/hu_HU/LC_MESSAGES/javascript.js b/inc/locale/hu_HU/LC_MESSAGES/javascript.js index 7c9cb698..0c638527 100644 --- a/inc/locale/hu_HU/LC_MESSAGES/javascript.js +++ b/inc/locale/hu_HU/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"St\u00edlus:","File":"F\u00e1jl","hide":"elrejt","show":"mutat","Show locked threads":"Mutassa a lez\u00e1rt sz\u00e1lakat","Hide locked threads":"Rejtse el a lez\u00e1rt sz\u00e1lakat","URL":"URL","Select":"Kiv\u00e1laszt","Remote":"K\u00fcls\u0151 link","Embed":"Be\u00e1gyaz","Oekaki":"Saj\u00e1t rajz","hidden":"rejtett","Show images":"Mutassa a k\u00e9peket","Hide images":"Rejtse el a k\u00e9peket","Password":"Jelsz\u00f3","Delete file only":"Csak a f\u00e1jlt t\u00f6r\u00f6lje","Delete":"T\u00f6rl\u00e9s","Reason":"Ok","Report":"Jelent","Click reply to view.":"Kattints a v\u00e1laszra a megjelen\u00edt\u00e9shez","Click to expand":"Kattints a nagyobb m\u00e9rethez","Hide expanded replies":"Rejtse el a nagy m\u00e9ret\u0171 v\u00e1laszokat","Brush size":"Ecsetm\u00e9ret","Set text":"Sz\u00f6veg megad\u00e1sa","Clear":"T\u00f6r\u00f6l","Save":"Ment\u00e9s","Load":"Bet\u00f6lt\u00e9s","Toggle eraser":"Rad\u00edrt kapcsol","Get color":"Sz\u00ednt kiv\u00e1laszt","Fill":"KIt\u00f6lt","Use oekaki instead of file?":"Szeretn\u00e9d a rajzodat haszn\u00e1lni f\u00e1jl helyett?","Edit in oekaki":"A rajzod szerkeszt\u00e9se","Enter some text":"\u00cdrj be sz\u00f6veget","Enter font or leave empty":"Adj meg bet\u0171t\u00edpust, vagy hagyd \u00fcresen","Forced anonymity":"Er\u0151ltetett anonimit\u00e1s","enabled":"enged\u00e9lyezett","disabled":"tiltott","Sun":"Va","Mon":"H\u00e9","Tue":"Ke","Wed":"Sze","Thu":"Cs\u00fc","Fri":"P\u00e9","Sat":"Szo","Catalog":"Katal\u00f3gus","Submit":"Elk\u00fcld","Quick reply":"Gyors v\u00e1lasz","Posting mode: Replying to >>{0}<\/small>":"Hozz\u00e1sz\u00f3l\u00e1s m\u00f3dja: V\u00e1lasz erre: >>{0}<\/small>","Return":"Vissza","Expand all images":"\u00d6sszes k\u00e9p nagy m\u00e9ret\u0171re","Hello!":"Szia!","{0} users":"(0) felhaszn\u00e1l\u00f3","(hide threads from this board)":"(sz\u00e1lak elrejt\u00e9se err\u0151l a t\u00e1bl\u00e1r\u00f3l)","(show threads from this board)":"(sz\u00e1lak mutat\u00e1sa err\u0151l a t\u00e1bl\u00e1r\u00f3l)","No more threads to display":"Nincs t\u00f6bb megjelen\u00edtend\u0151 sz\u00e1l","Loading...":"Bet\u00f6lt\u00e9s...","Save as original filename":"Ment\u00e9s eredeti f\u00e1jln\u00e9vvel","Reported post(s).":"Jelentett hozz\u00e1sz\u00f3l\u00e1s(ok).","An unknown error occured!":"Ismeretlen hiba t\u00f6rt\u00e9nt!","Something went wrong... An unknown error occured!":"V\u00e9g\u00e9rv\u00e9nyesen... Valami elveszett!","Working...":"Feldolgoz\u00e1s...","Posting... (#%)":"K\u00fcld\u00e9s... (#%)","Posted...":"Elk\u00fcldve...","An unknown error occured when posting!":"Ismeretlen hiba t\u00f6rt\u00e9nt k\u00fcld\u00e9s k\u00f6zben!","Posting...":"K\u00fcld\u00e9s...","Upload URL":"URL Felt\u00f6lt\u00e9se","Spoiler Image":"Spoiler K\u00e9p","Comment":"Hozz\u00e1sz\u00f3l\u00e1s","Quick Reply":"Gyors v\u00e1lasz","Stop watching this thread":"Sz\u00e1l figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this thread":"Figyelje ezt a sz\u00e1lat","Unpin this board":"T\u00e1bla kiemel\u00e9s megsz\u00fcntet\u00e9se","Pin this board":"Emelje ki a t\u00e1bl\u00e1t","Stop watching this board":"T\u00e1bla figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this board":"Figyelje ezt a t\u00e1bl\u00e1t","Click on any image on this site to load it into oekaki applet":"Kattints a k\u00edv\u00e1nt k\u00e9pre ezen az oldalon a rajzprogramba bet\u00f6lt\u00e9shez","Sunday":"Vas\u00e1rnap","Monday":"H\u00e9tf\u0151","Tuesday":"Kedd","Wednesday":"Szerda","Thursday":"Cs\u00fct\u00f6rt\u00f6k","Friday":"P\u00e9ntek","Saturday":"Szombat","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"M\u00e1rcius","April":"\u00c1prilis","May":"M\u00e1jus","June":"J\u00fanius","July":"J\u00falius","August":"Augusztus","September":"Szeptember","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"M\u00e1r","Apr":"\u00c1pr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Szep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"D\u00e9lel\u0151tt","PM":"D\u00e9lut\u00e1n","am":"d\u00e9lel\u0151tt","pm":"d\u00e9lut\u00e1n","Your browser does not support HTML5 video.":"A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a HTML5 vide\u00f3t.","[play once]":"[lej\u00e1tsz\u00e1s egyszer]","[loop]":"[ism\u00e9tl\u00e9s]","WebM Settings":"WebM be\u00e1ll\u00edt\u00e1sok","Expand videos inline":"Vide\u00f3k kinagy\u00edt\u00e1sa sz\u00e1lon bel\u00fcl","Play videos on hover":"Vide\u00f3k lebeg\u0151 lej\u00e1tsz\u00e1sa ha az eg\u00e9rmutat\u00f3 f\u00f6l\u00e9j\u00fck \u00e9r","Default volume":"Alap hanger\u0151","Tree view":"Fa n\u00e9zet","Shrink all images":"\u00d6sszes k\u00e9p eredeti m\u00e9ret\u0171re","Animate GIFs":"GIF-ek lej\u00e1tsz\u00e1sa","Unanimate GIFs":"Anim\u00e1lt GIF-ek le\u00e1ll\u00edt\u00e1sa"}; \ No newline at end of file +l10n = {"Style: ":"St\u00edlus:","File":"F\u00e1jl","hide":"elrejt","show":"mutat","Show locked threads":"Mutassa a lez\u00e1rt sz\u00e1lakat","Hide locked threads":"Rejtse el a lez\u00e1rt sz\u00e1lakat","URL":"URL","Select":"Kiv\u00e1laszt","Remote":"K\u00fcls\u0151 link","Embed":"Be\u00e1gyaz","Oekaki":"Saj\u00e1t rajz","hidden":"rejtett","Show images":"Mutassa a k\u00e9peket","Hide images":"Rejtse el a k\u00e9peket","Password":"Jelsz\u00f3","Delete file only":"Csak a f\u00e1jlt t\u00f6r\u00f6lje","Delete":"T\u00f6rl\u00e9s","Reason":"Ok","Report":"Jelent","Click reply to view.":"Kattints a v\u00e1laszra a megjelen\u00edt\u00e9shez","Click to expand":"\u00d6sszes hozz\u00e1sz\u00f3l\u00e1s megjelen\u00edt\u00e9se","Hide expanded replies":"Hozz\u00e1sz\u00f3l\u00e1sok elrejt\u00e9se","Brush size":"Ecsetm\u00e9ret","Set text":"Sz\u00f6veg megad\u00e1sa","Clear":"T\u00f6r\u00f6l","Save":"Ment\u00e9s","Load":"Bet\u00f6lt\u00e9s","Toggle eraser":"Rad\u00edrt kapcsol","Get color":"Sz\u00ednt kiv\u00e1laszt","Fill":"KIt\u00f6lt","Use oekaki instead of file?":"Szeretn\u00e9d a rajzodat haszn\u00e1lni f\u00e1jl helyett?","Edit in oekaki":"A rajzod szerkeszt\u00e9se","Enter some text":"\u00cdrj be sz\u00f6veget","Enter font or leave empty":"Adj meg bet\u0171t\u00edpust, vagy hagyd \u00fcresen","Forced anonymity":"Er\u0151ltetett anonimit\u00e1s","enabled":"enged\u00e9lyezett","disabled":"tiltott","Sun":"Va","Mon":"H\u00e9","Tue":"Ke","Wed":"Sze","Thu":"Cs\u00fc","Fri":"P\u00e9","Sat":"Szo","Catalog":"Katal\u00f3gus","Submit":"Elk\u00fcld","Quick reply":"Gyors v\u00e1lasz","Posting mode: Replying to >>{0}<\/small>":"Hozz\u00e1sz\u00f3l\u00e1s m\u00f3dja: V\u00e1lasz erre: >>{0}<\/small>","Return":"Vissza","Expand all images":"\u00d6sszes k\u00e9p nagy m\u00e9ret\u0171re","Hello!":"Szia!","{0} users":"(0) felhaszn\u00e1l\u00f3","(hide threads from this board)":"(sz\u00e1lak elrejt\u00e9se err\u0151l a t\u00e1bl\u00e1r\u00f3l)","(show threads from this board)":"(sz\u00e1lak mutat\u00e1sa err\u0151l a t\u00e1bl\u00e1r\u00f3l)","No more threads to display":"Nincs t\u00f6bb megjelen\u00edtend\u0151 sz\u00e1l","Loading...":"Bet\u00f6lt\u00e9s...","Save as original filename":"Ment\u00e9s eredeti f\u00e1jln\u00e9vvel","Reported post(s).":"Jelentett hozz\u00e1sz\u00f3l\u00e1s(ok).","An unknown error occured!":"Ismeretlen hiba t\u00f6rt\u00e9nt!","Something went wrong... An unknown error occured!":"V\u00e9g\u00e9rv\u00e9nyesen... Valami elveszett!","Working...":"Feldolgoz\u00e1s...","Posting... (#%)":"K\u00fcld\u00e9s... (#%)","Posted...":"Elk\u00fcldve...","An unknown error occured when posting!":"Ismeretlen hiba t\u00f6rt\u00e9nt k\u00fcld\u00e9s k\u00f6zben!","Posting...":"K\u00fcld\u00e9s...","Upload URL":"URL Felt\u00f6lt\u00e9se","Spoiler Image":"Spoiler K\u00e9p","Comment":"Hozz\u00e1sz\u00f3l\u00e1s","Quick Reply":"Gyors v\u00e1lasz","Stop watching this thread":"Sz\u00e1l figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this thread":"Figyelje ezt a sz\u00e1lat","Unpin this board":"T\u00e1bla kiemel\u00e9s megsz\u00fcntet\u00e9se","Pin this board":"Emelje ki a t\u00e1bl\u00e1t","Stop watching this board":"T\u00e1bla figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this board":"Figyelje ezt a t\u00e1bl\u00e1t","Click on any image on this site to load it into oekaki applet":"Kattints a k\u00edv\u00e1nt k\u00e9pre ezen az oldalon a rajzprogramba bet\u00f6lt\u00e9shez","Sunday":"Vas\u00e1rnap","Monday":"H\u00e9tf\u0151","Tuesday":"Kedd","Wednesday":"Szerda","Thursday":"Cs\u00fct\u00f6rt\u00f6k","Friday":"P\u00e9ntek","Saturday":"Szombat","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"M\u00e1rcius","April":"\u00c1prilis","May":"M\u00e1jus","June":"J\u00fanius","July":"J\u00falius","August":"Augusztus","September":"Szeptember","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"M\u00e1r","Apr":"\u00c1pr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Szep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"D\u00e9lel\u0151tt","PM":"D\u00e9lut\u00e1n","am":"d\u00e9lel\u0151tt","pm":"d\u00e9lut\u00e1n","Your browser does not support HTML5 video.":"A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a HTML5 vide\u00f3t.","[play once]":"[lej\u00e1tsz\u00e1s egyszer]","[loop]":"[ism\u00e9tl\u00e9s]","WebM Settings":"WebM be\u00e1ll\u00edt\u00e1sok","Expand videos inline":"Vide\u00f3k kinagy\u00edt\u00e1sa sz\u00e1lon bel\u00fcl","Play videos on hover":"Vide\u00f3k lebeg\u0151 lej\u00e1tsz\u00e1sa ha az eg\u00e9rmutat\u00f3 f\u00f6l\u00e9j\u00fck \u00e9r","Default volume":"Alap hanger\u0151","Tree view":"Fa n\u00e9zet","Shrink all images":"\u00d6sszes k\u00e9p eredeti m\u00e9ret\u0171re","Animate GIFs":"GIF-ek lej\u00e1tsz\u00e1sa","Unanimate GIFs":"Anim\u00e1lt GIF-ek le\u00e1ll\u00edt\u00e1sa","WebM":"WebM","No new posts.":"Nincs \u00faj hozz\u00e1sz\u00f3l\u00e1s.","No new threads.":"Nincs \u00faj sz\u00e1l.","There are {0} new threads.":"{0} \u00faj sz\u00e1l keletkezett.","There are {0} new posts in this thread.":"{0} \u00faj hozz\u00e1sz\u00f3l\u00e1s keletkezett ebben a sz\u00e1lban.","Options":"Be\u00e1ll\u00edt\u00e1sok","General":"\u00c1ltal\u00e1nos","Storage: ":"T\u00e1rhely:","Export":"Export\u00e1l\u00e1s","Import":"Import\u00e1l\u00e1s","Paste your storage data":"Illeszd be a t\u00e1rhely adataid","Erase":"T\u00f6rl\u00e9s","":"Legyen egy biztons\u00e1gi ment\u00e9sed a t\u00e1rhelyedr\u0151l, arra az esetre,nha az itteni t\u00e9nyked\u00e9sed ok\u00e1n a weboldal haszn\u00e1lhatatlann\u00e1 v\u00e1lna.","User CSS":"Felhaszn\u00e1l\u00f3 \u00e1ltal defini\u00e1lt CSS","Update custom CSS":"Tetsz\u0151leges CSS fel\u00f6lt\u00e9se","Enter here your own CSS rules...":"Add meg a saj\u00e1t CSS szab\u00e1lyaidat...","You can include CSS files from remote servers, for example:":"Lehet\u0151s\u00e9ged van CSS f\u00e1jlt haszn\u00e1lni t\u00e1voli szerverr\u0151l is, a k\u00f6vetkez\u0151k\u00e9ppen:","User JS":"Felhaszn\u00e1l\u00f3i JS","Update custom Javascript":"Tetsz\u0151leges Javascript felt\u00f6lt\u00e9se","Enter here your own Javascript code...":"Add meg a saj\u00e1t Javascript k\u00f3dod...","You can include JS files from remote servers, for example:":"Lehet\u0151s\u00e9ged van JS f\u00e1jlok haszn\u00e1lat\u00e1ra t\u00e1voli szerverr\u0151l, a k\u00f6vetkez\u0151k\u00e9ppen:","Color IDs":"Felhaszn\u00e1l\u00f3i azonos\u00edt\u00f3k sz\u00ednez\u00e9se","Update":"Friss\u00edt"}; \ No newline at end of file diff --git a/inc/locale/hu_HU/LC_MESSAGES/javascript.po b/inc/locale/hu_HU/LC_MESSAGES/javascript.po index 3d9ecf24..15bf5dfa 100644 --- a/inc/locale/hu_HU/LC_MESSAGES/javascript.po +++ b/inc/locale/hu_HU/LC_MESSAGES/javascript.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -120,7 +120,7 @@ msgid "Delete" msgstr "Törlés" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Ok" @@ -136,12 +136,12 @@ msgstr "Kattints a válaszra a megjelenítéshez" #: ../../../../js/expand.js:20 ../../../../js/expand.js:22 #: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 msgid "Click to expand" -msgstr "Kattints a nagyobb mérethez" +msgstr "Összes hozzászólás megjelenítése" #: ../../../../js/expand.js:44 ../../../../js/expand.js:46 #: ../../../../js/expand.js:50 msgid "Hide expanded replies" -msgstr "Rejtse el a nagy méretű válaszokat" +msgstr "Hozzászólások elrejtése" #: ../../../../js/oekaki.js:10 msgid "Brush size" @@ -215,43 +215,45 @@ msgid "disabled" msgstr "tiltott" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Va" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Hé" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Ke" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Sze" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Csü" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Pé" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "Szo" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalógus" @@ -319,6 +321,7 @@ msgstr "Nincs több megjelenítendő szál" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Betöltés..." @@ -435,139 +438,140 @@ msgstr "Figyelje ezt a táblát" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Kattints a kívánt képre ezen az oldalon a rajzprogramba betöltéshez" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Vasárnap" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Hétfő" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Kedd" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Szerda" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Csütörtök" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Péntek" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Szombat" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Január" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Február" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Március" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Április" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Május" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Június" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Július" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Augusztus" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Szeptember" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Október" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "November" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "December" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Feb" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Már" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Ápr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Aug" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Szep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Okt" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dec" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "Délelőtt" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "Délután" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "délelőtt" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "délután" @@ -606,115 +610,239 @@ msgid "Tree view" msgstr "Fa nézet" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "Összes kép eredeti méretűre" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "GIF-ek lejátszása" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "Animált GIF-ek leállítása" #: ../../../../js/webm-settings.js:41 msgid "WebM" -msgstr "" +msgstr "WebM" #: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 msgid "No new posts." -msgstr "" +msgstr "Nincs új hozzászólás." #: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 msgid "No new threads." -msgstr "" +msgstr "Nincs új szál." #: ../../../../js/live-index.js:72 #, python-brace-format msgid "There are {0} new threads." -msgstr "" +msgstr "{0} új szál keletkezett." #: ../../../../js/live-index.js:83 #, python-brace-format msgid "There are {0} new posts in this thread." -msgstr "" +msgstr "{0} új hozzászólás keletkezett ebben a szálban." #: ../../../../js/options.js:106 msgid "Options" -msgstr "" +msgstr "Beállítások" #: ../../../../js/options/general.js:15 msgid "General" -msgstr "" +msgstr "Általános" #: ../../../../js/options/general.js:18 msgid "Storage: " -msgstr "" +msgstr "Tárhely:" #: ../../../../js/options/general.js:21 msgid "Export" -msgstr "" +msgstr "Exportálás" #: ../../../../js/options/general.js:27 msgid "Import" -msgstr "" +msgstr "Importálás" #: ../../../../js/options/general.js:28 msgid "Paste your storage data" -msgstr "" +msgstr "Illeszd be a tárhely adataid" #: ../../../../js/options/general.js:40 msgid "Erase" -msgstr "" +msgstr "Törlés" #: ../../../../js/options/general.js:41 msgid "" "Are you sure you want to erase your storage? This involves your hidden " "threads, watched threads, post password and many more." -msgstr "" +msgstr "Biztos vagy benne, hogy törölni akarod a tárhelyedet? Ez magában voglalja a rejtett szálaidat, figyelt szálaidat, hozzászólási jelszavad és még számos egyebet." #: ../../../../js/options/user-css.js:14 msgid "User CSS" -msgstr "" +msgstr "Felhasználó által definiált CSS" #: ../../../../js/options/user-css.js:23 msgid "Update custom CSS" -msgstr "" +msgstr "Tetszőleges CSS felöltése" #: ../../../../js/options/user-css.js:45 msgid "Enter here your own CSS rules..." -msgstr "" +msgstr "Add meg a saját CSS szabályaidat..." #: ../../../../js/options/user-css.js:46 msgid "" "If you want to make a redistributable style, be sure to\n" " have a Yotsuba B theme selected." -msgstr "" +msgstr "Ha megosztható stílust szerenél létrehozni, \ngyőződj meg róla, hogy a Yotsuba B téma van kiválasztva." #: ../../../../js/options/user-css.js:47 msgid "You can include CSS files from remote servers, for example:" -msgstr "" +msgstr "Lehetőséged van CSS fájlt használni távoli szerverről is, a következőképpen:" #: ../../../../js/options/user-js.js:14 msgid "User JS" -msgstr "" +msgstr "Felhasználói JS" #: ../../../../js/options/user-js.js:23 msgid "Update custom Javascript" -msgstr "" +msgstr "Tetszőleges Javascript feltöltése" #: ../../../../js/options/user-js.js:54 msgid "Enter here your own Javascript code..." -msgstr "" +msgstr "Add meg a saját Javascript kódod..." #: ../../../../js/options/user-js.js:55 msgid "" "Have a backup of your storage somewhere, as messing here\n" " may render you this website unusable." -msgstr "" +msgstr "Legyen egy biztonsági mentésed a tárhelyedről, arra az esetre,\nha az itteni ténykedésed okán a weboldal használhatatlanná válna." #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" +msgstr "Lehetőséged van JS fájlok használatára távoli szerverről, a következőképpen:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "Felhasználói azonosítók színezése" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "Frissít" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" msgstr "" diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo index d2f119ce..65936cbb 100644 Binary files a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo and b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po index e4ac605d..667ac3c4 100644 --- a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n" "MIME-Version: 1.0\n" @@ -28,11 +28,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "másodperc" msgstr[1] "másodperc" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -42,11 +44,13 @@ msgstr[1] "másodperc" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "perc" msgstr[1] "perc" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -56,11 +60,13 @@ msgstr[1] "perc" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "óra" msgstr[1] "óra" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -70,11 +76,13 @@ msgstr[1] "óra" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "nap" msgstr[1] "nap" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -84,6 +92,7 @@ msgstr[1] "nap" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "hét" @@ -98,6 +107,7 @@ msgstr[1] "hét" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "év" @@ -107,7 +117,7 @@ msgstr[1] "év" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Bannolva!" @@ -121,6 +131,7 @@ msgstr "Bannolva!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Előző" @@ -134,7 +145,8 @@ msgstr "Előző" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Következő" @@ -225,7 +237,8 @@ msgstr "Hozzászólás áthelyezése másik táblára" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Hozzászólás szerkesztése" @@ -322,6 +335,7 @@ msgstr "Szál áthelyezése másik táblára" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Némítva lettél nem eredeti tartalom miatt." @@ -333,6 +347,7 @@ msgstr "Némítva lettél nem eredeti tartalom miatt." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Új Szál" @@ -340,6 +355,7 @@ msgstr "Új Szál" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Új Hozzászólás" @@ -348,6 +364,7 @@ msgstr "Új Hozzászólás" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -373,6 +390,7 @@ msgstr "Leselkedj többet mielőtt beleszólsz." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Úgy látszik nem vagy ember." @@ -380,6 +398,7 @@ msgstr "Úgy látszik nem vagy ember." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "A böngésződ nem, vagy érvénytelen HTTP hivatkozást küldött." @@ -387,6 +406,7 @@ msgstr "A böngésződ nem, vagy érvénytelen HTTP hivatkozást küldött." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "A %s mező túl rövid lett." @@ -395,6 +415,7 @@ msgstr "A %s mező túl rövid lett." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "A body túl hosszú lett." @@ -402,6 +423,7 @@ msgstr "A body túl hosszú lett." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "A body túl rövid lett, vagy üres." @@ -409,6 +431,7 @@ msgstr "A body túl rövid lett, vagy üres." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Fel kell töltened egy képet." @@ -416,6 +439,7 @@ msgstr "Fel kell töltened egy képet." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "A szerver képtelen kezelni a feltöltésed." @@ -423,6 +447,7 @@ msgstr "A szerver képtelen kezelni a feltöltésed." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Nem támogatott képformátum." @@ -430,6 +455,7 @@ msgstr "Nem támogatott képformátum." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Érvénytelen tábla!" @@ -437,6 +463,7 @@ msgstr "Érvénytelen tábla!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "A megadott szál nem létezik." @@ -444,6 +471,7 @@ msgstr "A megadott szál nem létezik." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Szál lezárva. Egyelőre nem válaszolhatsz." @@ -451,6 +479,7 @@ msgstr "Szál lezárva. Egyelőre nem válaszolhatsz." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "A szál elérte a maximális hozzászólások számát." @@ -458,6 +487,7 @@ msgstr "A szál elérte a maximális hozzászólások számát." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "A szál elérte a maximális képfeltöltések számát." @@ -465,6 +495,7 @@ msgstr "A szál elérte a maximális képfeltöltések számát." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Nem küldtél semmit." @@ -472,6 +503,7 @@ msgstr "Nem küldtél semmit." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Flood érzékelve. Üzenet elvetve." @@ -479,6 +511,7 @@ msgstr "Flood érzékelve. Üzenet elvetve." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Az küldeményed automatizáltnak tűnik. Üzenet elvetve." @@ -486,6 +519,7 @@ msgstr "Az küldeményed automatizáltnak tűnik. Üzenet elvetve." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Nem eredeti tartalom!" @@ -493,6 +527,7 @@ msgstr "Nem eredeti tartalom!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Nem eredeti tartalom! El lettél némítva %d másodpercre." @@ -501,6 +536,7 @@ msgstr "Nem eredeti tartalom! El lettél némítva %d másodpercre." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Némítva lettél! Lejár: %d másodperc múlva." @@ -509,6 +545,7 @@ msgstr "Némítva lettél! Lejár: %d másodperc múlva." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Az IP címed listázva van itt: %s." @@ -517,6 +554,7 @@ msgstr "Az IP címed listázva van itt: %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Túl sok hivatkozás; flood érzékelve." @@ -524,6 +562,7 @@ msgstr "Túl sok hivatkozás; flood érzékelve." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Túl sok idézés; üzenet elvetve." @@ -531,6 +570,7 @@ msgstr "Túl sok idézés; üzenet elvetve." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Túl sok tábla keresztlinkelés; üzenet elvetve." @@ -538,6 +578,7 @@ msgstr "Túl sok tábla keresztlinkelés; üzenet elvetve." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Nem választottál ki semmit törlésre." @@ -545,6 +586,7 @@ msgstr "Nem választottál ki semmit törlésre." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Nem választottál ki semmit jelentésre." @@ -552,6 +594,7 @@ msgstr "Nem választottál ki semmit jelentésre." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Nem jelenthetsz ilyen sok hozzászólást egyszerre." @@ -559,6 +602,7 @@ msgstr "Nem jelenthetsz ilyen sok hozzászólást egyszerre." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Rossz jelszó..." @@ -566,6 +610,7 @@ msgstr "Rossz jelszó..." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Érvénytelen kép." @@ -573,6 +618,7 @@ msgstr "Érvénytelen kép." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Ismeretlen fájlkiterjesztés." @@ -580,6 +626,7 @@ msgstr "Ismeretlen fájlkiterjesztés." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maximális fájlméret: %maxsz% Byte
A fájlod mérete: %filesz% Byte" @@ -587,6 +634,7 @@ msgstr "Maximális fájlméret: %maxsz% Byte
A fájlod mérete: %filesz% Byte #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "A fájl túl nagy." @@ -594,6 +642,7 @@ msgstr "A fájl túl nagy." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "A fájl már fel lett töltve egyszer!" @@ -602,6 +651,7 @@ msgstr "A fájl már fel lett töltve egyszer!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "A fájl már fel lett töltve egyszer ebben a szálban!" @@ -610,6 +660,7 @@ msgstr "A fájl már fel lett töltve egyszer ebben a szálba #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Várnod kell %s másodpercet mielőtt törlöd." @@ -618,6 +669,7 @@ msgstr "Várnod kell %s másodpercet mielőtt törlöd." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "MIME típus találat XSS exploit (IE) érzékelve; üzenet elvetve." @@ -625,6 +677,7 @@ msgstr "MIME típus találat XSS exploit (IE) érzékelve; üzenet elvetve." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "A videó URL-je amelyet beilleszteni próbáltál, nem értelmezhető." @@ -632,6 +685,7 @@ msgstr "A videó URL-je amelyet beilleszteni próbáltál, nem értelmezhető." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Úgy látszik elírtad az ellenőrzést." @@ -640,6 +694,7 @@ msgstr "Úgy látszik elírtad az ellenőrzést." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -650,6 +705,7 @@ msgstr "Csak %s felhasználó kitiltását vonhatod vissza egyszerre. Te %u felh #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Érvénytelen felhasználónév és/vagy jelszó." @@ -657,6 +713,7 @@ msgstr "Érvénytelen felhasználónév és/vagy jelszó." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Nem vagy moderátor..." @@ -664,6 +721,7 @@ msgstr "Nem vagy moderátor..." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -673,6 +731,7 @@ msgstr "Érvénytelen felhasználónév és/vagy jelszó. A fiókod talán tör #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Érvénytelen vagy hibás sütik." @@ -680,6 +739,7 @@ msgstr "Érvénytelen vagy hibás sütik." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "A böngésződ nem küldött bemenetet amikor kellett volna." @@ -687,6 +747,7 @@ msgstr "A böngésződ nem küldött bemenetet amikor kellett volna." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "A %s mező szükséges." @@ -695,6 +756,7 @@ msgstr "A %s mező szükséges." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "A %s mező érvénytelen." @@ -703,6 +765,7 @@ msgstr "A %s mező érvénytelen." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Már létezik ez a tábla: %s " @@ -711,6 +774,7 @@ msgstr "Már létezik ez a tábla: %s " #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Ehhez a funkcióhoz nincs jogosultságod." @@ -718,6 +782,7 @@ msgstr "Ehhez a funkcióhoz nincs jogosultságod." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "A hozzászólás nem létezik." @@ -725,6 +790,7 @@ msgstr "A hozzászólás nem létezik." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Az oldal nem található." @@ -732,6 +798,7 @@ msgstr "Az oldal nem található." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Ez a moderátor már létezik!" @@ -740,6 +807,7 @@ msgstr "Ez a moderátor már létezik!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Nincs ilyen téma!" @@ -747,6 +815,7 @@ msgstr "Nincs ilyen téma!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Érvénytelen biztonsági azonosító! Lépj vissza és próbáld újra." @@ -760,6 +829,7 @@ msgstr "Érvénytelen biztonsági azonosító! Lépj vissza és próbáld újra. #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "BÁNTOTTUK" @@ -846,10 +916,14 @@ msgstr "Moderációs napló" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -858,11 +932,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Új kitiltás" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Kitiltási lista" @@ -870,17 +948,20 @@ msgstr "Kitiltási lista" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Hozzászólás áthelyezése" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Cél és forrástábla azonos." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Szál nem áthelyezhető; csak egy tábla van." @@ -888,18 +969,20 @@ msgstr "Szál nem áthelyezhető; csak egy tábla van." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Szál áthelyezése" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Felhasználó szerkesztése" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Felhasználók kezelése" @@ -908,11 +991,13 @@ msgstr "Felhasználók kezelése" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Új privát üzenet neki:" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Privát üzenet" @@ -920,6 +1005,7 @@ msgstr "Privát üzenet" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Beérkező privát üzenetek" @@ -930,12 +1016,14 @@ msgstr "Beérkező privát üzenetek" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Újraépítés" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Jelentések" @@ -943,55 +1031,66 @@ msgstr "Jelentések" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Beállítás szerkesztő" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Témák mappa nem létezik!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Témák mappa nem megnyitható: ellenőrizd az engedélyeket." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Témák rendezése" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Telepített téma: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Konfiguráló téma: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Újjáépített téma: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Hibaellenőrzés: Spamszűrő" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Hibaellenőrzés: Legutóbbi hozzászólások" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Hibaellenőrzés: SQL" @@ -1059,6 +1158,10 @@ msgstr "Hozzászólás Törölése" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1093,6 +1196,8 @@ msgstr "Fájl" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1172,6 +1277,12 @@ msgstr "Jelszó" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1244,6 +1355,8 @@ msgstr "nincs téma" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "-tól" @@ -1294,6 +1407,7 @@ msgstr "Spoiler Kép" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Válasz" @@ -1305,6 +1419,7 @@ msgstr "Válasz" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Mind megjelenítése" @@ -1316,6 +1431,7 @@ msgstr "Mind megjelenítése" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Utolsó hozzászólás" @@ -1329,6 +1445,7 @@ msgstr[1] "Utolsó %count% hozzászólás" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 hozzászólás" @@ -1343,6 +1460,8 @@ msgstr[1] "%count% hozzászólás" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "és" @@ -1354,6 +1473,7 @@ msgstr "és" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 válasz képpel" @@ -1367,6 +1487,7 @@ msgstr[1] "%count% válasz képpel" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "elrejtve. Kattints a válaszra a megjelenítéshez." @@ -1395,6 +1516,9 @@ msgstr "elrejtve. Kattints a válaszra a megjelenítéshez." #. line 7 #. 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 @@ -1418,6 +1542,8 @@ msgstr "Név" #. 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 @@ -1452,6 +1578,9 @@ msgstr "Email" #. line 23 #. line 12 #. 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 @@ -1480,6 +1609,8 @@ msgstr "Frissít" #. 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 @@ -1571,6 +1702,10 @@ msgstr "Jelölések" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1615,6 +1750,10 @@ msgstr "Ragacs" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1659,6 +1798,10 @@ msgstr "Lezár" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1757,6 +1900,12 @@ msgstr "Nincs megjelenítendő eredmény." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1765,38 +1914,43 @@ msgstr "Nincs megjelenítendő eredmény." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Keres" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Kitiltási fellebbezés nem található!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Kitiltási fellebbezések" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Új felhasználó" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Nem lehetséges előléptetni/lefokozni a felhasználót." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Hibakeresés: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1815,6 +1969,9 @@ msgstr "A PHP kódod szabálytalan részeket tartalmazott. Lépj vissza és jav #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1880,7 +2037,8 @@ msgstr "Spamvédelem" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Legutóbbi üzenetek" @@ -2025,6 +2183,15 @@ msgstr "Küldd a hírek bejegyzésbe" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2064,6 +2231,9 @@ msgstr "Személyzet" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2083,6 +2253,8 @@ msgstr "Jegyzet" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2125,6 +2297,8 @@ msgstr "Új jegyzet" #. 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" @@ -2219,6 +2393,15 @@ msgstr "nincs indok" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2274,6 +2457,9 @@ msgstr "minden tábla" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2312,6 +2498,9 @@ msgstr "Beállít" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2358,6 +2547,9 @@ msgstr "soha" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2402,6 +2594,10 @@ msgstr "Kitiltást felold" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2441,6 +2637,11 @@ msgstr "Idő" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2502,6 +2703,8 @@ msgstr "Új Kitiltás" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2558,6 +2761,7 @@ msgstr "Időtartam" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Kiválasztottak kitiltását felold" @@ -2575,6 +2779,9 @@ msgstr "Kiválasztottak kitiltását felold" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2630,7 +2837,7 @@ msgstr "Hiba a kép újrarajzolása közben!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Hiba a kép átméretezése közben!" @@ -2664,41 +2871,54 @@ msgid "Your ban was filed on" msgstr "A kitiltásod érvénybe lépett" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "óta lejárt. Frissítsd az oldalt a továbblépéshez." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "lejár" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "mostantól, amely" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "nem jár le" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Az IP címed" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Ki lettél tiltva a következő hozzászólás miatt" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "A kitiltás fellebbezését beküldted" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Még mindig függőben van." @@ -2720,21 +2940,28 @@ msgstr "Még mindig függőben van." #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Megfellebbezted a kitiltást" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "és el lett utasítva. Nem fellebbezhetsz többet a kitiltás ellen." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2758,10 +2985,14 @@ msgstr "A maximálisan engedélyett számú fellebbezést felhasználtad a kitil #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "és meg lett tagadva." @@ -2783,21 +3014,28 @@ msgstr "és meg lett tagadva." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Még fellebbezhetsz a kitiltás ellen. Írd meg az indokot alább!" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Utoljára megfellebbezted ezt a kitiltást" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "A kitiltásod megfellebbezhető, a szövegezést alább küldheted el." @@ -2816,6 +3054,10 @@ msgstr "A kitiltásod megfellebbezhető, a szövegezést alább küldheted el." #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2884,6 +3126,8 @@ msgstr "lezárja a szálat; linkkel válaszol rá" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3043,7 +3287,8 @@ msgstr "Egyik sem" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Áthelyezve ide: %s." @@ -3055,6 +3300,7 @@ msgid "" msgstr "Nem sikerült a RecentPosts téma létrehozása, mert nem találhatók feldolgozásra váró táblák." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "Túl sok képet próbáltál feltölteni!" @@ -3069,6 +3315,10 @@ msgstr "Spoiler fájl" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3091,6 +3341,10 @@ msgstr "Utolsó hozzászólás" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3104,6 +3358,10 @@ msgstr "Készítés dátuma" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3117,6 +3375,10 @@ msgstr "Válaszok száma" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3186,33 +3448,55 @@ msgstr "A képet nem lehetett automatikusan tájolni!" msgid "Could not strip EXIF metadata!" msgstr "EXIF metaadatok eltávolítása sikertelen!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." -msgstr "" +msgstr "Hiba történt a webm feldolgozása során." -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." -msgstr "" +msgstr "Érvénytelen webm lett felöltve." -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." -msgstr "" +msgstr "A feltöltött webm audio vagy egyéb további folyamot tartlmaz." -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " -msgstr "" +msgstr "A felöltött webm időtartama hosszabb mint" #. line 48 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 msgid "Go to top" -msgstr "" +msgstr "Ugrás felülre" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 msgid "Don't show my flag" -msgstr "" +msgstr "Ne mutasd a zászlómat" #. line 36 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" +msgstr "Nagyon kicsi" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "(nincs hozzászólás)" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" msgstr "" diff --git a/inc/locale/it_IT/LC_MESSAGES/javascript.js b/inc/locale/it_IT/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..c4e41ba0 --- /dev/null +++ b/inc/locale/it_IT/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Stile","File":"File","hide":"Nascondi","show":"Mostra","Show locked threads":"Mostra Thread Bloccati","Hide locked threads":"Nascondi Thread Bloccati","URL":"URL","Select":"Selezione","Remote":"Remoto","Embed":"Incluso","Oekaki":"Oekaki","hidden":"Nascosto","Show images":"Mostra immagini","Hide images":"Nascondi Immagini","Password":"Password","Delete file only":"Elimina il solo file","Delete":"Elimina","Reason":"Motivazione","Report":"Segnala","Click reply to view.":"Premi \"Rispondi\" per visualizzare.","Click to expand":"Premi per estendere","Hide expanded replies":"Nascondi le risposte estese","Brush size":"Dimensioni Pennelli","Set text":"Imposta testo","Clear":"Svuota","Save":"Salva","Load":"Carica","Toggle eraser":"Abilita gomma","Get color":"Prendi colore","Fill":"Riempi","Use oekaki instead of file?":"Usare l'Oekaki invece del file?","Edit in oekaki":"Modifica come Oekaki","Enter some text":"Inserire del testo","Enter font or leave empty":"Selezionare un font o lasciare vuoto","Forced anonymity":"Forza anonimato.","enabled":"Abilitato","disabled":"Disabilitato","Sun":"Dom","Mon":"Lun","Tue":"Mar","Wed":"Mer","Thu":"Gio","Fri":"Ven","Sat":"Sab","Catalog":"Archivio","Submit":"Pubblica","Quick reply":"Risposta Rapida","Posting mode: Replying to >>{0}<\/small>":"Stai rispondendo a >>{0}<\/small>","Return":"Indietro","Expand all images":"Espandi tutte le immagini","Hello!":"Ciao!","{0} users":"{0} utenti","(hide threads from this board)":"(nascondi thread da questa board)","(show threads from this board)":"(mostra thread da questa board)","No more threads to display":"Nessun thread da mostrare","Loading...":"Caricamento...","Save as original filename":"Salva con nome originale","Reported post(s).":"(Post segnalato\\i)","An unknown error occured!":"Errore sconosciuto","Something went wrong... An unknown error occured!":"C'\u00e8 stato un problema... Errore sconosciuto","Working...":"Lavorando...","Posting... (#%)":"Pubblicando... (#%)","Posted...":"Pubblicato...","An unknown error occured when posting!":"Errore sconosciuto nel post","Posting...":"Pubblicando...","Upload URL":"URL","Spoiler Image":"Immagine sotto Spoiler","Comment":"Commento","Quick Reply":"Risposta Rapida","Stop watching this thread":"Non seguire il thread","Watch this thread":"Segui il thread","Unpin this board":"Board non preferita","Pin this board":"Board preferita","Stop watching this board":"Non seguire la board","Watch this board":"Segui la board","Click on any image on this site to load it into oekaki applet":"Clicca su qualsiasi immagine sul sito per caricarla in Oeakaki","Sunday":"Domenica","Monday":"Luned\u00ec","Tuesday":"Marted\u00ec","Wednesday":"Mercoled\u00ec","Thursday":"Gioved\u00ec","Friday":"Venerd\u00ec","Saturday":"Sabato","January":"Gennaio","February":"Febbraio","March":"Marzo","April":"Aprile","May":"Maggio","June":"Giugno","July":"Luglio","August":"Agosto","September":"Settembre","October":"Ottobre","November":"Novembre","December":"Dicembre","Jan":"Gen","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Giu","Jul":"Lug","Aug":"Ago","Sep":"Set","Oct":"Ott","Nov":"Nov","Dec":"Dic","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Il tuo browser non supporta i video HTML5","[play once]":"[riproduci una sola volta]","[loop]":"[ciclo continuo]","WebM Settings":"Impostazioni WebM","Expand videos inline":"Espandi video","Play videos on hover":"Riproduci video evidenziato","Default volume":"Volume Standard","Tree view":"Vista ad albero","Shrink all images":"Restringi tutte le immagini","Animate GIFs":"Anima GIF","Unanimate GIFs":"Disattiva Animazioni GIF","WebM":"WebM","No new posts.":"Nessun nuovo post","No new threads.":"Nessun nuovo thread","There are {0} new threads.":"Ci sono {0} nuovi thread","There are {0} new posts in this thread.":"Ci sono {0} nuovi post in questo thread","Options":"Opzioni","General":"Generale","Storage: ":"Archiviazione:","Export":"Esporta","Import":"Importa","Paste your storage data":"Incolla le tue informazioni di archiviazione:","Erase":"Cancella","":"Fai un backup del tuo archivio, perch\u00e8 smanettarenqui potrebbe renderti il sito inutilizzabile","User CSS":"CSS utente","Update custom CSS":"Carica CSS personalizzato","Enter here your own CSS rules...":"Inserisci qui le tue regole CSS qui","You can include CSS files from remote servers, for example:":"Puoi includere file CSS da server remoto, per esempio:","User JS":"JS utente","Update custom Javascript":"Carica Javascript personalizzato","Enter here your own Javascript code...":"Inserisci il codice Javascript qui","You can include JS files from remote servers, for example:":"Puoi includere file Javascript da server remoto, per esempio:","Color IDs":"Colore ID","Update":"Aggiornamento"}; \ No newline at end of file diff --git a/inc/locale/it_IT/LC_MESSAGES/javascript.po b/inc/locale/it_IT/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..a3405997 --- /dev/null +++ b/inc/locale/it_IT/LC_MESSAGES/javascript.po @@ -0,0 +1,848 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# JavaFag , 2014 +# Lazy , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Stile" + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "File" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "Nascondi" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +msgstr "Mostra" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "Mostra Thread Bloccati" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "Nascondi Thread Bloccati" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Selezione" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "Remoto" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "Incluso" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "Nascosto" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "Mostra immagini" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Nascondi Immagini" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Password" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Elimina il solo file" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Elimina" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Motivazione" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Segnala" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Premi \"Rispondi\" per visualizzare." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Premi per estendere" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "Nascondi le risposte estese" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Dimensioni Pennelli" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "Imposta testo" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Svuota" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Salva" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Carica" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Abilita gomma" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Prendi colore" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Riempi" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Usare l'Oekaki invece del file?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Modifica come Oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Inserire del testo" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Selezionare un font o lasciare vuoto" + +#: ../../../../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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +msgid "Forced anonymity" +msgstr "Forza 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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +msgid "enabled" +msgstr "Abilitato" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "Disabilitato" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "Dom" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "Lun" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "Mar" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "Mer" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "Gio" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "Ven" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "Sab" + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Archivio" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Pubblica" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Risposta Rapida" + +#: ../../../../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 "Stai rispondendo a >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Indietro" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Espandi tutte le immagini" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Ciao!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} utenti" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +msgid "(hide threads from this board)" +msgstr "(nascondi thread da questa board)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(mostra thread da questa board)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "Nessun thread da mostrare" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +msgstr "Caricamento..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Salva con nome originale" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "(Post segnalato\\i)" + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "Errore sconosciuto" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "C'è stato un problema... Errore sconosciuto" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Lavorando..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Pubblicando... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Pubblicato..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Errore sconosciuto nel post" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Pubblicando..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Immagine sotto Spoiler" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "Commento" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +msgid "Quick Reply" +msgstr "Risposta Rapida" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Stop watching this thread" +msgstr "Non seguire il thread" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Watch this thread" +msgstr "Segui il thread" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Unpin this board" +msgstr "Board non preferita" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Pin this board" +msgstr "Board preferita" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Stop watching this board" +msgstr "Non seguire la board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "Segui la board" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Clicca su qualsiasi immagine sul sito per caricarla in Oeakaki" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Domenica" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Lunedì" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Martedì" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Mercoledì" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Giovedì" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "Venerdì" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Sabato" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "Gennaio" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "Febbraio" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "Marzo" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "Aprile" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "Maggio" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "Giugno" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "Luglio" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "Agosto" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "Settembre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "Ottobre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "Novembre" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "Dicembre" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "Gen" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "Apr" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "Giu" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "Lug" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "Ago" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "Set" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "Ott" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "Dic" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "Il tuo browser non supporta i video HTML5" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[riproduci una sola volta]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[ciclo continuo]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "Impostazioni WebM" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "Espandi video" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "Riproduci video evidenziato" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "Volume Standard" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "Vista ad albero" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "Restringi tutte le immagini" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "Anima GIF" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "Disattiva Animazioni GIF" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "Nessun nuovo post" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "Nessun nuovo thread" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "Ci sono {0} nuovi thread" + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "Ci sono {0} nuovi post in questo thread" + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "Opzioni" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "Generale" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "Archiviazione:" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "Esporta" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "Importa" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "Incolla le tue informazioni di archiviazione:" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "Cancella" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "Sicuro di voler eliminare il tuo archivio? Questo include i Thread nascosti, i Thread seguiti, le password dei post e molto altro." + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "CSS utente" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "Carica CSS personalizzato" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "Inserisci qui le tue regole CSS qui" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "Se vuoi creare uno stile ridistribuibile, \nseleziona un tema Yotsuba B" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "Puoi includere file CSS da server remoto, per esempio:" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "JS utente" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "Carica Javascript personalizzato" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "Inserisci il codice Javascript qui" + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "Fai un backup del tuo archivio, perchè smanettare\nqui potrebbe renderti il sito inutilizzabile" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "Puoi includere file Javascript da server remoto, per esempio:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "Colore ID" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "Aggiornamento" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/it_IT/LC_MESSAGES/tinyboard.mo b/inc/locale/it_IT/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..8dfc1e8d Binary files /dev/null and b/inc/locale/it_IT/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/it_IT/LC_MESSAGES/tinyboard.po b/inc/locale/it_IT/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..08cd2d65 --- /dev/null +++ b/inc/locale/it_IT/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3505 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Daniel Intrieri , 2014 +# GhiaccioCubo , 2014 +# JavaFag , 2014 +# Keker , 2014 +# Lazy , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/it_IT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it_IT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "Bannato!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "Precedente" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "Prossimo" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "Errore" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "C'è un errore" + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "Login" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "Post troppo lungo, premi qui per vedere tutto il testo." + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "Banna" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "Banna ed elimina" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "Elimina file" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "Sicuro di voler eliminare il file?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "Contrassegna come 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 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "Sicuro di voler contrassegnare il file come spoiler?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "Sposta su un'altra board" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "Modifica post" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "Elimina" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "Sicuro di volerlo eliminare?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "Elimina tutti i post di questo IP" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "Sicuro di voler eliminare tutti i post di questo IP" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "Elimina tutti i post di questo IP su tutta la board" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "Sicuro di voler eliminare tutti i post di questo IP su tutte le board?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "Togli il thread fissato" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "Fissa il thread" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "Permetti i bump nel thread" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "Impedisci i bump nel thread" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "Sblocca thread" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "Blocca thread" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +msgid "Move thread to another board" +msgstr "Sposta il thread su un'altra board" + +#. 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 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "Sei stato silenziato per contenuto non originale." + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "Nuovo Topic" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "Nuova Risposta" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "Tutti i marchi, diritti d'autore, commenti e immagini su questa pagina sono posseduti e di responsabilità delle rispettive parti." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Trattieniti ancora prima di inviare altri post." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "Sembri un bot." + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "Il browser ha inviato un referer HTTP non valido o assente." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "Il campo %s era troppo lungo." + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "Il corpo del testo era troppo lungo." + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "Il corpo del testo era troppo corto o vuoto." + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "Devi inviare una immagine." + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "Il server ha fallito a gestire l'invio." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "Formato dell'immagine non supportato." + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "Board non valida!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "Il thread indicato non esiste." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "Thread bloccato. Potresti non poter rispondere in questo momento." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "Il thread ha raggiunto il limite massimo di risposte." + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "Il thread ha raggiunto il limite massimo di immagini." + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "Non hai fatto un post." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "Flood individuato; Post scartato." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "La richiesta sembra automatica; Post scartato" + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "Contenuto non originale!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Contenuto non originale! Sei stato silenziato per %d secondi." + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "Sei silenziato. Scade in %d secondi." + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "Il tuo indirizzo IP è in lista in %s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "Troppi link; flood individuato." + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "Troppe citazioni; post scartato." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "Troppi link ad altre board; post scartato" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "Non hai selezionato nulla da eliminare." + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "Non hai selezionato nulla da segnalare." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "Non puoi segnalare troppo post in una volta." + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "Password sbagliata..." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "Immagine non valida." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "Estensione del file sconosciuta." + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "Dimensioni massime del file: %maxsz% byte
Il tuo file: %filesz% byte" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "Il file era troppo grande." + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "Quel file esiste già!" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "Quel file esiste già in questo thread!" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "Dovrai aspettare ancora %s prima di eliminarlo." + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "MIME type detection XSS exploit (IE) trovato; post scartato." + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "URL del video che hai incluso non trovato." + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "Sembra che tu abbia sbagliato il codice di verifica." + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "Sei autorizzato a rimuovere il ban da %s utenti per volta. Hai provato a rimuovere il ban da %u utenti." + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "Nome utente e/o password non valido." + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "Non sei un moderatore..." + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "Nome utente e/o password non valido. L'utente potrebbe essere stato eliminato o cambiato." + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "Cookie non validi." + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "Il browser non ha inviato un dato quando avrebbe dovuto." + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "Il campo %s è obbligatorio." + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "Il campo %s non era valido." + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "C'è già una %s board." + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "Non hai il permesso di farlo." + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "Quel post non esiste..." + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "Pagina non trovata." + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "Quel mod esiste già!" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "Quello stile non esiste!" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "Security token invalido! Torna indietro e riprova." + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "UTENTE BANNATO PER QUESTO POST" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "Conferma azione" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "Non riesco a trovare la versione corrente! (Controlla .installed)" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "Dashboard" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "Non ci sono board da cercare!" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "Cerca risultati." + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "Modifica board" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "Non puoi aprire la board dopo la creazione." + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "Nuova board" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "Bacheca" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "Notizie" + +#: ../../../../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 di moderazione" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +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 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "Nuovo ban" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "Lista ban" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "Sposta risposta" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "La board sorgente e destinazione sono la stessa." + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "Impossibile spostare il thread; c'è solo una board." + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "Sposta thread" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "Modifica utente" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "Gestione utenti" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "Nuovo PM per" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "Messaggio privato" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "Cartella PM" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "Ricostruisci" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "Coda dei report" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "Configurazione editor" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "Quella cartella non esiste!" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "Non puoi aprire la cartella degli stili; controlla i permessi." + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "Gestisci stili" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "Installa stile: %s" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "Configura stile: %s" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "Tema ricostruito: %s" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "Debug: Anti-spam" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "Debug: Post recenti" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "Debug: SQL" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "Errore database:" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "Bannato?" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "Non sei bannato." + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "Torna indietro" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "Informazione dell'errore" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "Elimina post" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "File" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "Password" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "Motivo" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "Segnala" + +#: ../../../../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 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "Torna alla dashboard" + +#. 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 "Modalità di posting: Risposta" + +#: ../../../../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 "Torna" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "(Nessuna notizia da mostrare)" + +#: ../../../../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 "nessun oggetto" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "da" + +#. 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 "a" + +#. 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 risposta" +msgstr[1] "%count% risposte" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "File:" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "Immagine sotto spoiler" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "Rispondi" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "Mostra tutto" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "Ultimo post" +msgstr[1] "Ultimi %count% post" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "1 post" +msgstr[1] "%count% post" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "e" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "Una risposta con immagine" +msgstr[1] "%count% risposte con immagini" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "omesso. Premi rispondi per mostrare." + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "Nome" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:44 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:88 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "Email" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "Oggetto" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "Aggiornamento" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "Commento" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "Stai modificando codice HTML." + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "Modificare invece il markup?" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "Modificare invece l'HTML?" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "Verifica" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "O URL" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "Incluso" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "Bandiere" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "Fissato" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "Blocco" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "Codice HTML" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "(Per rimozione del file)" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "Ricerca del post disabilitata." + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "Attendi un po' prima di ricercare nuovamente, per favore." + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "Query troppo lunga." + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "%d risultato in" +msgstr[1] "%d risultati in" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "Nessun risultato." + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "Cerca" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "Appello al ban non trovato!" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "Appelli al ban" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "Nuovo utente" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "Impossibile promuovere/degradare l'utente." + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "Debug: APC" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "Il codice contiene errori di sintassi PHP. Torna indietro e correggili. PHP dice:" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "Board" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "Modifica" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "Crea una nuova board" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "Messaggi" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "Mostra tutte notizie sulla noticeboard" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "Cambia password" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "Configurazione" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "Altro" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "Debug" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "Anti-spam" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "Post recenti" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "SQL" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "Account utente" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "Esci" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "Nuovo post" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "Corpo del testo" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "Pubblica sulla noticeboard" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "Elimina" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "Eliminato?" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "Pubblica una nuova voce" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "Staff" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "Note" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "Data" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "Azioni" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "Rimuovi" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "Nuova nota" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. 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 "Stato" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "Scaduto" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "Attivo" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "nessun motivo" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "Board" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "tutte le board" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "Imposta" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "Scaduti" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "mai" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "Visto" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "Sì" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "No" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "Rimuovi ban" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "Tempo" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "Azione" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "(oppure subnet)" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "Nascosto" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "Messaggio" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "pubblico, allegato al post" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "Lunghezza" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "Nuovo ban" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "Frase:" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "Post" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "Note del indirizzo IP" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "Ban" + +#. 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 "(La ricerca non è case-sensitive ed è basata sulle parole chiave. Per trovare l'esatta frase, usare \"Citazioni\". Usare un asterisco (*) per il wildcard.)" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "Non ci sono ban attivi." + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "Indirizzo/maschera IP" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "Durata" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "Rimuovi ban selezionato" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "Nome utente" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "Continua" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "Ora di appello" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "Motivo dell'appello" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "Non ci sono segnalazioni." + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "Quel ban non esiste o non è per te." + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "Non puoi appellarti a ban di questa lunghezza." + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "Non puoi più appellarti a questo ban." + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "C'è già una richiesta in attesa per questo ban." + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "Formato file non supportato:" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "Fallito a ridisegnare l'immagine!" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "Fallito a ridimensionare l'immagine!" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "Eri bannato! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "Sei bannato! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "Eri bannato da" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "Sei stato bannato da" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "per il seguente motivo:" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "senza un motivo specifico." + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "Il ban è stato archiviato il" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "prima di scadere. Ricarica la pagina per continuare." + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "scaduto" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "da ora, che permane da" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "non scadrà" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "Il tuo indirizzo IP è" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "Eri bannato per il seguente post su" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "Hai presentato ricorso per questo ban il" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "ed è ancora in attesa" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "Hai fatto ricorso per questo ban il" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "ed è stato negato. Non potrai appellarti nuovamente per questo ban." + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "Hai presentato il numero massimo di ricorsi per ban. Non potrai appellarti nuovamente." + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "ed è stato negato." + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "Potrai presentare ricorso per questo ban ancora. Prego inserire le motivazioni sottostante." + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "Il tuo ultimo ricorso per questo ban è al" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "Potrai presentare ricorso per questo ban ancora. Prego inserire le motivazioni sottostante." + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "Indirizzo 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 "Ultima azione" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "Sconosciuto " + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "nulla" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "Promuovi" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "Degrada" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "Sei sicuro di volerti degradare?" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "Registro" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "PM" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "ID thread" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "Abbandona Thread Ombra" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "blocca i thread; risponde con un link." + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "Board selezionata" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "Seleziona board" + +#. 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 "La ricerca non è case-sensitive ed è basata sulle parole chiave. Per trovare l'esatta frase, usare \"Citazioni\". Usare un asterisco (*) per il wildcard.

Puoi applicare i seguenti filtri per le tue ricerche: id, thread, soggetto, e nome. Per applicare un filtro, semplicemente aggiungilo alla ricerca, per esempio, nome:Anonymous o Soggetto:\"alcuni Thread\". Non è possibile usare i wildchard nei filtri." + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "Sicuro di volerlo fare?" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "Premi per proseguire 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 "Probabilmente stai guardando questo messaggio perché Javascript è disabilitato. è una misura di sicurezza al fine di prevenire attacchi CSRF." + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "Segnala data" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "Segnalato da" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "Ignora segnalazione " + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "Ignora tutte le segnalazioni da questo indirizzo IP" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "Da" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "Elimina sempre" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "Rispondi citando" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "Invia messaggio" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "Non ci sono stili disponibili." + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "Versione" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "Descrizione" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "Thumbnail" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "Usa stile" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "Riconfigura" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "Installa" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "Disinstalla" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "nuovo, opzionale" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "Gruppo" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "Tutte le board" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "Crea utente" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "Salva cambiamenti" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "Elimina utente" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "Guarda più registri di questo utente" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "Bandiera" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "Nulla" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "Sposta in %s" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "Non è possibile generare lo stile RecentPost perché non ci sono board da gestire." + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "Hai provato a inviare troppe immagini!" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "File che contiene Spoiler" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "Ordine per bump" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "Ultima risposta" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "Data di creazione" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "Conteggio risposte" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "Casuale" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "Ordina per" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "Dimensione immagine" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "Piccolo" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "Grande" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "ID post" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "Thread selezionato" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "La rimozione del post non è permessa!" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "Non è stato riconosciuto un metodo per determinare la dimensione del file." + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "Selezionata bandiera non valida!" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "ExifTool ha fallito nel operazione." + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "Non è stato possibile trovare il verso dell'immagine!" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "Non è stato possibile eliminare i metadata del file EXIF!" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "C'era un problema nel elaborare la tua webm." + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "Webm non valida inviata." + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "La webm inviata contiene audio o un altro tipo di stream." + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "La webm inviata è più punga di" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "Torna in cima" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "Non mostrare la mia bandiera" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "Molto piccolo" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "(nessun commento)" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/ja_JP/LC_MESSAGES/javascript.js b/inc/locale/ja_JP/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..b7040e60 --- /dev/null +++ b/inc/locale/ja_JP/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"\u30b9\u30bf\u30a4\u30eb","File":"\u30d5\u30a1\u30a4\u30eb","hide":"\u96a0\u3059","show":"\u8868\u73fe\u3059\u308b","URL":"URL","Select":"\u9078\u629e","Oekaki":"\u304a\u7d75\u63cf\u304d","Show images":"\u753b\u50cf\u3092\u8868\u73fe\u3059\u308b","Hide images":"\u753b\u50cf\u3092\u96a0\u3059","Password":"\u30d1\u30b9\u30ef\u30fc\u30c9","Delete file only":"\u30d5\u30a1\u30a4\u30eb\u3060\u3051\u6d88\u3059","Delete":"\u524a\u9664","Reason":"\u7406\u7531","Click reply to view.":"\u5168\u3066\u8aad\u3080\u306b\u306f\u8fd4\u4fe1\u30dc\u30bf\u30f3\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044\u3002","Brush size":"\u30d6\u30e9\u30b7\u5e45","Save":"\u30bb\u30fc\u30d6 ","Load":"\u30ed\u30fc\u30c9","Sun":"\u65e5","Mon":"\u6708","Tue":"\u706b","Wed":"\u6c34","Thu":"\u6728","Fri":"\u91d1","Sat":"\u571f","Catalog":"\u63b2\u793a\u677f\u4e00\u89a7","Submit":"\u66f8\u304d\u8fbc\u3080","Return":" \u63b2\u793a\u677f\u306b\u623b\u308b","Hello!":"\u3053\u3093\u306b\u3061\u306f\uff01","{0} users":"{0} \u30e6\u30fc\u30b6\u30fc","(hide threads from this board)":"(\u3053\u306e\u677f\u304b\u3089\u30b9\u30ec\u3092\u96a0\u3059)","(show threads from this board)":"(\u3053\u306e\u677f\u304b\u3089\u30b9\u30ec\u3092\u8868\u73fe\u3059\u308b)","Loading...":"\u8aad\u307f\u8fbc\u307f\u4e2d \u2026","Comment":"\u30b3\u30e1\u30f3\u30c8","Watch this thread":"\u3053\u306e\u30b9\u30ec\u30c3\u30c9\u3092\u898b\u5b88\u308b","Watch this board":"\u3053\u306e\u677f\u3092\u898b\u5b88\u308b","Sunday":"\u65e5\u66dc\u65e5","Monday":"\u6708\u66dc\u65e5","Tuesday":"\u706b\u66dc\u65e5","Wednesday":"\u6c34\u66dc\u65e5","Thursday":"\u6728\u66dc\u65e5","Friday":"\u91d1\u66dc\u65e5","Saturday":"\u571f\u66dc\u65e5","January":"\u4e00\u6708","February":"\u4e8c\u6708","March":"\u4e09\u6708","April":"\u56db\u6708","May":"\u4e94\u6708","June":"\u516d\u6708","July":"\u4e03\u6708","August":"\u516b\u6708","September":"\u4e5d\u6708","October":"\u5341\u6708","November":"\u5341\u4e00\u6708","December":"\u5341\u4e8c\u6708","Jan":"\u4e00\u6708","Feb":"\u4e8c\u6708","Mar":"\u4e09\u6708","Apr":"\u56db\u6708","Jun":"\u516d\u6708","Jul":"\u4e03\u6708","Aug":"\u516b\u6708","Sep":"\u4e5d\u6708","Oct":"\u5341\u6708","Nov":"\u5341\u4e00\u6708","Dec":"\u5341\u4e8c\u6708","AM":"\u5348\u524d","PM":"\u5348\u5f8c","am":"\u5348\u524d","pm":"\u5348\u5f8c","[play once]":"[\u4e00\u5ea6\u518d\u751f\u3059\u308b]","[loop]":"[\u30eb\u30fc\u30d7\u3059\u308b]","WebM Settings":"WebM \u8a2d\u5b9a","Animate GIFs":"GIFs\u3092\u52d5\u304f","Unanimate GIFs":"GIFs\u3092\u52d5\u304f\u306a\u3044","WebM":"WebM","No new posts.":"\u65b0\u30ec\u30b9\u304c\u3042\u308a\u307e\u305b\u3093\u3002","No new threads.":"\u65b0\u30b9\u30ec\u30c3\u30c9\u304c\u3042\u308a\u307e\u305b\u3093\u3002","There are {0} new threads.":"{0}\u65b0\u30b9\u30ec\u30c3\u30c9\u304c\u3042\u308a\u307e\u3059\u3002","There are {0} new posts in this thread.":"\u3053\u306e\u30b9\u30ec\u30c3\u30c9\u306b{0} \u65b0\u30ec\u30b9\u304c\u3042\u308a\u307e\u3059\u3002"}; \ No newline at end of file diff --git a/inc/locale/ja_JP/LC_MESSAGES/javascript.po b/inc/locale/ja_JP/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..47949749 --- /dev/null +++ b/inc/locale/ja_JP/LC_MESSAGES/javascript.po @@ -0,0 +1,848 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# anon, 2014 +# よるさん , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "スタイル" + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "ファイル" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "隠す" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "選択" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "お絵描き" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "画像を表現する" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +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:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "削除" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "理由" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "全て読むには返信ボタンを押してください。" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +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/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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "日" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "月" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "火" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "水" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "木" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "金" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "掲示板一覧" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "書き込む" + +#: ../../../../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: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:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr " 掲示板に戻る" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "こんにちは!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} ユーザー" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +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 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(この板からスレを表現する)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +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 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "コメント" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "この板を見守る" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "日曜日" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "月曜日" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "火曜日" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "水曜日" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "木曜日" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "金曜日" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "土曜日" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "一月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "二月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "三月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "四月" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "五月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "六月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "七月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "八月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "九月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "十月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "十一月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "十二月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "一月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "二月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "三月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "四月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "六月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "七月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "八月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "九月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "十月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "十一月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "十二月" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "午前" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "午後" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "午前" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "午後" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[一度再生する]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[ループする]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "WebM 設定" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "GIFsを動く" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "GIFsを動くない" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "新レスがありません。" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "新スレッドがありません。" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "{0}新スレッドがあります。" + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "このスレッドに{0} 新レスがあります。" + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "" + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/ja_JP/LC_MESSAGES/tinyboard.mo b/inc/locale/ja_JP/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..6b329ba2 Binary files /dev/null and b/inc/locale/ja_JP/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/ja_JP/LC_MESSAGES/tinyboard.po b/inc/locale/ja_JP/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..e116335c --- /dev/null +++ b/inc/locale/ja_JP/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3492 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# anon, 2014 +# よるさん , 2014 +# scott , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Japanese (Japan) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ja_JP/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja_JP\n" +"Plural-Forms: nplurals=1; plural=0;\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "秒" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "分" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "時間" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "日" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "週間" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "年/年間" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "アク禁!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "前" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "次" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "エラー" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "エラーが発生しました。" + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "ログイン" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "" + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "ファイルを削除する" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "このファイルを本当に削除しますか?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "返信の編集" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "削除" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "本当に削除しますか?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +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:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "" + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "スレッドを立てる" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "返信する" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "" + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "" + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "" + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "画像ファイル以外は受け付けません。" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "スレッド が無いよ。" + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "" + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "" + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "" + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "" + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "" + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "パスワードが正しくありません。。" + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "" + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "" + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "" + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "" + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "" + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "停止しました" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "検索件" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "板を変更" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "新板" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "ニュース" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +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 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "BAN一覧" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "ダイレクトメッセージ" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "停止しました?" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "" + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "戻る" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "エラー情報" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "記事削除" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "ファイル" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "パスワード" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "理由" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "報告する" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "ダッシュボードに戻る" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "書き込むモード:レス" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "戻る" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "(まだニュースはありません。)" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "ファイル:" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "返信する" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "全部見る" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "最新 %count% レス" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "%count% レス" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "%count% 画像レス" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "省略。全て読むには返信ボタンを押してください。" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "おなまえ" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "E-mail" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "題名" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "リロード" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "コメント" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "見つかりません。 " + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "検索" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "板" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "編集" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "新板を立てる" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "メッセージ" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "パスワードを変更" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "他" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "最近レス" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "ログアウト" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "新レス" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "削除" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "スタッフ" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "ノート" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "年月日" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "新ノート" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "板" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "全部板" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "設定する" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "はい" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "いいえ" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "時間" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "メセージ" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "レス" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "ユーザー名" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "続く" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "対応しないフォーマットです。" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "停止しました!;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "停止します!;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "から停止しました" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "から停止しました" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "以下の理由で" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "ID" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "スレID" + +#. 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 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "本当にそれをしたいですか?" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "サムネ" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "小さい" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "大き" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "レスID" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "板のトップ" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "フラッグを見せない" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "とっても小さい" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/jbo/LC_MESSAGES/javascript.po b/inc/locale/jbo/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..512cd097 --- /dev/null +++ b/inc/locale/jbo/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Vladislav Višnevskij Petersen , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Lojban (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/jbo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jbo\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "lo se viska:" + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "sfaile" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "mipri" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +msgstr "jarco" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "jarco lo stela cilta" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "mipri lo stela cilta" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "urli" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "plicu'a" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "derse'a" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "zo'oi oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "mipri" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "jarco lo pixra" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "mipri lo pixra" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "curmi lerpoi" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "vimcu sfaile po'o" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "vimcu" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "krinu" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "ternoi" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "lonu iklki lu danfu li'u cu rinka lonu jarco" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "lonu iklki cu rinka lonu banro" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "mipri lo banro danfu" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "burcu nilbra" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "snigau lo se tcidu" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "rejgau" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "vreji cpacu" + +#: ../../../../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/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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "" + +#: ../../../../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: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:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all 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 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +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 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +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 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "" + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "" + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "" + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/jbo/LC_MESSAGES/tinyboard.po b/inc/locale/jbo/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..ad4c7f7e --- /dev/null +++ b/inc/locale/jbo/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3500 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Lojban (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/jbo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: jbo\n" +"Plural-Forms: nplurals=1; plural=0;\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "" + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "" + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +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:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "" + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "" + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "" + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "" + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "" + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "" + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "" + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "" + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "" + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "" + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "" + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "" + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "" + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "" + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "" + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "" + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +msgid "IP" +msgstr "" + +#. line 171 +#: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367 +#: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "" + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "" + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/lt_LT/LC_MESSAGES/javascript.po b/inc/locale/lt_LT/LC_MESSAGES/javascript.po index 040c1364..79dbe95e 100644 --- a/inc/locale/lt_LT/LC_MESSAGES/javascript.po +++ b/inc/locale/lt_LT/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgid "Delete" msgstr "Ištrinti" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Priežastis" @@ -214,43 +214,45 @@ msgid "disabled" msgstr "išjungta" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Sk" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Pr" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "An" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Tr" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Kt" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Pn" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" 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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalogas" @@ -318,6 +320,7 @@ msgstr "Daugiau temų nėra" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Kraunasi..." @@ -434,139 +437,140 @@ msgstr "Sekti šią lentą" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Spausk ant bet kurio šiame puslapyje esančio paveikslėlio, kad atvertum jį su oekaki programėle" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Sekmadienis" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Pirmadienis" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Antradienis" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Trečiadienis" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Ketvirtadienis" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Penktadienis" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Šeštadienis" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Sausis" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Vasaris" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Kovas" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Balandis" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Gegužė" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Birželis" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Liepa" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Rugpjūtis" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Rugsėjis" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Spalis" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Lapkritis" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Gruodis" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Sau" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Vas" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Kov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Bal" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Bir" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Lie" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Rgp" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Rgs" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Spa" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Lap" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Gru" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -605,16 +609,19 @@ msgid "Tree view" msgstr "Medžio peržiūra" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "" @@ -717,3 +724,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo index 0a5035c7..9857e29a 100644 Binary files a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo 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 index c0a0a42e..abc6fd6f 100644 --- a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po +++ b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,14 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "sekundė" msgstr[1] "sekundės" msgstr[2] "sekundžių" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -42,12 +44,14 @@ msgstr[2] "sekundžių" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minutė" msgstr[1] "minutės" msgstr[2] "minučių" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -57,12 +61,14 @@ msgstr[2] "minučių" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "valanda" msgstr[1] "valandos" msgstr[2] "valandų" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -72,12 +78,14 @@ msgstr[2] "valandų" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "diena" msgstr[1] "dienos" msgstr[2] "dienų" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -87,6 +95,7 @@ msgstr[2] "dienų" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "savaitė" @@ -102,6 +111,7 @@ msgstr[2] "savaičių" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "metai" @@ -112,7 +122,7 @@ msgstr[2] "metų" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Užblokuotas!" @@ -126,6 +136,7 @@ msgstr "Užblokuotas!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Atgal" @@ -139,7 +150,8 @@ msgstr "Atgal" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Pirmyn" @@ -230,7 +242,8 @@ msgstr "Perkelti atsakymą į kitą lentą" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Modifikuoti komentarą" @@ -327,6 +340,7 @@ msgstr "Perkelti temą į kitą lentą" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Buvai pritildytas, nes skelbi neoriginalų turinį." @@ -338,6 +352,7 @@ msgstr "Buvai pritildytas, nes skelbi neoriginalų turinį." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nauja tema" @@ -345,6 +360,7 @@ msgstr "Nauja tema" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Atsakyti" @@ -353,6 +369,7 @@ msgstr "Atsakyti" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -378,6 +395,7 @@ msgstr "Panaršyk ilgiau prieš rašydamas." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Tu atrodai kaip botas." @@ -385,6 +403,7 @@ msgstr "Tu atrodai kaip botas." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Tavo naršyklė nusiuntė netinkama arba nėra HTTP referer." @@ -392,6 +411,7 @@ msgstr "Tavo naršyklė nusiuntė netinkama arba nėra HTTP referer." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "Laukas %s buvo per ilgas." @@ -400,6 +420,7 @@ msgstr "Laukas %s buvo per ilgas." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Kūnas buvo per ilgas." @@ -407,6 +428,7 @@ msgstr "Kūnas buvo per ilgas." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Kūnas buvo per trumpas arba tuščias." @@ -414,6 +436,7 @@ msgstr "Kūnas buvo per trumpas arba tuščias." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Tu privalai įkelti paveiksliuką." @@ -421,6 +444,7 @@ msgstr "Tu privalai įkelti paveiksliuką." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Serveriui nepavyko apdoroti tavo įkėlimo." @@ -428,6 +452,7 @@ msgstr "Serveriui nepavyko apdoroti tavo įkėlimo." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Nepalaikomas paveiksliuko formatas." @@ -435,6 +460,7 @@ msgstr "Nepalaikomas paveiksliuko formatas." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Neteisinga lenta!" @@ -442,6 +468,7 @@ msgstr "Neteisinga lenta!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Nurodyta diskusija neegzistuoja." @@ -449,6 +476,7 @@ msgstr "Nurodyta diskusija neegzistuoja." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Diskusija užrakinta. Šiuo metu negali parašyti atsiliepimo." @@ -456,6 +484,7 @@ msgstr "Diskusija užrakinta. Šiuo metu negali parašyti atsiliepimo." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Tema pasiekė atsakymų limitą." @@ -463,6 +492,7 @@ msgstr "Tema pasiekė atsakymų limitą." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Tema pasiekė paveikslėlių limitą." @@ -470,6 +500,7 @@ msgstr "Tema pasiekė paveikslėlių limitą." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Tu nesukūrei komentaro." @@ -477,6 +508,7 @@ msgstr "Tu nesukūrei komentaro." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Perpildymas aptiktas; komentaras išmestas." @@ -484,6 +516,7 @@ msgstr "Perpildymas aptiktas; komentaras išmestas." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Tavo užklausa atrodo automatizuota; komentaras išmestas." @@ -491,6 +524,7 @@ msgstr "Tavo užklausa atrodo automatizuota; komentaras išmestas." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Neoriginalus turinys!" @@ -498,6 +532,7 @@ msgstr "Neoriginalus turinys!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Neoriginalus turinys! Tu buvai užtildytas %d sekundėms." @@ -506,6 +541,7 @@ msgstr "Neoriginalus turinys! Tu buvai užtildytas %d sekundėms." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Tu esi užtildytas! Užtildymas pasibaigs po %d sekundžių." @@ -514,6 +550,7 @@ msgstr "Tu esi užtildytas! Užtildymas pasibaigs po %d sekundžių." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Tavo IP adresas yra įtrauktas į %s." @@ -522,6 +559,7 @@ msgstr "Tavo IP adresas yra įtrauktas į %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Per daug nuorodų; aptiktas perpildimas." @@ -529,6 +567,7 @@ msgstr "Per daug nuorodų; aptiktas perpildimas." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Per daug citatų; komentaras išmestas." @@ -536,6 +575,7 @@ msgstr "Per daug citatų; komentaras išmestas." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Per daug tarplentinių nuorodų; komentaras išmestas." @@ -543,6 +583,7 @@ msgstr "Per daug tarplentinių nuorodų; komentaras išmestas." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Tu nepasirinkai nieko, ką ištrinti." @@ -550,6 +591,7 @@ msgstr "Tu nepasirinkai nieko, ką ištrinti." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Tu nepasirinkai nieko, ką pranešti." @@ -557,6 +599,7 @@ msgstr "Tu nepasirinkai nieko, ką pranešti." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Tu negali pranešti tiek komentarų iškart." @@ -564,6 +607,7 @@ msgstr "Tu negali pranešti tiek komentarų iškart." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Neteisingas slaptažodis..." @@ -571,6 +615,7 @@ msgstr "Neteisingas slaptažodis..." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Neteisingas paveiksliukas." @@ -578,6 +623,7 @@ msgstr "Neteisingas paveiksliukas." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Nežinoma failo plėtinys." @@ -585,6 +631,7 @@ msgstr "Nežinoma failo plėtinys." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maksimalus failo didys: %maxsz% baitai
Tavo failo didys: %filesz% baitai" @@ -592,6 +639,7 @@ msgstr "Maksimalus failo didys: %maxsz% baitai
Tavo failo didys: %filesz% bai #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Failas buvo per didelis." @@ -599,6 +647,7 @@ msgstr "Failas buvo per didelis." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Tas failas jau egzistuoja!" @@ -607,6 +656,7 @@ msgstr "Tas failas jau egzistuoja!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Tas failas jau egzistuoja šioje diskusijoje!" @@ -615,6 +665,7 @@ msgstr "Tas failas jau egzistuoja šioje diskusijoje!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Tu turėsi palaukti dar %s prieš ištrindamas šitai." @@ -623,6 +674,7 @@ msgstr "Tu turėsi palaukti dar %s prieš ištrindamas šitai." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "MIME tipo detekcija XSS eksploitas (IE) aptiktas; komentaras išmestas." @@ -630,6 +682,7 @@ msgstr "MIME tipo detekcija XSS eksploitas (IE) aptiktas; komentaras išmestas." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "Tavo video URL, kurį bandei patalpinti, buvo nesuprastas." @@ -637,6 +690,7 @@ msgstr "Tavo video URL, kurį bandei patalpinti, buvo nesuprastas." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Atrodo tu įvedei neteisingą patvirtinimą." @@ -645,6 +699,7 @@ msgstr "Atrodo tu įvedei neteisingą patvirtinimą." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -655,6 +710,7 @@ msgstr "Vienu metu galima atblokuoti iki %s vartotojų. Tu bandei atblokuoti %u #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Neteisingas slapyvardis ir/ar slaptažodis." @@ -662,6 +718,7 @@ msgstr "Neteisingas slapyvardis ir/ar slaptažodis." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Tu nesi moderatorius..." @@ -669,6 +726,7 @@ msgstr "Tu nesi moderatorius..." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -678,6 +736,7 @@ msgstr "Neteisingas slapyvardis ir/ar slaptažodis. Tavo vartotojas buvo ištrin #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Neteisingi/netaip suformuoti slapukai." @@ -685,6 +744,7 @@ msgstr "Neteisingi/netaip suformuoti slapukai." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Tavo naršyklė nepateikė įvesties, kai turėjo." @@ -692,6 +752,7 @@ msgstr "Tavo naršyklė nepateikė įvesties, kai turėjo." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Laukas %s reikalingas." @@ -700,6 +761,7 @@ msgstr "Laukas %s reikalingas." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Laukas %s buvo neteisingas." @@ -708,6 +770,7 @@ msgstr "Laukas %s buvo neteisingas." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Jau egzistuoja %s lenta." @@ -716,6 +779,7 @@ msgstr "Jau egzistuoja %s lenta." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Tu neturi teisių tai padaryti." @@ -723,6 +787,7 @@ msgstr "Tu neturi teisių tai padaryti." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Tas komentaras neegzistuoja..." @@ -730,6 +795,7 @@ msgstr "Tas komentaras neegzistuoja..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Nerastas puslapis." @@ -737,6 +803,7 @@ msgstr "Nerastas puslapis." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Tas moderatorius jau egzistuoja!" @@ -745,6 +812,7 @@ msgstr "Tas moderatorius jau egzistuoja!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Ta tema neegzistuoja!" @@ -752,6 +820,7 @@ msgstr "Ta tema neegzistuoja!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl." @@ -765,6 +834,7 @@ msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl." #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "ŠIOS ŽINUTĖS AUTORIUS BUVO UŽBLOKUOTAS" @@ -851,10 +921,14 @@ msgstr "Moderacijos žurnalas" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -863,11 +937,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Blokuoti naują IP" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Užblokuotųjų sąrašas" @@ -875,17 +953,20 @@ msgstr "Užblokuotųjų sąrašas" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Perkelti atsakymą" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Nurodyta ir šaltinio lenta yra ta pati." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Neįmanoma perkelti diskusijos; yra tik vieną lenta." @@ -893,18 +974,20 @@ msgstr "Neįmanoma perkelti diskusijos; yra tik vieną lenta." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Perkelti diskusiją" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Modifikuoti naudotoją" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Administruoti naudotojus" @@ -913,11 +996,13 @@ msgstr "Administruoti naudotojus" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Naujas privatus pranešimas" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Privatus pranešimas" @@ -925,6 +1010,7 @@ msgstr "Privatus pranešimas" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Privačių pranešimų dežutė" @@ -935,12 +1021,14 @@ msgstr "Privačių pranešimų dežutė" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Perkompiliuoti" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Pranešimų eilė" @@ -948,55 +1036,66 @@ msgstr "Pranešimų eilė" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Konfiguracijos redagavimas" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Temų katalogas neegzistuoja!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Neįmanoma atidaryti temų katalogo; peržvelkite leidimus." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Administruoti temas" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Įrašyta tema: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Konfiguruojama tema: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Perkompiliuota tema: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Derinimas: Prieš-spam'ą" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Derinimas: Neseni komentarai" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Derinimas: SQL" @@ -1064,6 +1163,10 @@ msgstr "Ištrinti įrašą" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1098,6 +1201,8 @@ msgstr "Failas" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1177,6 +1282,12 @@ msgstr "Slaptažodis" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1249,6 +1360,8 @@ msgstr "Jokio subjekto" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "sukūrta" @@ -1300,6 +1413,7 @@ msgstr "Paveiksliukas, galintis atskleisti svarbias detales" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Atsiliepimas" @@ -1311,6 +1425,7 @@ msgstr "Atsiliepimas" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Rodyti viską" @@ -1322,6 +1437,7 @@ msgstr "Rodyti viską" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Paskutinis įrašas" @@ -1336,6 +1452,7 @@ msgstr[2] "%count% paskutinių įrašų" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 žinutė" @@ -1351,6 +1468,8 @@ msgstr[2] "%count% žinučių" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "ir" @@ -1362,6 +1481,7 @@ msgstr "ir" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 žinutė su paveikslėliu" @@ -1376,6 +1496,7 @@ msgstr[2] "%count% žinučių su paveikslėliais" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "nerodoma. Norėdamas peržiūrėti spausk „Atsakyti“." @@ -1404,6 +1525,9 @@ msgstr "nerodoma. Norėdamas peržiūrėti spausk „Atsakyti“." #. line 7 #. 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 @@ -1427,6 +1551,8 @@ msgstr "Vardas" #. 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 @@ -1461,6 +1587,9 @@ msgstr "Email" #. line 23 #. line 12 #. 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 @@ -1489,6 +1618,8 @@ msgstr "Atnaujinti" #. 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 @@ -1580,6 +1711,10 @@ msgstr "Vėliavos" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1624,6 +1759,10 @@ msgstr "Lipnu" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1668,6 +1807,10 @@ msgstr "Užrakinta" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1767,6 +1910,12 @@ msgstr "Rezultatų nerasta." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1775,38 +1924,43 @@ msgstr "Rezultatų nerasta." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Ieškoti" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Apeliacija nerasta!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Užblokuotųjų apeliacijos" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Naujas vartotojas" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Neįmanoma paaukštinti ar pažeminti vartotojo." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Derinimas: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1825,6 +1979,9 @@ msgstr "Tavo kode buvo PHP sintaksės klaidų. Grįžk ir ištaisyk jas. PHP sak #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1890,7 +2047,8 @@ msgstr "Anti-spamas" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Neseni pranešimai" @@ -2035,6 +2193,15 @@ msgstr "Patalpinti naujienų įvęstį" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2074,6 +2241,9 @@ msgstr "Administracija" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2093,6 +2263,8 @@ msgstr "Pastaba" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2135,6 +2307,8 @@ msgstr "Nauja pastaba" #. 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" @@ -2229,6 +2403,15 @@ msgstr "jokios priežasties" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2284,6 +2467,9 @@ msgstr "visos lentos" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2322,6 +2508,9 @@ msgstr "Nustatyti" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2368,6 +2557,9 @@ msgstr "niekada" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2412,6 +2604,10 @@ msgstr "Atblokuoti" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2451,6 +2647,11 @@ msgstr "Laikas" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2512,6 +2713,8 @@ msgstr "Naujas draudimas" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2568,6 +2771,7 @@ msgstr "Trukmė" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Atblokuoti pažymėtus" @@ -2585,6 +2789,9 @@ msgstr "Atblokuoti pažymėtus" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2640,7 +2847,7 @@ msgstr "Nepavyko perpiešti paveikslėlio!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Nepavyko pakeisti paveikslėlio dydžio!" @@ -2674,41 +2881,54 @@ msgid "Your ban was filed on" msgstr "Buvai užblokuotas" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "nuo tada baigėsi. Norėdamas tęsti perkrauk puslapį." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "baigiasi" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "nuo dabar, kas yra" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "nesibaigs" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Tavo IP adresas yra" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Buvai užblokuotas dėl šios žinutės" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Dėl šio blokavimo peteikei apeliaciją" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Vis dar laukiama svarstymo" @@ -2730,21 +2950,28 @@ msgstr "Vis dar laukiama svarstymo" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Pateikei apeliaciją" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "ir ji buvo atmesta. Daugiau apeliuoti šio blokavimo nebegali." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2768,10 +2995,14 @@ msgstr "Pateikei didžiausią leidžiamą apeliacijų skaičių. Daugiau jų tei #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "ir ji buvo atmesta." @@ -2793,21 +3024,28 @@ msgstr "ir ji buvo atmesta." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Gali dar kartą pateikti apeliaciją dėl šio užblokavimo. Viską išdėstyk žemiau esančiame laukelyje." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Paskutinį kartą teikei apeliaciją" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Gali pateikti apeliaciją dėl užblokavimo. Viską išdėstyk žemiau esančiame laukelyje." @@ -2826,6 +3064,10 @@ msgstr "Gali pateikti apeliaciją dėl užblokavimo. Viską išdėstyk žemiau e #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2894,6 +3136,8 @@ msgstr "užrakina temą; atsako į ją su nuoroda." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3053,7 +3297,8 @@ msgstr "Nieko" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Perkelta į %s." @@ -3065,6 +3310,7 @@ msgid "" msgstr "Negalima sukurti RecentPosts išvaizdos temos, nes nėra lentų." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3079,6 +3325,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3101,6 +3351,10 @@ msgstr "Paskutinis atsakymas" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3114,6 +3368,10 @@ msgstr "Sukūrimo data" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3127,6 +3385,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3196,20 +3458,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3226,3 +3494,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/lv_LV/LC_MESSAGES/javascript.po b/inc/locale/lv_LV/LC_MESSAGES/javascript.po index 26a46c29..7afdfa98 100644 --- a/inc/locale/lv_LV/LC_MESSAGES/javascript.po +++ b/inc/locale/lv_LV/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Latvian (Latvia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lv_LV/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgid "Delete" msgstr "Dzēst" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Iemesls" @@ -214,43 +214,45 @@ msgid "disabled" msgstr "izslēgts" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "SV" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "PR" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "OT" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "TR" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "CE" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "PK" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "SE" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalogs" @@ -318,6 +320,7 @@ msgstr "Nav vairāk rādāmu pavedienu" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Ielāde..." @@ -434,139 +437,140 @@ msgstr "Uzraudzīt šo dēli" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Uzklikšķiniet uz jebkura attēla, lai ielādētu to oekaki sīklietnotnē" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Svētdiena" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Pirmdiena" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Otrdiena" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Trešdiena" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Ceturtdiena" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Piektdiena" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Sestdiena" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Janvāris" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Februāris" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Marts" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Aprīlis" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Maijs" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Jūnijs" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "ūlijs" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Augusts" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Septembris" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Oktobris" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Novembris" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Decembris" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Feb" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Apr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Aug" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Sep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Okt" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dec" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -605,16 +609,19 @@ msgid "Tree view" msgstr "Koka skatījums" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "" @@ -717,3 +724,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/lv_LV/LC_MESSAGES/tinyboard.mo b/inc/locale/lv_LV/LC_MESSAGES/tinyboard.mo index 959b504d..59f4bdea 100644 Binary files a/inc/locale/lv_LV/LC_MESSAGES/tinyboard.mo and b/inc/locale/lv_LV/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/lv_LV/LC_MESSAGES/tinyboard.po b/inc/locale/lv_LV/LC_MESSAGES/tinyboard.po index b3e04331..fc4c272f 100644 --- a/inc/locale/lv_LV/LC_MESSAGES/tinyboard.po +++ b/inc/locale/lv_LV/LC_MESSAGES/tinyboard.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Latvian (Latvia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lv_LV/)\n" "MIME-Version: 1.0\n" @@ -28,12 +28,14 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "sekundes" msgstr[1] "sekunde" msgstr[2] "sekundes" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -43,12 +45,14 @@ msgstr[2] "sekundes" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minūtes" msgstr[1] "minūte" msgstr[2] "minūtes" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -58,12 +62,14 @@ msgstr[2] "minūtes" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "stundas" msgstr[1] "stunda" msgstr[2] "stundas" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -73,12 +79,14 @@ msgstr[2] "stundas" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "dienas" msgstr[1] "diena" msgstr[2] "dienas" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -88,6 +96,7 @@ msgstr[2] "dienas" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "nedēļas" @@ -103,6 +112,7 @@ msgstr[2] "nedēļas" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "gadi" @@ -113,7 +123,7 @@ msgstr[2] "gadi" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Banots!" @@ -127,6 +137,7 @@ msgstr "Banots!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Iepriekšējais" @@ -140,7 +151,8 @@ msgstr "Iepriekšējais" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Nākamais" @@ -231,7 +243,8 @@ msgstr "Pārvietot atbildi uz citu dēli" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Rediģēt ierakstu" @@ -328,6 +341,7 @@ msgstr "Pārvietot pavedienu un citu dēli" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Jūs tiekat apklusināts dēļ neorģināla satura." @@ -339,6 +353,7 @@ msgstr "Jūs tiekat apklusināts dēļ neorģināla satura." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Jauna tēma" @@ -346,6 +361,7 @@ msgstr "Jauna tēma" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Jauna atbilde" @@ -354,6 +370,7 @@ msgstr "Jauna atbilde" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -379,6 +396,7 @@ msgstr "Glūni vairāk pirms raksti." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Izskatās, ka esi bots." @@ -386,6 +404,7 @@ msgstr "Izskatās, ka esi bots." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Nekorekts vai trūkstošs HTTP referer." @@ -393,6 +412,7 @@ msgstr "Nekorekts vai trūkstošs HTTP referer." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "%s lauks ir par lielu." @@ -401,6 +421,7 @@ msgstr "%s lauks ir par lielu." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Saturs ir par lielu." @@ -408,6 +429,7 @@ msgstr "Saturs ir par lielu." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Saturs pārāk īss vai tukšs." @@ -415,6 +437,7 @@ msgstr "Saturs pārāk īss vai tukšs." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Jums jāaugšupielādē bilde." @@ -422,6 +445,7 @@ msgstr "Jums jāaugšupielādē bilde." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Serveris nespēja saņemt bildi." @@ -429,6 +453,7 @@ msgstr "Serveris nespēja saņemt bildi." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Neatbalstīts bilžu formāts." @@ -436,6 +461,7 @@ msgstr "Neatbalstīts bilžu formāts." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Nekorekts dēlis!" @@ -443,6 +469,7 @@ msgstr "Nekorekts dēlis!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Norādītais pavediens neeksistē." @@ -450,6 +477,7 @@ msgstr "Norādītais pavediens neeksistē." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Pavediens slēgts, nevar pievienot atbildes." @@ -457,6 +485,7 @@ msgstr "Pavediens slēgts, nevar pievienot atbildes." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Pavediens sasniedzis maksimālo atbilžu skaitu." @@ -464,6 +493,7 @@ msgstr "Pavediens sasniedzis maksimālo atbilžu skaitu." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Pavadiens sasniedzis maksimālo attēlu skaitu." @@ -471,6 +501,7 @@ msgstr "Pavadiens sasniedzis maksimālo attēlu skaitu." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Jūs neizveidojāt ierakstu." @@ -478,6 +509,7 @@ msgstr "Jūs neizveidojāt ierakstu." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Plūdi. Ieraksts ignorēts." @@ -485,6 +517,7 @@ msgstr "Plūdi. Ieraksts ignorēts." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Automatizēts pieprasījums. Ieraksts ignorēts." @@ -492,6 +525,7 @@ msgstr "Automatizēts pieprasījums. Ieraksts ignorēts." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Neorģināls saturs!" @@ -499,6 +533,7 @@ msgstr "Neorģināls saturs!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Neoriģināls saturs! Jūs tiekat noklusināts uz %d sekundēm." @@ -507,6 +542,7 @@ msgstr "Neoriģināls saturs! Jūs tiekat noklusināts uz %d sekundēm." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Jūs esat noklusināts uz vēl %d sekundēm." @@ -515,6 +551,7 @@ msgstr "Jūs esat noklusināts uz vēl %d sekundēm." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Jūsu IP adrese tiek ierindota %s." @@ -523,6 +560,7 @@ msgstr "Jūsu IP adrese tiek ierindota %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Pārāk daudz saišu; Konstatēti plūdi." @@ -530,6 +568,7 @@ msgstr "Pārāk daudz saišu; Konstatēti plūdi." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Pārāk daudz citējumu; Ieraksts ignorēts." @@ -537,6 +576,7 @@ msgstr "Pārāk daudz citējumu; Ieraksts ignorēts." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Pārāk daudz šķērs-dēļu saišu. Ieraksts ignorēts." @@ -544,6 +584,7 @@ msgstr "Pārāk daudz šķērs-dēļu saišu. Ieraksts ignorēts." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Jūs neivēlējāties neko, ko dzēst." @@ -551,6 +592,7 @@ msgstr "Jūs neivēlējāties neko, ko dzēst." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Jūs neizvēlējāties neko, ko ziņot." @@ -558,6 +600,7 @@ msgstr "Jūs neizvēlējāties neko, ko ziņot." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Jūs nevarat ziņot par tik daudz ierakstiem uzreiz." @@ -565,6 +608,7 @@ msgstr "Jūs nevarat ziņot par tik daudz ierakstiem uzreiz." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Nekorekta parole..." @@ -572,6 +616,7 @@ msgstr "Nekorekta parole..." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Nekorektas bilde." @@ -579,6 +624,7 @@ msgstr "Nekorektas bilde." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Neatpazīts faila paplašinājums." @@ -586,6 +632,7 @@ msgstr "Neatpazīts faila paplašinājums." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maksimālais faila izmērs: %maxsz% baitu
Jūsu faila izmērs: %filesz% baitu" @@ -593,6 +640,7 @@ msgstr "Maksimālais faila izmērs: %maxsz% baitu
Jūsu faila izmērs: %files #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Fails ir pārāk liels." @@ -600,6 +648,7 @@ msgstr "Fails ir pārāk liels." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Fails jau eksistē!" @@ -608,6 +657,7 @@ msgstr "Fails jau eksistē!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Fails jau eksistē šajā pavedienā!" @@ -616,6 +666,7 @@ msgstr "Fails jau eksistē šajā pavedienā!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Jums jāuzgaida vēl %s pirms dzēšanas." @@ -624,6 +675,7 @@ msgstr "Jums jāuzgaida vēl %s pirms dzēšanas." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "" @@ -631,6 +683,7 @@ msgstr "" #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "" @@ -638,6 +691,7 @@ msgstr "" #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Izskatās ka jūs esat nepareizi ierakstijuši pārbaudi," @@ -646,6 +700,7 @@ msgstr "Izskatās ka jūs esat nepareizi ierakstijuši pārbaudi," #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -656,6 +711,7 @@ msgstr "" #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Nepareizs lietotājvārds un/vai parole." @@ -663,6 +719,7 @@ msgstr "Nepareizs lietotājvārds un/vai parole." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Jūs nēsat moderātors....." @@ -670,6 +727,7 @@ msgstr "Jūs nēsat moderātors....." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -679,6 +737,7 @@ msgstr "Nepareizs lietotājvārds un/vai parole. Jūsu lietotājs varētu būt i #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Nepareizi/izkropļoti cepumi." @@ -686,6 +745,7 @@ msgstr "Nepareizi/izkropļoti cepumi." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "" @@ -693,6 +753,7 @@ msgstr "" #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "" @@ -701,6 +762,7 @@ msgstr "" #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "" @@ -709,6 +771,7 @@ msgstr "" #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "" @@ -717,6 +780,7 @@ msgstr "" #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Jums nav atļaujas izpildīt to darbību." @@ -724,6 +788,7 @@ msgstr "Jums nav atļaujas izpildīt to darbību." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Tas ieraksts neeksistē...." @@ -731,6 +796,7 @@ msgstr "Tas ieraksts neeksistē...." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Lapa nav atrasta." @@ -738,6 +804,7 @@ msgstr "Lapa nav atrasta." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Tas moderātors jau eksistē!" @@ -746,6 +813,7 @@ msgstr "Tas moderātors jau eksistē!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Tā tēma neeksistē!" @@ -753,6 +821,7 @@ msgstr "Tā tēma neeksistē!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "" @@ -766,6 +835,7 @@ msgstr "" #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "LIETOTĀJS TIKA BANOTS DĒĻ ŠĪ IERAKSTA." @@ -852,10 +922,14 @@ msgstr "" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -864,11 +938,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Jauns bans" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Banu saraksts" @@ -876,17 +954,20 @@ msgstr "Banu saraksts" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Pārvieto atbildi" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Mērķa un avota dēlis ir viens un tas pats." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Neiespējami pārvietot pavedienu; ir tikai viens dēlis." @@ -894,18 +975,20 @@ msgstr "Neiespējami pārvietot pavedienu; ir tikai viens dēlis." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Pārvieto pavedienu" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Rediģē lietotāju" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Pārvaldi lietotājus" @@ -914,11 +997,13 @@ msgstr "Pārvaldi lietotājus" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Jauna privātā ziņa priekš" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Privāta ziņa" @@ -926,6 +1011,7 @@ msgstr "Privāta ziņa" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Privāto ziņu pastkaste" @@ -936,12 +1022,14 @@ msgstr "Privāto ziņu pastkaste" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Uzcel no jauna" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Sūdzējumu rinda" @@ -949,55 +1037,66 @@ msgstr "Sūdzējumu rinda" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Konfigurāciju rediģētājs" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Tēmu katalogs neeksistē!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Nevar atvērt tēmu katalogu; apskataties atļaujas." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Pārvaldi tēmas" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "" @@ -1065,6 +1164,10 @@ msgstr "" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1099,6 +1202,8 @@ msgstr "" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1178,6 +1283,12 @@ msgstr "" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1250,6 +1361,8 @@ msgstr "" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "" @@ -1301,6 +1414,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "" @@ -1312,6 +1426,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "" @@ -1323,6 +1438,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "" @@ -1337,6 +1453,7 @@ msgstr[2] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "" @@ -1352,6 +1469,8 @@ msgstr[2] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "" @@ -1363,6 +1482,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "" @@ -1377,6 +1497,7 @@ msgstr[2] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "" @@ -1405,6 +1526,9 @@ msgstr "" #. line 7 #. 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 @@ -1428,6 +1552,8 @@ msgstr "" #. 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 @@ -1462,6 +1588,9 @@ msgstr "" #. line 23 #. line 12 #. 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 @@ -1490,6 +1619,8 @@ msgstr "" #. 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 @@ -1581,6 +1712,10 @@ msgstr "" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1625,6 +1760,10 @@ msgstr "" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1669,6 +1808,10 @@ msgstr "" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1768,6 +1911,12 @@ msgstr "" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1776,38 +1925,43 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "" #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1826,6 +1980,9 @@ msgstr "" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1891,7 +2048,8 @@ msgstr "" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "" @@ -2036,6 +2194,15 @@ msgstr "" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2075,6 +2242,9 @@ msgstr "" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2094,6 +2264,8 @@ msgstr "" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2136,6 +2308,8 @@ msgstr "" #. 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" @@ -2230,6 +2404,15 @@ msgstr "" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2285,6 +2468,9 @@ msgstr "" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2323,6 +2509,9 @@ msgstr "" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2369,6 +2558,9 @@ msgstr "" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2413,6 +2605,10 @@ msgstr "" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2452,6 +2648,11 @@ msgstr "" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2513,6 +2714,8 @@ msgstr "" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2569,6 +2772,7 @@ msgstr "" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "" @@ -2586,6 +2790,9 @@ msgstr "" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2641,7 +2848,7 @@ msgstr "" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "" @@ -2675,41 +2882,54 @@ msgid "Your ban was filed on" msgstr "" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "" @@ -2731,21 +2951,28 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2769,10 +2996,14 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "" @@ -2794,21 +3025,28 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "" @@ -2827,6 +3065,10 @@ msgstr "" #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2895,6 +3137,8 @@ msgstr "" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3054,7 +3298,8 @@ msgstr "Neviens" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Pārvietots uz %s." @@ -3066,6 +3311,7 @@ msgid "" msgstr "" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3080,6 +3326,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3102,6 +3352,10 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3115,6 +3369,10 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3128,6 +3386,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3197,20 +3459,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3227,3 +3495,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/nb_NO/LC_MESSAGES/javascript.js b/inc/locale/nb_NO/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..650d3f76 --- /dev/null +++ b/inc/locale/nb_NO/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Stil:","File":"Fil","hide":"skjul","show":"vis","Show locked threads":"Vis l\u00e5ste tr\u00e5der","Hide locked threads":"Skjul l\u00e5ste tr\u00e5der","URL":"URL","Select":"Velg","hidden":"skjult","Show images":"Vis bilder","Hide images":"Skjul bilder","Password":"Passord","Delete":"Slett","Reason":"Grunn","Click reply to view.":"Klikk for \u00e5 se.","Click to expand":"Klikk for \u00e5 utvide","Save":"Lagre","Sun":"S\u00f8n","Mon":"Man","Tue":"Tirs","Wed":"Ons","Thu":"Tors","Fri":"Fre","Sat":"L\u00f8r","Catalog":"Katalog","Expand all images":"Utvid alle bilder","Hello!":"Hallo!","Loading...":"Laster...","Something went wrong... An unknown error occured!":"Noe gikk galt... En ukjent feil oppstod!","Sunday":"S\u00f8ndag","Monday":"Mandag","Tuesday":"Tirsdag","Wednesday":"Onsdag","Thursday":"Torsdag","Friday":"Fredag","Saturday":"L\u00f8rdag","January":"Januar","February":"Februar","March":"Mars","April":"April","May":"Mai","June":"Juni","July":"Juli","August":"August","September":"September","October":"Oktober","November":"November","December":"Desember","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Juni","Jul":"Juli","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Des","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Din nettleser st\u00f8tter ikke HTML5 video","[play once]":"[spill en gang]","[loop]":"[gjenta]","WebM Settings":"WebM Instillinger","WebM":"WebM","Options":"Instillinger","Import":"Importer","Erase":"Slett"}; \ No newline at end of file diff --git a/inc/locale/nb_NO/LC_MESSAGES/javascript.po b/inc/locale/nb_NO/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..b56e7154 --- /dev/null +++ b/inc/locale/nb_NO/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Elendic , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "Fil" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "skjul" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +msgstr "vis" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "Vis låste tråder" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "Skjul låste tråder" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Velg" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "skjult" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "Vis bilder" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Skjul bilder" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Passord" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Slett" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Grunn" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Klikk for å se." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Klikk for å utvide" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +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 "Lagre" + +#: ../../../../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/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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "Søn" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "Man" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "Tirs" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "Ons" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "Tors" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "Fre" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "Lør" + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Katalog" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "" + +#: ../../../../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: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:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Utvid alle bilder" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Hallo!" + +#: ../../../../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 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +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 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +msgstr "Laster..." + +#: ../../../../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 "Noe gikk galt... En ukjent feil oppstod!" + +#: ../../../../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 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Søndag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Mandag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Tirsdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Onsdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Torsdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "Fredag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Lørdag" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "Januar" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "Februar" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "Mars" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "April" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "Mai" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "Juni" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "Juli" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "August" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "September" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "Oktober" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "November" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "Desember" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "Jan" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "Apr" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "Juni" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "Juli" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "Aug" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "Okt" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "Des" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "Din nettleser støtter ikke HTML5 video" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[spill en gang]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[gjenta]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "WebM Instillinger" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "" + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "" + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "Instillinger" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "Importer" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "Slett" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "" + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/nb_NO/LC_MESSAGES/tinyboard.mo b/inc/locale/nb_NO/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..ea10d2ab Binary files /dev/null and b/inc/locale/nb_NO/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/nb_NO/LC_MESSAGES/tinyboard.po b/inc/locale/nb_NO/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..c80479ed --- /dev/null +++ b/inc/locale/nb_NO/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3501 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Elendic , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/nb_NO/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "sekund" +msgstr[1] "sekunder" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minutt" +msgstr[1] "minutter" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "time" +msgstr[1] "timer" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dager" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "uke" +msgstr[1] "uker" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "år" +msgstr[1] "år" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "Forrige" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "Neste" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "Feil" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "En feil har oppstått." + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "Logg inn" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "" + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "Slett fil" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "Er du sikker på at du vil slette denne filen?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "Slett" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +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:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "" + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "" + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "" + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "" + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "" + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "" + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "" + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "" + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "" + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "" + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "" + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "" + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "" + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "" + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "" + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "" + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +msgid "IP" +msgstr "" + +#. line 171 +#: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367 +#: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "" + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "" + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/nl_NL/LC_MESSAGES/javascript.js b/inc/locale/nl_NL/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..207c8056 --- /dev/null +++ b/inc/locale/nl_NL/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Stijl:","File":"Bestand","hide":"verbergen","show":"tonen","Show locked threads":"Toon gesloten draden","Hide locked threads":"Verberg gesloten draden","URL":"Webadres","Select":"Selecteer","Embed":"Embed","Oekaki":"Oekaki","hidden":"Verborgen","Show images":"Laat plaatjes zien","Hide images":"Verberg plaatjes","Password":"Wachtwoord","Delete file only":"Alleen bestand verwijderen","Delete":"Verwijderen","Reason":"Reden","Report":"Rapporteren","Click reply to view.":"Klik op antwoorden om te bekijken.","Click to expand":"Klik om uit te breiden.","Hide expanded replies":"Verberg antwoorden","Brush size":"Kwastgrootte","Set text":"Set text","Clear":"Wis","Save":"Opslaan","Load":"Laden","Toggle eraser":"Gum aan\/uit","Get color":"Get color","Fill":"Vullen","Use oekaki instead of file?":"Oekaki gebruiken ipv bestand?","Edit in oekaki":"Bewerken in oekaki","Enter some text":"Vul tekst in","Enter font or leave empty":"Vul font in, of laat leeg","Forced anonymity":"Geforceerde anonimiteit ","Sun":"Zondag","Mon":"Maandag","Tue":"Dinsdag","Wed":"Woensdag","Thu":"Donderdag","Fri":"Vrijdag","Sat":"Zaterdag","Catalog":"Catalogus","Submit":"Versturen","Quick reply":"Snelle reactie","Return":"Teruggaan","Expand all images":"Alle plaatjes vergroten","Hello!":"Hallo!","{0} users":"{0} gebruikers","(hide threads from this board)":"(verberg draden van dit bord)","(show threads from this board)":"(laat draden van dit bord zien)","No more threads to display":"Geen draden meer om te laten zien","Loading...":"Laden...","Save as original filename":"Sla op met originele bestandsnaam","Reported post(s).":"Gerapporteerde post(s)","An unknown error occured!":"Er was een error!","Something went wrong... An unknown error occured!":"Er is iets fout gegaan...","Posting... (#%)":"Gepost... (#%)","Posted...":"Gepost...","An unknown error occured when posting!":"Er was een error tijdens het posten!","Posting...":"Posting...","Upload URL":"Webadres uploaden","Spoiler Image":"Spoiler plaatje","Comment":"Reageren","Quick Reply":"Snelle reactie","Stop watching this thread":"Stop met het bekijken van deze draad","Watch this thread":"Bekijk deze draad","Pin this board":"Pin dit board","Stop watching this board":"Stop met het bekijken van dit bord","Watch this board":"Bekijk dit bord","Sunday":"Zondag","Monday":"Maandag","Tuesday":"Dinsdag","Wednesday":"Woensdag","Thursday":"Donderdag","Friday":"Vrijdag","Saturday":"Zaterdag","January":"Januari","February":"Februari","March":"Maart","April":"April","May":"Mei","June":"Juni","July":"Juli","August":"Augustus","September":"September","October":"Oktober","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mrt","Apr":"Apr","Jun":"Juni","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dec","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Je browser ondersteunt geen HTML5.","[play once]":"[een keer afspelen]","[loop]":"[loop]","WebM Settings":"Webm instellingen","Default volume":"Standaard volume","Shrink all images":"Alle plaatjes krimpen","Animate GIFs":"GIF's animeren","Unanimate GIFs":"Stoppen met GIF's animeren","WebM":"WebM","No new posts.":"Geen nieuwe posts.","No new threads.":"Geen nieuwe draden.","There are {0} new threads.":"Er zijn {0} nieuwe draden.","There are {0} new posts in this thread.":"Er zijn {0} nieuwe posts in deze draad.","Options":"Opties","Storage: ":"Opslag:","Export":"Exporteren","Import":"Importeren","Erase":"Wissen","User CSS":"Gebruiker CSS","User JS":"Gebruiker JS","Enter here your own Javascript code...":"Vul hier je eigen Javascript code in..."}; \ No newline at end of file diff --git a/inc/locale/nl_NL/LC_MESSAGES/javascript.po b/inc/locale/nl_NL/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..c14df60e --- /dev/null +++ b/inc/locale/nl_NL/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Kanker Kanker , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Stijl:" + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "Bestand" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "verbergen" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +msgstr "tonen" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "Toon gesloten draden" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "Verberg gesloten draden" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "Webadres" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Selecteer" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "Embed" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "Verborgen" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "Laat plaatjes zien" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Verberg plaatjes" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Wachtwoord" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Alleen bestand verwijderen" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Verwijderen" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Reden" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Rapporteren" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Klik op antwoorden om te bekijken." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Klik om uit te breiden." + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "Verberg antwoorden" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Kwastgrootte" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "Set text" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Wis" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Opslaan" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Laden" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Gum aan/uit" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Get color" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Vullen" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Oekaki gebruiken ipv bestand?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Bewerken in oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Vul tekst in" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Vul font in, of laat leeg" + +#: ../../../../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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +msgid "Forced anonymity" +msgstr "Geforceerde anonimiteit " + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "Zondag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "Maandag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "Dinsdag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "Woensdag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "Donderdag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "Vrijdag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "Zaterdag" + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Catalogus" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Versturen" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Snelle reactie" + +#: ../../../../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:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Teruggaan" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Alle plaatjes vergroten" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Hallo!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} gebruikers" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +msgid "(hide threads from this board)" +msgstr "(verberg draden van dit bord)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(laat draden van dit bord zien)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "Geen draden meer om te laten zien" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +msgstr "Laden..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Sla op met originele bestandsnaam" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "Gerapporteerde post(s)" + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "Er was een error!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Er is iets fout gegaan..." + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "" + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Gepost... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Gepost..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Er was een error tijdens het posten!" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Posting..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "Webadres uploaden" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Spoiler plaatje" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "Reageren" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +msgid "Quick Reply" +msgstr "Snelle reactie" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Stop watching this thread" +msgstr "Stop met het bekijken van deze draad" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Watch this thread" +msgstr "Bekijk deze draad" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Pin this board" +msgstr "Pin dit board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Stop watching this board" +msgstr "Stop met het bekijken van dit bord" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "Bekijk dit bord" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Zondag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Maandag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Dinsdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Woensdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Donderdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "Vrijdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Zaterdag" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "Januari" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "Februari" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "Maart" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "April" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "Mei" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "Juni" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "Juli" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "Augustus" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "September" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "Oktober" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "November" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "December" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "Jan" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "Mrt" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "Apr" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "Juni" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "Jul" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "Aug" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "Oct" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "Dec" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "Je browser ondersteunt geen HTML5." + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[een keer afspelen]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[loop]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "Webm instellingen" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "Standaard volume" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "Alle plaatjes krimpen" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "GIF's animeren" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "Stoppen met GIF's animeren" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "Geen nieuwe posts." + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "Geen nieuwe draden." + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "Er zijn {0} nieuwe draden." + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "Er zijn {0} nieuwe posts in deze draad." + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "Opties" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "Opslag:" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "Exporteren" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "Importeren" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "Wissen" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "Gebruiker CSS" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "Gebruiker JS" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "Vul hier je eigen Javascript code in..." + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/nl_NL/LC_MESSAGES/tinyboard.mo b/inc/locale/nl_NL/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..f9667fbc Binary files /dev/null and b/inc/locale/nl_NL/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/nl_NL/LC_MESSAGES/tinyboard.po b/inc/locale/nl_NL/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..86cf5899 --- /dev/null +++ b/inc/locale/nl_NL/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3502 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# DutchBlue , 2014 +# Kanker Kanker , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Dutch (Netherlands) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/nl_NL/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl_NL\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "Banned!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "Vorige" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "Volgende" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "Error" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "Er was een error!" + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "Inloggen" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "" + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +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 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "Ban & Verwijderen" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "Bestand verwijderen" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "Weet je zeker dat je dit bestand wilt verwijderen?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "Spoiler plaatje" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "Weet je zeker dat je dit plaatje wilt spoileren?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "Verplaats reactie naar ander bord" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "Post bewerken" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "Verwijderen" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "Weet je zeker dat je dit wilt verwijderen?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "Verwijder alle posts van dit IP" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "Weet je zeker dat je alle posts van dit IP adres wilt verwijderen?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "Verwijder alle posts van dit IP op alle borden" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "Weet je zeker dat je alle posts van dit IP adres wilt verwijderen op alle bords?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "Maak van draad geen sticky meer" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "Maak van draad een sticky" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "Bumpen van draad toestaan" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "Voorkom draad van bumpen" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "Open draad" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "Sluit draad" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +msgid "Move thread to another board" +msgstr "Verplaats draad naar ander bord" + +#. 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 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "Je bent gemuted voor onorgineel content." + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "Nieuw onderwerp" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "Nieuwe reactie" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "Je lijkt op een bot." + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "" + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "" + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "" + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "" + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "" + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "" + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "" + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "" + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "" + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "" + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "" + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "" + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "" + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "" + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +msgid "IP" +msgstr "" + +#. line 171 +#: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367 +#: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "" + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "" + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/pl_PL/LC_MESSAGES/javascript.js b/inc/locale/pl_PL/LC_MESSAGES/javascript.js index e36fa98c..8b689f0a 100644 --- a/inc/locale/pl_PL/LC_MESSAGES/javascript.js +++ b/inc/locale/pl_PL/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"Styl: ","File":"Plik","hide":"ukryj","show":"poka\u017c","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Sun":"nie","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Catalog":"Katalog","Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to >>{0}<\/small>":"Tryb postowania: Odpowied\u017a na >>{0}<\/small>","Return":"Powr\u00f3t","Expand all images":"Rozwi\u0144 wszystkie obrazki","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 obserwowa\u0107 ten board","Watch this board":"Obserwuj ten board","Click on any image on this site to load it into oekaki applet":"Kliknij w jakikolwiek obrazek na tej stronie aby za\u0142adowa\u0107 go do apletu oekaki","Sunday":"Niedziela","Monday":"Poniedzia\u0142ek","Tuesday":"Wtorek","Wednesday":"\u015aroda","Thursday":"Czwartek","Friday":"Pi\u0105tek","Saturday":"Sobota","January":"stycznia","February":"lutego","March":"marca","April":"kwietnia","May":"maj","June":"czerwca","July":"lipca","August":"sierpnia","September":"wrze\u015bnia","October":"pa\u017adziernika","November":"listopada","December":"grudnia","Jan":"sty","Feb":"lut","Mar":"mar","Apr":"kwi","Jun":"cze","Jul":"lip","Aug":"sie","Sep":"wrz","Oct":"pa\u017a","Nov":"lis","Dec":"gru","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Twoja przegl\u0105darka nie obs\u0142uguje wideo HTML5.","[play once]":"[pu\u015b\u0107 raz]","[loop]":"[zap\u0119tl]","WebM Settings":"Ustawienia WebM","Expand videos inline":"Rozwi\u0144 wideo w miejscu","Play videos on hover":"Puszczaj wideo po najechaniu","Default volume":"Domy\u015blna g\u0142o\u015bno\u015b\u0107","Tree view":"Widok drzewa","Shrink all images":"Zmniejsz wszystkie obrazki","Animate GIFs":"Animuj GIF-y","Unanimate GIFs":"Nie animuj GIF-\u00f3w","WebM":"WebM","No new posts.":"Brak nowych post\u00f3w.","No new threads.":"Brak nowych w\u0105tk\u00f3w.","There are {0} new threads.":"S\u0105 {0} nowe w\u0105tki.","There are {0} new posts in this thread.":"S\u0105 {0} nowe posty w tym w\u0105tku.","Options":"Opcje","General":"Og\u00f3lne","Storage: ":"Dane:","Export":"Eksportuj","Import":"Importuj","Paste your storage data":"Wklej swoje wcze\u015bniej wyeksportowane dane","Erase":"Wyczy\u015b\u0107","":"Pami\u0119taj o kopii zapasowej swoich danych, gdy\u017c u\u017cywaj\u0105cn tej opcji mo\u017cesz popsu\u0107 sobie t\u0105 stron\u0119.","User CSS":"CSS u\u017cytkownika","Update custom CSS":"Aktualizuj CSS u\u017cytkownika","Enter here your own CSS rules...":"Wstaw tutaj swoje regu\u0142y CSS...","You can include CSS files from remote servers, for example:":"Mo\u017cesz za\u0142\u0105czy\u0107 pliki CSS ze zdalnych serwer\u00f3w, na przyk\u0142ad:","User JS":"Javascript u\u017cytkownika","Update custom Javascript":"Aktualizuj Javascript u\u017cytkownika","Enter here your own Javascript code...":"Wstaw tutaj sw\u00f3j kod Javascript...","You can include JS files from remote servers, for example:":"Mo\u017cesz za\u0142\u0105cza\u0107 pliki JS ze zdalnych serwer\u00f3w, np.:"}; \ No newline at end of file +l10n = {"Style: ":"Styl: ","File":"Plik","hide":"ukryj","show":"poka\u017c","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Sun":"nie","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Catalog":"Katalog","Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to >>{0}<\/small>":"Tryb postowania: Odpowied\u017a na >>{0}<\/small>","Return":"Powr\u00f3t","Expand all images":"Rozwi\u0144 wszystkie obrazki","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 obserwowa\u0107 ten board","Watch this board":"Obserwuj ten board","Click on any image on this site to load it into oekaki applet":"Kliknij w jakikolwiek obrazek na tej stronie aby za\u0142adowa\u0107 go do apletu oekaki","Sunday":"Niedziela","Monday":"Poniedzia\u0142ek","Tuesday":"Wtorek","Wednesday":"\u015aroda","Thursday":"Czwartek","Friday":"Pi\u0105tek","Saturday":"Sobota","January":"stycznia","February":"lutego","March":"marca","April":"kwietnia","May":"maj","June":"czerwca","July":"lipca","August":"sierpnia","September":"wrze\u015bnia","October":"pa\u017adziernika","November":"listopada","December":"grudnia","Jan":"sty","Feb":"lut","Mar":"mar","Apr":"kwi","Jun":"cze","Jul":"lip","Aug":"sie","Sep":"wrz","Oct":"pa\u017a","Nov":"lis","Dec":"gru","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Twoja przegl\u0105darka nie obs\u0142uguje wideo HTML5.","[play once]":"[pu\u015b\u0107 raz]","[loop]":"[zap\u0119tl]","WebM Settings":"Ustawienia WebM","Expand videos inline":"Rozwi\u0144 wideo w miejscu","Play videos on hover":"Puszczaj wideo po najechaniu","Default volume":"Domy\u015blna g\u0142o\u015bno\u015b\u0107","Tree view":"Widok drzewa","Shrink all images":"Zmniejsz wszystkie obrazki","Animate GIFs":"Animuj GIF-y","Unanimate GIFs":"Nie animuj GIF-\u00f3w","WebM":"WebM","No new posts.":"Brak nowych post\u00f3w.","No new threads.":"Brak nowych w\u0105tk\u00f3w.","There are {0} new threads.":"S\u0105 {0} nowe w\u0105tki.","There are {0} new posts in this thread.":"S\u0105 {0} nowe posty w tym w\u0105tku.","Options":"Opcje","General":"Og\u00f3lne","Storage: ":"Dane:","Export":"Eksportuj","Import":"Importuj","Paste your storage data":"Wklej swoje wcze\u015bniej wyeksportowane dane","Erase":"Wyczy\u015b\u0107","":"Pami\u0119taj o kopii zapasowej swoich danych, gdy\u017c u\u017cywaj\u0105cn tej opcji mo\u017cesz popsu\u0107 sobie t\u0105 stron\u0119.","User CSS":"CSS u\u017cytkownika","Update custom CSS":"Aktualizuj CSS u\u017cytkownika","Enter here your own CSS rules...":"Wstaw tutaj swoje regu\u0142y CSS...","You can include CSS files from remote servers, for example:":"Mo\u017cesz za\u0142\u0105czy\u0107 pliki CSS ze zdalnych serwer\u00f3w, na przyk\u0142ad:","User JS":"Javascript u\u017cytkownika","Update custom Javascript":"Aktualizuj Javascript u\u017cytkownika","Enter here your own Javascript code...":"Wstaw tutaj sw\u00f3j kod Javascript...","You can include JS files from remote servers, for example:":"Mo\u017cesz za\u0142\u0105cza\u0107 pliki JS ze zdalnych serwer\u00f3w, np.:","Color IDs":"Kolorowe ID","Update":"Od\u015bwie\u017c","IP address":"Adres IP","Seen":"Widziano","Message for which user was banned is included":"Wiadomo\u015b\u0107, za kt\u00f3r\u0105 u\u017cytkownik zosta\u0142 zbanowany jest za\u0142\u0105czona","Message:":"Wiadomo\u015b\u0107:","Board":"Board","all":"wszystkie","Set":"Ustawiono"," ago":"temu","Expires":"Wygasa","never":"nigdy","in ":"w","Staff":"Ekipa","system":"system","Auto":"Auto","Updating...":"Aktualizowanie...","Thread updated with {0} new post(s)":"W\u0105tek zaktualizowany z {0} nowymi postami","No new posts found":"Nie znaleziono nowych post\u00f3w","Thread deleted or pruned":"W\u0105tek usuni\u0119ty, b\u0105d\u017a wygas\u0142","Error: ":"B\u0142\u0105d:","Unknown error":"Nieznany b\u0142\u0105d","Page":"Strona","All":"Wszystkie","second(s)":"sekundy","minute(s)":"minuty","hour(s)":"godziny","day(s)":"dni","week(s)":"tygodnie","year(s)":"lata"}; \ 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 33ec258e..23c243d4 100644 --- a/inc/locale/pl_PL/LC_MESSAGES/javascript.po +++ b/inc/locale/pl_PL/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:48+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:52+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgid "Delete" msgstr "Usuń" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Powód" @@ -214,43 +214,45 @@ msgid "disabled" msgstr "wyłączona" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "nie" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "pon" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "wto" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "śro" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "czw" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "pią" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "sob" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalog" @@ -318,6 +320,7 @@ msgstr "Nie ma więcej wątków do wyświetlenia" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Ładowanie..." @@ -434,139 +437,140 @@ msgstr "Obserwuj ten board" 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 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Niedziela" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Poniedziałek" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Wtorek" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Środa" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Czwartek" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Piątek" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Sobota" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "stycznia" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "lutego" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "marca" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "kwietnia" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "maj" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "czerwca" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "lipca" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "sierpnia" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "września" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "października" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "listopada" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "grudnia" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "sty" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "lut" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "kwi" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "cze" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "lip" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "sie" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "wrz" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "paź" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "lis" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "gru" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -605,16 +609,19 @@ msgid "Tree view" msgstr "Widok drzewa" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "Zmniejsz wszystkie obrazki" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "Animuj GIF-y" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "Nie animuj GIF-ów" @@ -717,3 +724,124 @@ msgstr "Pamiętaj o kopii zapasowej swoich danych, gdyż używając\n tej opcj #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "Możesz załączać pliki JS ze zdalnych serwerów, np.:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "Kolorowe ID" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "Odśwież" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "Adres IP" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "Widziano" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "Wiadomość, za którą użytkownik został zbanowany jest załączona" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "Wiadomość:" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "Board" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "wszystkie" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "Ustawiono" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "temu" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "Wygasa" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "nigdy" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "w" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "Ekipa" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "system" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "Auto" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "Aktualizowanie..." + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "Wątek zaktualizowany z {0} nowymi postami" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "Nie znaleziono nowych postów" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "Wątek usunięty, bądź wygasł" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "Błąd:" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "Nieznany błąd" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "Strona" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "Wszystkie" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "sekundy" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "minuty" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "godziny" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "dni" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "tygodnie" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "lata" diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo index a0c1e43d..b72324ea 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 bab78ebd..eb73784d 100644 --- a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po +++ b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:50+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:53+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,14 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "sekunda" msgstr[1] "sekundy" msgstr[2] "sekund" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -42,12 +44,14 @@ msgstr[2] "sekund" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minuta" msgstr[1] "minuty" msgstr[2] "minut" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -57,12 +61,14 @@ msgstr[2] "minut" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "godzina" msgstr[1] "godziny" msgstr[2] "godzin" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -72,12 +78,14 @@ msgstr[2] "godzin" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "dzień" msgstr[1] "dni" msgstr[2] "dni" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -87,6 +95,7 @@ msgstr[2] "dni" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "tydzień" @@ -102,6 +111,7 @@ msgstr[2] "tygodni" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "rok" @@ -112,7 +122,7 @@ msgstr[2] "lat" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Zbanowany!" @@ -126,6 +136,7 @@ msgstr "Zbanowany!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Wstecz" @@ -139,7 +150,8 @@ msgstr "Wstecz" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Dalej" @@ -230,7 +242,8 @@ msgstr "Przenieś odpowiedź na inny board" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Edytuj post" @@ -327,6 +340,7 @@ msgstr "Przenieś wątek na inny board" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Zostałeś wyciszony za nieoryginalną treść." @@ -338,6 +352,7 @@ msgstr "Zostałeś wyciszony za nieoryginalną treść." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nowy wątek" @@ -345,6 +360,7 @@ msgstr "Nowy wątek" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Odpowiedz" @@ -353,6 +369,7 @@ msgstr "Odpowiedz" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -378,6 +395,7 @@ msgstr "Nie postuj pierwszego dnia." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Wyglądasz jak bot." @@ -385,6 +403,7 @@ msgstr "Wyglądasz jak bot." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Twoja przeglądarka przesłała niepoprawny, bądź nie przesłała informacji o odsyłaczu w nagłówku" @@ -392,6 +411,7 @@ msgstr "Twoja przeglądarka przesłała niepoprawny, bądź nie przesłała info #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "Pole %s jest za długie" @@ -400,6 +420,7 @@ msgstr "Pole %s jest za długie" #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Zawartość jest za długa." @@ -407,6 +428,7 @@ msgstr "Zawartość jest za długa." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Zawartość jest za krótka, bądź pusta." @@ -414,6 +436,7 @@ msgstr "Zawartość jest za krótka, bądź pusta." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Musisz wysłać obrazek." @@ -421,6 +444,7 @@ msgstr "Musisz wysłać obrazek." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Nie udało się obsłużyć twojego pliku." @@ -428,6 +452,7 @@ msgstr "Nie udało się obsłużyć twojego pliku." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Niewspierany format obrazka." @@ -435,6 +460,7 @@ msgstr "Niewspierany format obrazka." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Niepoprawny board!" @@ -442,6 +468,7 @@ msgstr "Niepoprawny board!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Wybrany wątek nie istnieje." @@ -449,6 +476,7 @@ msgstr "Wybrany wątek nie istnieje." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Wątek jest zablokowany. Nie możesz w nim teraz postować." @@ -456,6 +484,7 @@ msgstr "Wątek jest zablokowany. Nie możesz w nim teraz postować." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Ten temat osiągnął swój maksymalny limit odpowiedzi." @@ -463,6 +492,7 @@ msgstr "Ten temat osiągnął swój maksymalny limit odpowiedzi." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Ten temat osiągnął swój maksymalny limit obrazków." @@ -470,6 +500,7 @@ msgstr "Ten temat osiągnął swój maksymalny limit obrazków." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Nie zrobiłeś posta." @@ -477,6 +508,7 @@ msgstr "Nie zrobiłeś posta." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Wykryto flood; Post odrzucony." @@ -484,6 +516,7 @@ msgstr "Wykryto flood; Post odrzucony." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Twoje żądanie wygląda na zautomatyzowane; Post odrzucony." @@ -491,6 +524,7 @@ msgstr "Twoje żądanie wygląda na zautomatyzowane; Post odrzucony." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Nieoryginalna treść!" @@ -498,6 +532,7 @@ msgstr "Nieoryginalna treść!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Nieoryginalna treść! Zostałeś wyciszony na %d sekund." @@ -506,6 +541,7 @@ msgstr "Nieoryginalna treść! Zostałeś wyciszony na %d sekund." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Jesteś wyciszony! Wygasa w ciągu %d sekund." @@ -514,6 +550,7 @@ msgstr "Jesteś wyciszony! Wygasa w ciągu %d sekund." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Twój adres IP jest na liście %s." @@ -522,6 +559,7 @@ msgstr "Twój adres IP jest na liście %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Zbyt dużo linków; wykryto flood." @@ -529,6 +567,7 @@ msgstr "Zbyt dużo linków; wykryto flood." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Zbyt dużo cytatów; post odrzucony." @@ -536,6 +575,7 @@ msgstr "Zbyt dużo cytatów; post odrzucony." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Zbyt dużo linków między boardami; post odrzucony." @@ -543,6 +583,7 @@ msgstr "Zbyt dużo linków między boardami; post odrzucony." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Nie wybrano nic do usunięcia." @@ -550,6 +591,7 @@ msgstr "Nie wybrano nic do usunięcia." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Nie wybrano nic do zgłoszenia." @@ -557,6 +599,7 @@ msgstr "Nie wybrano nic do zgłoszenia." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Nie możesz raportować tyle postów na raz." @@ -564,6 +607,7 @@ msgstr "Nie możesz raportować tyle postów na raz." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Niepoprawne hasło" @@ -571,6 +615,7 @@ msgstr "Niepoprawne hasło" #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Niepoprawny obrazek." @@ -578,6 +623,7 @@ msgstr "Niepoprawny obrazek." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Nieznane rozszerzenie pliku." @@ -585,6 +631,7 @@ msgstr "Nieznane rozszerzenie pliku." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Maksymalny rozmiar pliku: %maxsz% bajtów
Rozmiar twojego pliku: %filesz% bajtów" @@ -592,6 +639,7 @@ msgstr "Maksymalny rozmiar pliku: %maxsz% bajtów
Rozmiar twojego pliku: %fil #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Plik jest za duży." @@ -599,6 +647,7 @@ msgstr "Plik jest za duży." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Ten plik już istnieje!" @@ -607,6 +656,7 @@ msgstr "Ten plik już istnieje!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Ten plik już istnieje w tym temacie!" @@ -615,6 +665,7 @@ msgstr "Ten plik już istnieje w tym temacie!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Musisz poczekać kolejne %s przed usunięciem tego." @@ -623,6 +674,7 @@ msgstr "Musisz poczekać kolejne %s przed usunięciem tego." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "Wykryto próbę wykorzystania luki wykrywania typu MIME (XSS w IE); post odrzucony" @@ -630,6 +682,7 @@ msgstr "Wykryto próbę wykorzystania luki wykrywania typu MIME (XSS w IE); post #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 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ć." @@ -637,6 +690,7 @@ msgstr "Nie można było zrozumieć URL-a wideo, którego próbowano zapostować #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Wygląda na to, że przepisano źle weryfikację." @@ -645,6 +699,7 @@ msgstr "Wygląda na to, że przepisano źle weryfikację." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -655,6 +710,7 @@ msgstr "Możesz odbanować tylko %s użytkowników na raz. Próbowałeś odbanow #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Błędna nazwa użytkownika, bądź hasło" @@ -662,6 +718,7 @@ msgstr "Błędna nazwa użytkownika, bądź hasło" #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Nie jesteś moderatorem" @@ -669,6 +726,7 @@ msgstr "Nie jesteś moderatorem" #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -678,6 +736,7 @@ msgstr "Niepoprawna nazwa użytkownika, bądź hasło. Twoje konto mogło zosta #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Niepoprawne/zmodyfikowane pliki cookie." @@ -685,6 +744,7 @@ msgstr "Niepoprawne/zmodyfikowane pliki cookie." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Twoja przeglądarka nie wysłała pola, kiedy powinna." @@ -692,6 +752,7 @@ msgstr "Twoja przeglądarka nie wysłała pola, kiedy powinna." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Pole %s jest wymagane." @@ -700,6 +761,7 @@ msgstr "Pole %s jest wymagane." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Pole %s jest niepoprawne." @@ -708,6 +770,7 @@ msgstr "Pole %s jest niepoprawne." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Już istnieje board %s" @@ -716,6 +779,7 @@ msgstr "Już istnieje board %s" #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Nie masz uprawnień do wykonania tej czynności." @@ -723,6 +787,7 @@ msgstr "Nie masz uprawnień do wykonania tej czynności." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Ten post nie istnieje..." @@ -730,6 +795,7 @@ msgstr "Ten post nie istnieje..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Strona nie znaleziona." @@ -737,6 +803,7 @@ msgstr "Strona nie znaleziona." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Ten moderator już istnieje!" @@ -745,6 +812,7 @@ msgstr "Ten moderator już istnieje!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Ten dodatek nie istnieje!" @@ -752,6 +820,7 @@ msgstr "Ten dodatek nie istnieje!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponownie." @@ -765,6 +834,7 @@ msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponown #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "UŻYTKOWNIK ZOSTAŁ ZBANOWANY ZA TEGO POSTA" @@ -851,10 +921,14 @@ msgstr "Log moderacji" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "adres IP" @@ -863,11 +937,15 @@ msgstr "adres IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Nowy ban" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Lista banów" @@ -875,17 +953,20 @@ msgstr "Lista banów" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Przenieś odpowiedź" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Docelowy i źródłowy board są takie same." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Nie można przenieść wątku; istnieje tylko jeden board." @@ -893,18 +974,20 @@ msgstr "Nie można przenieść wątku; istnieje tylko jeden board." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Przenieś wątek" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Edytuj użytkownika" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Zarządzaj użytkownikami" @@ -913,11 +996,13 @@ msgstr "Zarządzaj użytkownikami" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Nowe PW dla" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Prywatna wiadomość" @@ -925,6 +1010,7 @@ msgstr "Prywatna wiadomość" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Odebrane PW" @@ -935,12 +1021,14 @@ msgstr "Odebrane PW" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Przebuduj" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Kolejka zgłoszeń" @@ -948,55 +1036,66 @@ msgstr "Kolejka zgłoszeń" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Edytor konfiguracji" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Katalog dodatków (themes) nie istnieje!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Nie można otworzyć katalogu dodatków (themes); sprawdź uprawnienia." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Zarządzaj dodatkami" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Zainstalowano dodatek: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Konfigurowanie dodatku: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Przebudowano dodatek: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug: Antyspam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug: Ostatnie posty" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug: SQL" @@ -1064,6 +1163,10 @@ msgstr "Usuń post" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1098,6 +1201,8 @@ msgstr "Plik" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1177,6 +1282,12 @@ msgstr "Hasło" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1249,6 +1360,8 @@ msgstr "brak tematu" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "przez" @@ -1300,6 +1413,7 @@ msgstr "Schowaj obrazek" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Odpowiedź" @@ -1311,6 +1425,7 @@ msgstr "Odpowiedź" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Zobacz wszystko" @@ -1322,6 +1437,7 @@ msgstr "Zobacz wszystko" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Ostatni 1 post" @@ -1336,6 +1452,7 @@ msgstr[2] "Ostatnie %count% postów" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 post" @@ -1351,6 +1468,8 @@ msgstr[2] "%count% postów" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "oraz" @@ -1362,6 +1481,7 @@ msgstr "oraz" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 obrazek" @@ -1376,6 +1496,7 @@ msgstr[2] "%count% obrazków" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "pominięte. Kliknij Odpowiedź aby zobaczyć." @@ -1404,6 +1525,9 @@ msgstr "pominięte. Kliknij Odpowiedź aby zobaczyć." #. line 7 #. 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 @@ -1427,6 +1551,8 @@ msgstr "Nazwa" #. 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 @@ -1461,6 +1587,9 @@ msgstr "E-mail" #. line 23 #. line 12 #. 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 @@ -1489,6 +1618,8 @@ msgstr "Aktualizacja" #. 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 @@ -1580,6 +1711,10 @@ msgstr "Flagi" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1624,6 +1759,10 @@ msgstr "Przyklejony" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1668,6 +1807,10 @@ msgstr "Zablokowany" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1767,6 +1910,12 @@ msgstr "Brak wyników." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1775,38 +1924,43 @@ msgstr "Brak wyników." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Szukaj" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Apelacja nie znaleziona!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Apelacje o zdjęcie banów" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Nowy użytkownik" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Nie można zmienić poziomu uprawnień użytkownika." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1825,6 +1979,9 @@ msgstr "Twój kod zawierał błędy składni PHP. Wciśnij wstecz i popraw je. P #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1890,7 +2047,8 @@ msgstr "Antyspam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Ostatnie posty" @@ -2035,6 +2193,15 @@ msgstr "Zapostuj newsa" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2074,6 +2241,9 @@ msgstr "Ekipa" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2093,6 +2263,8 @@ msgstr "Notka" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2135,6 +2307,8 @@ msgstr "Nowa notka" #. 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" @@ -2229,6 +2403,15 @@ msgstr "brak powodu" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2284,6 +2467,9 @@ msgstr "wszystkie boardy" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2322,6 +2508,9 @@ msgstr "Ustawione" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2368,6 +2557,9 @@ msgstr "nigdy" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2412,6 +2604,10 @@ msgstr "Usuń ban" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2451,6 +2647,11 @@ msgstr "Czas" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2512,6 +2713,8 @@ msgstr "Nowy ban" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2568,6 +2771,7 @@ msgstr "Czas trwania" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Odbanuj zaznaczone" @@ -2585,6 +2789,9 @@ msgstr "Odbanuj zaznaczone" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2640,7 +2847,7 @@ msgstr "Nie udało się przerysować obrazka!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Nie udało się zmienić rozmiaru obrazka!" @@ -2674,41 +2881,54 @@ msgid "Your ban was filed on" msgstr "Twój ban został nałożony" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "już wygasł. Odśwież stronę, aby kontynuować." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "wygasa" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "od teraz, czyli" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "nie wygaśnie" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Twój adres IP to" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Byłeś zbanowany za następującego posta" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Przesłałeś apelacje" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Apelacja wciąż oczekuje na rozpatrzenie" @@ -2730,21 +2950,28 @@ msgstr "Apelacja wciąż oczekuje na rozpatrzenie" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Wysłano apelacje o zdjęcie tego bana" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "i została ona odrzucona. Nie mozesz apelować o zdjęcie tego bana ponownie." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2768,10 +2995,14 @@ msgstr "Wysłałeś maksymalną możliwą ilość apelacji. Nie możesz apelowa #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "i została ona odrzucona." @@ -2793,21 +3024,28 @@ msgstr "i została ona odrzucona." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Możesz apelować o zdjęcie tego bana ponownie. Wpisz poniżej swoje powody." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Ostatnio apelowano o zdjęcie tego bana" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Możesz apelować o zdjęcie tego bana. Wpisz poniżej swoje powody." @@ -2826,6 +3064,10 @@ msgstr "Możesz apelować o zdjęcie tego bana. Wpisz poniżej swoje powody." #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2894,6 +3136,8 @@ msgstr "blokuje wątek; umieszcza link do nowego." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3053,7 +3297,8 @@ msgstr "Brak" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Przeniesiono do %s." @@ -3065,6 +3310,7 @@ msgid "" msgstr "Nie mogę zbudować dodatku RecentPosts, ponieważ nie ma boardów, które mógłbym załączyć." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "Spróbowano wysłać zbyt dużą ilość obrazków!" @@ -3079,6 +3325,10 @@ msgstr "Schowaj plik" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3101,6 +3351,10 @@ msgstr "Ostatnia odpowiedź" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3114,6 +3368,10 @@ msgstr "Data utworzenia" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3127,6 +3385,10 @@ msgstr "Ilość odpowiedzi" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3196,20 +3458,26 @@ msgstr "Nie można było dokonać auto-orientacji obrazka!" msgid "Could not strip EXIF metadata!" msgstr "Nie można było usunąć metadanych EXIF!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "Wystąpił problem podczas przetwarzania Twojego webm-a." -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "Niepoprawny plik webm." -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "Wysłany plik webm zawiera audio, bądź inny typ dodatkowego strumienia." -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "Wysłany plik webm jest dłuższy niż" @@ -3226,3 +3494,19 @@ msgstr "Nie pokazuj mojej flagi" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "Bardzo małe" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "(bez komentarza)" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "Nie ma aktywnych postów." + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "Pokazuj bany tylko z boardów, które moderuję" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "Pokazuj tylko aktywne bany" diff --git a/inc/locale/pt_BR/LC_MESSAGES/javascript.js b/inc/locale/pt_BR/LC_MESSAGES/javascript.js index bf8f6e19..80e12264 100644 --- a/inc/locale/pt_BR/LC_MESSAGES/javascript.js +++ b/inc/locale/pt_BR/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"Estilo: ","File":"Arquivo","hide":"esconder","show":"mostrar","Show locked threads":"Mostrar threads trancadas","Hide locked threads":"Esconder threads trancadas","URL":"URL","Select":"Selecionar","Remote":"Remoto","Embed":"Embutir","Oekaki":"Oekaki","hidden":"escondido","Show images":"Mostrar imagens","Hide images":"Esconder imagens","Password":"Senha","Delete file only":"Deletar somente o arquivo","Delete":"Deletar","Reason":"Motivo","Report":"Denunciar","Click reply to view.":"Clique em responder para ver a resposta.","Click to expand":"Clique para expandir","Hide expanded replies":"Ocultar respostas expandidas","Brush size":"Tamanho do pincel","Set text":"Definir texto","Clear":"Limpar","Save":"Salvar","Load":"Carregar","Toggle eraser":"Alternar borracha.","Get color":"Obter cor","Fill":"Preencher","Use oekaki instead of file?":"Use oekaki em vez de arquivo?","Edit in oekaki":"Editar no oekaki","Enter some text":"Digite algum texto","Enter font or leave empty":"Digite o tipo de letra ou deixe em branco","Forced anonymity":"Anonimato for\u00e7ado","enabled":"habilitado","disabled":"desabilitado","Sun":"Dom","Mon":"Seg","Tue":"Ter","Wed":"Qua","Thu":"Qui","Fri":"Sex","Sat":"Sab","Catalog":"Cat\u00e1logo","Submit":"Enviar","Quick reply":"Resposta r\u00e1pida","Posting mode: Replying to >>{0}<\/small>":"Modo de resposta: Respondendo a >>{0}<\/small>","Return":"Voltar","Expand all images":"Expandir todas as imagens","Hello!":"Ol\u00e1!","{0} users":"{0} usu\u00e1rios","(hide threads from this board)":"(esconder threads desta board)","(show threads from this board)":"(mostrar threads desta board)","No more threads to display":"Sem mais threads para mostrar","Loading...":"Carregando...","Save as original filename":"Salvar com nome de arquivo original","Reported post(s).":"Post(s) denunciado(s).","An unknown error occured!":"Ocorreu um erro desconhecido!","Something went wrong... An unknown error occured!":"Algo deu errado ... Ocorreu um erro desconhecido!","Working...":"Trabalhando...","Posting... (#%)":"Enviando... (#%)","Posted...":"Enviado...","An unknown error occured when posting!":"Ocorreu um erro desconhecido ao postar!","Posting...":"Postando...","Upload URL":"URL de upload","Spoiler Image":"Imagem Spoiler","Comment":"Coment\u00e1rio","Quick Reply":"Resposta r\u00e1pida","Stop watching this thread":"Parar de assistir esta thread","Watch this thread":"Assistir esta thread","Unpin this board":"Desafixar esta board","Pin this board":"Fixar esta board","Stop watching this board":"Parar de assistir esta board","Watch this board":"Assistir esta board","Click on any image on this site to load it into oekaki applet":"Clique em qualquer imagem neste site para carreg\u00e1-lo no miniaplicativo oekaki","Sunday":"Domingo","Monday":"Segunda","Tuesday":"Ter\u00e7a","Wednesday":"Quarta","Thursday":"Quinta","Friday":"Sexta","Saturday":"Sabado","January":"Janeiro","February":"Fevereiro","March":"Mar\u00e7o","April":"Abril","May":"Maio","June":"Junho","July":"Julho","August":"Agosto","September":"Setembro","October":"Outubro","November":"Novembro","December":"Dezembro","Jan":"Jan","Feb":"Fev","Mar":"Mar","Apr":"Abr","Jun":"Jun","Jul":"Jul","Aug":"Ago","Sep":"Set","Oct":"Out","Nov":"Nov","Dec":"Dez","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Seu browser n\u00e3o suporta videos em HTML5.","[play once]":"[ver uma vez]","[loop]":"[vez repetidamente]","WebM Settings":"Configura\u00e7\u00f5es WebM","Expand videos inline":"Expandir v\u00eddeos no lugar da miniatura","Play videos on hover":"Reproduz v\u00eddeos em foco","Default volume":"Volume padr\u00e3o"}; \ No newline at end of file +l10n = {"Style: ":"Estilo: ","File":"Arquivo","hide":"esconder","show":"mostrar","Show locked threads":"Mostrar threads trancadas","Hide locked threads":"Esconder threads trancadas","URL":"URL","Select":"Selecionar","Remote":"Remoto","Embed":"Embutir","Oekaki":"Oekaki","hidden":"escondido","Show images":"Mostrar imagens","Hide images":"Esconder imagens","Password":"Senha","Delete file only":"Deletar somente o arquivo","Delete":"Deletar","Reason":"Motivo","Report":"Denunciar","Click reply to view.":"Clique em responder para ver a resposta.","Click to expand":"Clique para expandir","Hide expanded replies":"Ocultar respostas expandidas","Brush size":"Tamanho do pincel","Set text":"Definir texto","Clear":"Limpar","Save":"Salvar","Load":"Carregar","Toggle eraser":"Alternar borracha.","Get color":"Obter cor","Fill":"Preencher","Use oekaki instead of file?":"Use oekaki em vez de arquivo?","Edit in oekaki":"Editar no oekaki","Enter some text":"Digite algum texto","Enter font or leave empty":"Digite o tipo de letra ou deixe em branco","Forced anonymity":"Anonimato for\u00e7ado","enabled":"habilitado","disabled":"desabilitado","Sun":"Dom","Mon":"Seg","Tue":"Ter","Wed":"Qua","Thu":"Qui","Fri":"Sex","Sat":"Sab","Catalog":"Cat\u00e1logo","Submit":"Enviar","Quick reply":"Resposta r\u00e1pida","Posting mode: Replying to >>{0}<\/small>":"Modo de resposta: Respondendo a >>{0}<\/small>","Return":"Voltar","Expand all images":"Expandir todas as imagens","Hello!":"Ol\u00e1!","{0} users":"{0} usu\u00e1rios","(hide threads from this board)":"(esconder threads desta board)","(show threads from this board)":"(mostrar threads desta board)","No more threads to display":"Sem mais threads para mostrar","Loading...":"Carregando...","Save as original filename":"Salvar com nome de arquivo original","Reported post(s).":"Post(s) denunciado(s).","An unknown error occured!":"Ocorreu um erro desconhecido!","Something went wrong... An unknown error occured!":"Algo deu errado ... Ocorreu um erro desconhecido!","Working...":"Trabalhando...","Posting... (#%)":"Enviando... (#%)","Posted...":"Enviado...","An unknown error occured when posting!":"Ocorreu um erro desconhecido ao postar!","Posting...":"Postando...","Upload URL":"URL de upload","Spoiler Image":"Imagem Spoiler","Comment":"Coment\u00e1rio","Quick Reply":"Resposta r\u00e1pida","Stop watching this thread":"Parar de assistir esta thread","Watch this thread":"Assistir esta thread","Unpin this board":"Desafixar esta board","Pin this board":"Fixar esta board","Stop watching this board":"Parar de assistir esta board","Watch this board":"Assistir esta board","Click on any image on this site to load it into oekaki applet":"Clique em qualquer imagem neste site para carreg\u00e1-lo no miniaplicativo oekaki","Sunday":"Domingo","Monday":"Segunda","Tuesday":"Ter\u00e7a","Wednesday":"Quarta","Thursday":"Quinta","Friday":"Sexta","Saturday":"Sabado","January":"Janeiro","February":"Fevereiro","March":"Mar\u00e7o","April":"Abril","May":"Maio","June":"Junho","July":"Julho","August":"Agosto","September":"Setembro","October":"Outubro","November":"Novembro","December":"Dezembro","Jan":"Jan","Feb":"Fev","Mar":"Mar","Apr":"Abr","Jun":"Jun","Jul":"Jul","Aug":"Ago","Sep":"Set","Oct":"Out","Nov":"Nov","Dec":"Dez","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Seu browser n\u00e3o suporta videos em HTML5.","[play once]":"[ver uma vez]","[loop]":"[vez repetidamente]","WebM Settings":"Configura\u00e7\u00f5es WebM","Expand videos inline":"Expandir v\u00eddeos no lugar da miniatura","Play videos on hover":"Reproduz v\u00eddeos em foco","Default volume":"Volume padr\u00e3o","Tree view":"Lista em \u00e1rvore","Shrink all images":"Encolher todas as imagens","Animate GIFs":"Animar GIFs","Unanimate GIFs":"Desanimar GIFs","WebM":"WebM","No new posts.":"Sem novas mensagens.","No new threads.":"Sem novos t\u00f3picos.","There are {0} new threads.":"Existem {0} novos t\u00f3picos.","There are {0} new posts in this thread.":"Existem {0} novas mensagens neste t\u00f3pico.","Options":"Op\u00e7\u00f5es","General":"Geral","Storage: ":"Armazenamento:","Export":"Exportar","Import":"Importar","Paste your storage data":"Colar seus dados de armazenamento","Erase":"Apagar","":"Tenha um \"backup\" do seu armazenamento em algum outro lugar,nj\u00e1 que bagun\u00e7ar aqui pode inutilizar o website.","User CSS":"CSS de usu\u00e1rio","Update custom CSS":"Atualizar CSS personalizado","Enter here your own CSS rules...":"Coloque aqui suas pr\u00f3prias regras de CSS...","You can include CSS files from remote servers, for example:":"Voc\u00ea pode incluir CSS de servidores remotos, por exemplo:","User JS":"JS de usu\u00e1rio","Update custom Javascript":"Atualizar Javascript personalizado","Enter here your own Javascript code...":"Insira aqui o seu pr\u00f3prio c\u00f3digo Javascript...","You can include JS files from remote servers, for example:":"Voc\u00ea pode incluir arquivos JS de servidores remotos, por exemplo:"}; \ No newline at end of file diff --git a/inc/locale/pt_BR/LC_MESSAGES/javascript.po b/inc/locale/pt_BR/LC_MESSAGES/javascript.po index 65bb3309..5bd420db 100644 --- a/inc/locale/pt_BR/LC_MESSAGES/javascript.po +++ b/inc/locale/pt_BR/LC_MESSAGES/javascript.po @@ -5,13 +5,14 @@ # Translators: # anaodev , 2014 # hitmonkey , 2014 +# Thassae Santos , 2014 # anaodev , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -121,7 +122,7 @@ msgid "Delete" msgstr "Deletar" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Motivo" @@ -216,43 +217,45 @@ msgid "disabled" msgstr "desabilitado" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Dom" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Seg" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Ter" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Qua" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Qui" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Sex" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "Sab" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Catálogo" @@ -320,6 +323,7 @@ msgstr "Sem mais threads para mostrar" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Carregando..." @@ -436,139 +440,140 @@ msgstr "Assistir esta board" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Clique em qualquer imagem neste site para carregá-lo no miniaplicativo oekaki" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Domingo" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Segunda" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Terça" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Quarta" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Quinta" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Sexta" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Sabado" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Janeiro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Fevereiro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Março" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Abril" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Maio" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Junho" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Julho" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Agosto" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Setembro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Outubro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Novembro" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Dezembro" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Fev" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Abr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jun" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Jul" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Ago" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Set" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Out" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dez" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -604,118 +609,242 @@ msgstr "Volume padrão" #: ../../../../js/treeview.js:18 msgid "Tree view" -msgstr "" +msgstr "Lista em árvore" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" -msgstr "" +msgstr "Encolher todas as imagens" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" -msgstr "" +msgstr "Animar GIFs" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" -msgstr "" +msgstr "Desanimar GIFs" #: ../../../../js/webm-settings.js:41 msgid "WebM" -msgstr "" +msgstr "WebM" #: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 msgid "No new posts." -msgstr "" +msgstr "Sem novas mensagens." #: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 msgid "No new threads." -msgstr "" +msgstr "Sem novos tópicos." #: ../../../../js/live-index.js:72 #, python-brace-format msgid "There are {0} new threads." -msgstr "" +msgstr "Existem {0} novos tópicos." #: ../../../../js/live-index.js:83 #, python-brace-format msgid "There are {0} new posts in this thread." -msgstr "" +msgstr "Existem {0} novas mensagens neste tópico." #: ../../../../js/options.js:106 msgid "Options" -msgstr "" +msgstr "Opções" #: ../../../../js/options/general.js:15 msgid "General" -msgstr "" +msgstr "Geral" #: ../../../../js/options/general.js:18 msgid "Storage: " -msgstr "" +msgstr "Armazenamento:" #: ../../../../js/options/general.js:21 msgid "Export" -msgstr "" +msgstr "Exportar" #: ../../../../js/options/general.js:27 msgid "Import" -msgstr "" +msgstr "Importar" #: ../../../../js/options/general.js:28 msgid "Paste your storage data" -msgstr "" +msgstr "Colar seus dados de armazenamento" #: ../../../../js/options/general.js:40 msgid "Erase" -msgstr "" +msgstr "Apagar" #: ../../../../js/options/general.js:41 msgid "" "Are you sure you want to erase your storage? This involves your hidden " "threads, watched threads, post password and many more." -msgstr "" +msgstr "Tem certeza que você deseja apagar seu armazenamento? Isso envolve seus tópicos escondidos, tópicos monitorados, senhas e muito mais." #: ../../../../js/options/user-css.js:14 msgid "User CSS" -msgstr "" +msgstr "CSS de usuário" #: ../../../../js/options/user-css.js:23 msgid "Update custom CSS" -msgstr "" +msgstr "Atualizar CSS personalizado" #: ../../../../js/options/user-css.js:45 msgid "Enter here your own CSS rules..." -msgstr "" +msgstr "Coloque aqui suas próprias regras de CSS..." #: ../../../../js/options/user-css.js:46 msgid "" "If you want to make a redistributable style, be sure to\n" " have a Yotsuba B theme selected." -msgstr "" +msgstr "Se você quer fazer um estilo para distribuir, certifique-se\nde ter um tema Yotsuba B selecionado." #: ../../../../js/options/user-css.js:47 msgid "You can include CSS files from remote servers, for example:" -msgstr "" +msgstr "Você pode incluir CSS de servidores remotos, por exemplo:" #: ../../../../js/options/user-js.js:14 msgid "User JS" -msgstr "" +msgstr "JS de usuário" #: ../../../../js/options/user-js.js:23 msgid "Update custom Javascript" -msgstr "" +msgstr "Atualizar Javascript personalizado" #: ../../../../js/options/user-js.js:54 msgid "Enter here your own Javascript code..." -msgstr "" +msgstr "Insira aqui o seu próprio código Javascript..." #: ../../../../js/options/user-js.js:55 msgid "" "Have a backup of your storage somewhere, as messing here\n" " may render you this website unusable." -msgstr "" +msgstr "Tenha um \"backup\" do seu armazenamento em algum outro lugar,\njá que bagunçar aqui pode inutilizar o website." #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" +msgstr "Você pode incluir arquivos JS de servidores remotos, por exemplo:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" msgstr "" diff --git a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo index fdf05195..71a160c1 100644 Binary files a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo and b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po index 0b4a240c..8ed6ea59 100644 --- a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po @@ -5,13 +5,14 @@ # Translators: # anaodev , 2014 # hitmonkey , 2014 +# Thassae Santos , 2014 # anaodev , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -29,11 +30,13 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "segundos" msgstr[1] "segundos" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -43,11 +46,13 @@ msgstr[1] "segundos" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "segundos" msgstr[1] "minutos" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -57,11 +62,13 @@ msgstr[1] "minutos" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "hora" msgstr[1] "horas" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -71,11 +78,13 @@ msgstr[1] "horas" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "dia" msgstr[1] "dias" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -85,6 +94,7 @@ msgstr[1] "dias" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "semana" @@ -99,6 +109,7 @@ msgstr[1] "semanas" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "ano" @@ -108,7 +119,7 @@ msgstr[1] "anos" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Banido!" @@ -122,6 +133,7 @@ msgstr "Banido!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Anterior" @@ -135,7 +147,8 @@ msgstr "Anterior" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Proximo" @@ -226,7 +239,8 @@ msgstr "Mover resposta para outra board" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Editar mensagem" @@ -323,6 +337,7 @@ msgstr "Mover tópico para outra board" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Você foi silenciado por conteúdo repetido." @@ -334,6 +349,7 @@ msgstr "Você foi silenciado por conteúdo repetido." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Novo tópico" @@ -341,6 +357,7 @@ msgstr "Novo tópico" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Responder" @@ -349,6 +366,7 @@ msgstr "Responder" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -374,6 +392,7 @@ msgstr "Lurke mais antes de postar." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Você não parece humano." @@ -381,6 +400,7 @@ msgstr "Você não parece humano." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Seu browser enviou um referial HTTP inválido ou não enviou o referencial." @@ -388,6 +408,7 @@ msgstr "Seu browser enviou um referial HTTP inválido ou não enviou o referenci #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "O campo %s é longo demais." @@ -396,6 +417,7 @@ msgstr "O campo %s é longo demais." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "O corpo do texto é longo demais." @@ -403,6 +425,7 @@ msgstr "O corpo do texto é longo demais." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "O corpo do texto é pequeno demais ou inexistente." @@ -410,6 +433,7 @@ msgstr "O corpo do texto é pequeno demais ou inexistente." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Você deve fazer upload de uma imagem." @@ -417,6 +441,7 @@ msgstr "Você deve fazer upload de uma imagem." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "O servidor não conseguiu processar seu upload." @@ -424,6 +449,7 @@ msgstr "O servidor não conseguiu processar seu upload." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Formato de arquivo não aceito" @@ -431,6 +457,7 @@ msgstr "Formato de arquivo não aceito" #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Board inválida!" @@ -438,6 +465,7 @@ msgstr "Board inválida!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "O tópico especificado não existe.." @@ -445,6 +473,7 @@ msgstr "O tópico especificado não existe.." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Tópico trancado, você não pode responde-lo." @@ -452,6 +481,7 @@ msgstr "Tópico trancado, você não pode responde-lo." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "O tópico atingiu o limite de respostas." @@ -459,6 +489,7 @@ msgstr "O tópico atingiu o limite de respostas." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "O tópico alcançou o limite máximo de imagens" @@ -466,6 +497,7 @@ msgstr "O tópico alcançou o limite máximo de imagens" #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Você não escreveu uma mensagem." @@ -473,6 +505,7 @@ msgstr "Você não escreveu uma mensagem." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Flood detectado; Sua mensagem foi descartada." @@ -480,6 +513,7 @@ msgstr "Flood detectado; Sua mensagem foi descartada." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Sua requisição parece automatizada; Mensagem descartada." @@ -487,6 +521,7 @@ msgstr "Sua requisição parece automatizada; Mensagem descartada." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Conteudo não original!" @@ -494,6 +529,7 @@ msgstr "Conteudo não original!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Conteudo não original! Você está impedido de postar por %d segundos." @@ -502,6 +538,7 @@ msgstr "Conteudo não original! Você está impedido de postar por %d segundos." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Você está impedido de postar! Expira em %d segundos." @@ -510,6 +547,7 @@ msgstr "Você está impedido de postar! Expira em %d segundos." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Seu IP está listado em %s." @@ -518,6 +556,7 @@ msgstr "Seu IP está listado em %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Links demais; Flood detectado." @@ -525,6 +564,7 @@ msgstr "Links demais; Flood detectado." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Citações demais; Post descartado." @@ -532,6 +572,7 @@ msgstr "Citações demais; Post descartado." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Links entre boards demais; Post descartado." @@ -539,6 +580,7 @@ msgstr "Links entre boards demais; Post descartado." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Você não selecionou nada para deletar." @@ -546,6 +588,7 @@ msgstr "Você não selecionou nada para deletar." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Você não selecionou nada para denunciar." @@ -553,6 +596,7 @@ msgstr "Você não selecionou nada para denunciar." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Você não pode denunciar tantas mensagens ao mesmo tempo." @@ -560,6 +604,7 @@ msgstr "Você não pode denunciar tantas mensagens ao mesmo tempo." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Senha incorreta…" @@ -567,6 +612,7 @@ msgstr "Senha incorreta…" #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Imagem inválida." @@ -574,6 +620,7 @@ msgstr "Imagem inválida." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Extenção de arquivo desconhecida." @@ -581,6 +628,7 @@ msgstr "Extenção de arquivo desconhecida." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Tamanho maximo de arquivos: %maxsz% bytes
O tamanho do seu arquivo: %filesz% bytes" @@ -588,6 +636,7 @@ msgstr "Tamanho maximo de arquivos: %maxsz% bytes
O tamanho do seu arquivo: % #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Seu arquivo é grande demais." @@ -595,6 +644,7 @@ msgstr "Seu arquivo é grande demais." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "O arquivo já existe!" @@ -603,6 +653,7 @@ msgstr "O arquivo já existe!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "O arquivo já existe neste tópico!" @@ -611,6 +662,7 @@ msgstr "O arquivo já existe neste tópico!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Você terá que esperar %s segundos antes de deletar isso." @@ -619,6 +671,7 @@ msgstr "Você terá que esperar %s segundos antes de deletar isso." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "Exploit XSS do tipo MIME (IE) detectado; mensagem descartada." @@ -626,6 +679,7 @@ msgstr "Exploit XSS do tipo MIME (IE) detectado; mensagem descartada." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "Não foi possivel processar a URL do video que você tentou integrar." @@ -633,6 +687,7 @@ msgstr "Não foi possivel processar a URL do video que você tentou integrar." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Você errou o codigo de verificação." @@ -641,6 +696,7 @@ msgstr "Você errou o codigo de verificação." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -651,6 +707,7 @@ msgstr "Você só tem permissão para retirar o ban de %s usuários por vez, e v #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Login e/ou senha inválido(s)." @@ -658,6 +715,7 @@ msgstr "Login e/ou senha inválido(s)." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Você não é mod…" @@ -665,6 +723,7 @@ msgstr "Você não é mod…" #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -674,6 +733,7 @@ msgstr "Login e/ou senha inválido(s). Seu login deve ter sido mudado ou removid #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Cookies inválidos ou mal formados." @@ -681,6 +741,7 @@ msgstr "Cookies inválidos ou mal formados." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Seu browser não enviou nada, quando ele deveria." @@ -688,6 +749,7 @@ msgstr "Seu browser não enviou nada, quando ele deveria." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "O campo %s é necessário." @@ -696,6 +758,7 @@ msgstr "O campo %s é necessário." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "O campo %s é inválido." @@ -704,6 +767,7 @@ msgstr "O campo %s é inválido." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "A board %s já existe." @@ -712,6 +776,7 @@ msgstr "A board %s já existe." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Você não tem permissão para fazer isso." @@ -719,6 +784,7 @@ msgstr "Você não tem permissão para fazer isso." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Esse post não existe..." @@ -726,6 +792,7 @@ msgstr "Esse post não existe..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Pagina não encontrada." @@ -733,6 +800,7 @@ msgstr "Pagina não encontrada." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Este mod já existe!" @@ -741,6 +809,7 @@ msgstr "Este mod já existe!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Este tema não existe!" @@ -748,6 +817,7 @@ msgstr "Este tema não existe!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Token de segurança inválido! Retorne e tente novamente" @@ -761,6 +831,7 @@ msgstr "Token de segurança inválido! Retorne e tente novamente" #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "O USUÁRIO FOI BANIDO POR ESTA MENSAGEM" @@ -847,10 +918,14 @@ msgstr "Log da moderação" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -859,11 +934,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Novo ban" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Lista de bans" @@ -871,17 +950,20 @@ msgstr "Lista de bans" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Mover resposta" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Board alvo e fonte são as mesmas." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Impossivel de mover o tópico; Só existe uma board." @@ -889,18 +971,20 @@ msgstr "Impossivel de mover o tópico; Só existe uma board." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Mover tópico" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Editar usuário" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Administrar usuários" @@ -909,11 +993,13 @@ msgstr "Administrar usuários" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Nova MP para" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Mensagem pessoal" @@ -921,6 +1007,7 @@ msgstr "Mensagem pessoal" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Entrada de MP" @@ -931,12 +1018,14 @@ msgstr "Entrada de MP" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Reconstruir" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Fila de denuncias" @@ -944,55 +1033,66 @@ msgstr "Fila de denuncias" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Editor de configurações" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Diretório de temas não existe!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Não é possivel abrir diretorio de temas; reveja suas permissões." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Administrar temas" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Tema instalado: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Configurando tema: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Reconstruir tema: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug: Anti-spam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug: Mensagens recentes" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug: SQL" @@ -1060,6 +1160,10 @@ msgstr "Deletar Mensagem" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1094,6 +1198,8 @@ msgstr "Arquivo" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1173,6 +1279,12 @@ msgstr "Senha" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1245,6 +1357,8 @@ msgstr "sem assunto" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "por" @@ -1295,6 +1409,7 @@ msgstr "Imagem Spoiler" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Responder" @@ -1306,6 +1421,7 @@ msgstr "Responder" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Ver todos" @@ -1317,6 +1433,7 @@ msgstr "Ver todos" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Ultima mensagem" @@ -1330,6 +1447,7 @@ msgstr[1] "Últimas %count% Mensagens" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 mensagem" @@ -1344,6 +1462,8 @@ msgstr[1] "%count% mensagens" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "e" @@ -1355,6 +1475,7 @@ msgstr "e" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 resposta com imagem" @@ -1368,6 +1489,7 @@ msgstr[1] "%count% respostas com imagem" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "omitidas. Clique em responder para visualizar." @@ -1396,6 +1518,9 @@ msgstr "omitidas. Clique em responder para visualizar." #. line 7 #. 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 @@ -1419,6 +1544,8 @@ msgstr "Nome" #. 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 @@ -1453,6 +1580,9 @@ msgstr "E-mail" #. line 23 #. line 12 #. 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 @@ -1481,6 +1611,8 @@ msgstr "Atualizar" #. 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 @@ -1572,6 +1704,10 @@ msgstr "Sinalizações" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1616,6 +1752,10 @@ msgstr "Fixar" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1660,6 +1800,10 @@ msgstr "Trancar" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1758,6 +1902,12 @@ msgstr "Sem resultados." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1766,38 +1916,43 @@ msgstr "Sem resultados." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Procurar" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Apelo do banimento não encontrado!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Apelos a banimento" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Novo usuário" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Impossível promover/rebaixar usuário." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1816,6 +1971,9 @@ msgstr "Seu código contém erros de sintaxe PHP. Por favor volte e corrija-os. #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1881,7 +2039,8 @@ msgstr "Anti-spam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Mensagens recentes" @@ -2026,6 +2185,15 @@ msgstr "Postar nova notícia" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2065,6 +2233,9 @@ msgstr "Equipe" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2084,6 +2255,8 @@ msgstr "Nota" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2126,6 +2299,8 @@ msgstr "Nova nota" #. 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" @@ -2220,6 +2395,15 @@ msgstr "sem razão especificada" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2275,6 +2459,9 @@ msgstr "todas as boards" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2313,6 +2500,9 @@ msgstr "Configurar" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2359,6 +2549,9 @@ msgstr "nunca" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2403,6 +2596,10 @@ msgstr "Remover expulsão" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2442,6 +2639,11 @@ msgstr "Tempo" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2503,6 +2705,8 @@ msgstr "Nova Expulsão" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2559,6 +2763,7 @@ msgstr "Duração" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Remover bans selecionados" @@ -2576,6 +2781,9 @@ msgstr "Remover bans selecionados" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2631,7 +2839,7 @@ msgstr "Falha ao redesenhar a imagem!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Falha ao redimensionar a imagem!" @@ -2665,41 +2873,54 @@ msgid "Your ban was filed on" msgstr "Sua expulsão foi feita as" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "expirou desde então. recarregue a pagina para continuar." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "expira" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "por hora, que é as" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "não vai expirar" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Seu endereço de IP é" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Você foi banido pela seguinte mensagem as" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Você enviou um apelo para que este banimento as" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Ele ainda está pendente" @@ -2721,21 +2942,28 @@ msgstr "Ele ainda está pendente" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Você apelou seu ban as" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "e foi rejeitado. Você não pode apelar esta expulsão novamente." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2759,10 +2987,14 @@ msgstr "Você excedeu o limite de apelos. Você não pode apelar por este ban no #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "e foi negado." @@ -2784,21 +3016,28 @@ msgstr "e foi negado." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Você ainda pode apelar por esta banimento. Digite abaixo suas razões para recorrer." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Seu ultimo apelo deste banimento foi no" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Você pode apelar por este banimento. Digite seus motivos abaixo." @@ -2817,6 +3056,10 @@ msgstr "Você pode apelar por este banimento. Digite seus motivos abaixo." #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2885,6 +3128,8 @@ msgstr "tranca a thread; Responde-a com um link." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3030,13 +3275,13 @@ msgstr "Ver mais logs deste usuário." #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 msgid "Flag" -msgstr "" +msgstr "Sinalizar" #. line 87 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 msgid "None" -msgstr "" +msgstr "Nenhum" #. When moving a thread to another board and choosing to keep a "shadow #. thread", an automated post (with @@ -3044,25 +3289,27 @@ msgstr "" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." -msgstr "" +msgstr "Movido para %s." #: ../../../../templates/themes/recent/theme.php:50 msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "Não posso construir o tema RecentPosts porque não há board algum para ser utilizado." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "Você tentou fazer upload de muitas imagens!" #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Arquivo de spoiler" #. line 26 #. line 35 @@ -3070,6 +3317,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3084,7 +3335,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "Última resposta" #. line 28 #. line 37 @@ -3092,12 +3343,16 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 msgid "Creation date" -msgstr "" +msgstr "Data de criação" #. line 29 #. line 38 @@ -3105,12 +3360,16 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 msgid "Reply count" -msgstr "" +msgstr "Contagem de respostas" #. line 30 #. line 39 @@ -3118,102 +3377,128 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Random" -msgstr "" +msgstr "Aleatório" #. line 33 #. line 26 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 msgid "Sort by" -msgstr "" +msgstr "Ordenar por" #. line 42 #. line 34 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 msgid "Image size" -msgstr "" +msgstr "Tamanho da imagem" #. line 44 #. line 37 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 msgid "Small" -msgstr "" +msgstr "Pequeno" #. line 45 #. line 38 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 msgid "Large" -msgstr "" +msgstr "Médio" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "ID do post" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "Tópico alvo" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "Exclusão de post não permitida!" #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "Método de determinação de tamanho de arquivo não reconhecido." #: ../../../../post.php:519 msgid "Invalid flag selection!" -msgstr "" +msgstr "Seleção inválida de sinalização!" #: ../../../../post.php:631 ../../../../post.php:633 msgid "exiftool failed!" -msgstr "" +msgstr "falha na exiftool!" #: ../../../../post.php:641 ../../../../post.php:643 msgid "Could not auto-orient image!" -msgstr "" +msgstr "Não foi possível auto-orientar a imagem!" #: ../../../../post.php:695 ../../../../post.php:697 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "Não foi possível extrair os metadados EXIF!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." -msgstr "" +msgstr "Houve um problema no processamento do seu webm." -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." -msgstr "" +msgstr "Webm inválido." -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." -msgstr "" +msgstr "O webm contém um áudio ou outro tipo de stream adicional." -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " -msgstr "" +msgstr "O webm é maior que" #. line 48 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 msgid "Go to top" -msgstr "" +msgstr "Vá para o topo" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 msgid "Don't show my flag" -msgstr "" +msgstr "Não mostre meu sinal" #. line 36 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" +msgstr "Muito pequeno" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" msgstr "" diff --git a/inc/locale/pt_PT/LC_MESSAGES/javascript.js b/inc/locale/pt_PT/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..e65be975 --- /dev/null +++ b/inc/locale/pt_PT/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Estilo","File":"Ficheiro","hide":"esconder","show":"mostrar","Show locked threads":"Mostrar threads trancadas","Hide locked threads":"Esconder threads trancadas","URL":"URL","Select":"Seleccionar","Remote":"Remoto","Embed":"Embutir","Oekaki":"Oekaki","hidden":"escondido","Show images":"Mostrar imagens","Hide images":"Esconder imagens","Password":"Palavra-passe","Delete file only":"Eliminar s\u00f3 o ficheiro","Delete":"Eliminar","Reason":"Raz\u00e3o","Report":"Reportar","Click reply to view.":"Clique em responder para ver","Click to expand":"Clique para expandir","Hide expanded replies":"Esconder respostas expandidas","Brush size":"Tamanho do pincel","Set text":"Definir texto","Clear":"Limpar","Save":"Guardar","Load":"Abrir","Toggle eraser":"Mudar borracha","Get color":"Buscar cor","Fill":"Encher","Use oekaki instead of file?":"Usar oekaki em v\u00eaz de ficheiro?","Edit in oekaki":"Editar em oekaki","Enter some text":"Introduz texto","Enter font or leave empty":"Introduz tipo de letra ou deixe vazio","Forced anonymity":"For\u00e7ar anonimato","enabled":"ativado","disabled":"desativado","Sun":"Dom","Mon":"Seg","Tue":"Ter","Wed":"Qua","Thu":"Qui","Fri":"Sex","Sat":"Sab","Catalog":"Catalogo","Submit":"Submeter","Quick reply":"Resposta r\u00e1pida","Posting mode: Replying to >>{0}<\/small>":"Modo de resposta: Respondendo a >>{0}<\/small>","Return":"Voltar","Expand all images":"Expandir todas as imagens","Hello!":"Ola!","{0} users":"{0} utilizadores","(hide threads from this board)":"(esconder threads desta board)","(show threads from this board)":"(mostrar threads desta board)","No more threads to display":"N\u00e3o h\u00e1 mais threads para mostrar","Loading...":"Carregando...","Save as original filename":"Guardar como ficheiro original","Reported post(s).":"Post(s) reportados","An unknown error occured!":"Um erro desconhecio aconteceu!","Something went wrong... An unknown error occured!":"Alguma coisa correu mal... Um erro desconhecido aconteceu!","Working...":"A trabalhar...","Posting... (#%)":"A enviar... (#%)","Posted...":"Enviado...","An unknown error occured when posting!":"Um erro desconhecido aconteceu ao enviar!","Posting...":"A enviar...","Upload URL":"URL de upload","Spoiler Image":"Imagem spoiler","Comment":"Coment\u00e1rio","Quick Reply":"Resposta r\u00e1pida","Stop watching this thread":"Parar de v\u00ear esta thread","Watch this thread":"Ver esta thread","Unpin this board":"Desfixar esta board","Pin this board":"Fixar esta board","Stop watching this board":"Parar de ver esta board","Watch this board":"Ver esta board","Click on any image on this site to load it into oekaki applet":"Clique numa imagem neste site para a carregar no oekaki applet","Sunday":"Domingo","Monday":"Segunda","Tuesday":"Ter\u00e7a","Wednesday":"Quarta","Thursday":"Quinta","Friday":"Sexta","Saturday":"S\u00e1bado","January":"Janeiro","February":"Fevereiro","March":"Mar\u00e7o","April":"Abril","May":"Maio","June":"Junho","July":"Julho","August":"Agosto","September":"Setembro","October":"Outubro","November":"Novembro","December":"Dezembro","Jan":"Jan","Feb":"Fev","Mar":"Mar","Apr":"Abr","Jun":"Jun","Jul":"Jul","Aug":"Ago","Sep":"Sep","Oct":"Out","Nov":"Nov","Dec":"Dez","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"O seu browser n\u00e3o suporta video HTML5","[play once]":"[ver uma vez]","[loop]":"[ver em loop]","WebM Settings":"Defini\u00e7\u00f5es WebM","Expand videos inline":"Expandir v\u00eddeos no lugar da miniatura","Play videos on hover":"Ver v\u00eddeos em foco","Default volume":"Volume padr\u00e3o","Tree view":"Vista em \u00e1rvore","Shrink all images":"Encolher todas as imagens","Animate GIFs":"Animar GIFs","Unanimate GIFs":"Desanimar GIFs"}; \ No newline at end of file diff --git a/inc/locale/pt_PT/LC_MESSAGES/javascript.po b/inc/locale/pt_PT/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..02945eb0 --- /dev/null +++ b/inc/locale/pt_PT/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Rafael , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "Ficheiro" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "esconder" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "Mostrar threads trancadas" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "Esconder threads trancadas" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Seleccionar" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "Remoto" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "Embutir" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "escondido" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "Mostrar imagens" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Esconder imagens" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Palavra-passe" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Eliminar só o ficheiro" + +#: ../../../../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 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Razão" + +#: ../../../../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 "Clique em responder para ver" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Clique para expandir" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "Esconder respostas expandidas" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Tamanho do pincel" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "Definir texto" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Limpar" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Guardar" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Abrir" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Mudar borracha" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Buscar cor" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Encher" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Usar oekaki em vêz de ficheiro?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Editar em oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Introduz texto" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Introduz tipo de letra ou deixe vazio" + +#: ../../../../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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +msgid "Forced anonymity" +msgstr "Forçar 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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +msgid "enabled" +msgstr "ativado" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "desativado" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "Dom" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "Seg" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "Ter" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "Qua" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "Qui" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "Sex" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "Sab" + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Catalogo" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Submeter" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Resposta 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 "Modo de resposta: Respondendo a >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Voltar" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Expandir todas as imagens" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Ola!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} utilizadores" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +msgid "(hide threads from this board)" +msgstr "(esconder threads desta board)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(mostrar threads desta board)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "Não há mais threads para mostrar" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +msgstr "Carregando..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Guardar como ficheiro original" + +#: ../../../../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 "Um erro desconhecio aconteceu!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Alguma coisa correu mal... Um erro desconhecido aconteceu!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "A trabalhar..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "A enviar... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Enviado..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Um erro desconhecido aconteceu ao enviar!" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "A enviar..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "URL de upload" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Imagem spoiler" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "Comentário" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +msgid "Quick Reply" +msgstr "Resposta 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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Stop watching this thread" +msgstr "Parar de vêr esta thread" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Watch this thread" +msgstr "Ver esta thread" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Unpin this board" +msgstr "Desfixar esta board" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Pin this board" +msgstr "Fixar esta board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Stop watching this board" +msgstr "Parar de ver esta board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "Ver esta board" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Clique numa imagem neste site para a carregar no oekaki applet" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Domingo" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Segunda" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Terça" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Quarta" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Quinta" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "Sexta" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Sábado" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "Janeiro" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "Fevereiro" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "Março" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "Abril" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "Maio" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "Junho" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "Julho" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "Agosto" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "Setembro" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "Outubro" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "Novembro" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "Dezembro" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "Jan" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "Fev" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "Abr" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "Jun" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "Jul" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "Ago" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "Out" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "Dez" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "O seu browser não suporta video HTML5" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[ver uma vez]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[ver em loop]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "Definições WebM" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "Expandir vídeos no lugar da miniatura" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "Ver vídeos em foco" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "Volume padrão" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "Vista em árvore" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "Encolher todas as imagens" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "Animar GIFs" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "Desanimar GIFs" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "" + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "" + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "" + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "" + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/pt_PT/LC_MESSAGES/tinyboard.mo b/inc/locale/pt_PT/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..6f5fa764 Binary files /dev/null and b/inc/locale/pt_PT/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/pt_PT/LC_MESSAGES/tinyboard.po b/inc/locale/pt_PT/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..7d0baf4b --- /dev/null +++ b/inc/locale/pt_PT/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3501 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Rafael , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_PT/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "dia" +msgstr[1] "dias" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +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 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "ano" +msgstr[1] "anos" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "Banido!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "Próximo" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "Erro" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "Aconteceu um erro." + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "Login" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "Mensagem demasiado grande. Clique aqui para ver o 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 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "Banir" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "Banir & Eliminar" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "Eliminar ficheiro" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "Tem a certeza que quer eliminar este ficheiro?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "Ficheiro 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 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "Tem a certeza que quer Spoiler este ficheiro?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "Mover resposta para outra board" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "Editar mensagem" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "Eliminar" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "Tem a certeza que quer eliminar isto?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "Eliminar todos as mensagem deste IP" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "Tem a certeza que quer eliminar todas as mensagem deste IP?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "Eliminar todas as mensagens deste IP em todas as boards" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "Tem a certeza que quer eliminar todas as mensagens deste IP e em todas as boards?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "Tirar sticky da thread" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "Fazer a thread sticky" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "Deixar a thread ser bumpada" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "Não deixar a thread ser bumpada" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "Desbloquear thread" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "Bloquear thread" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +msgid "Move thread to another board" +msgstr "Mover thread para outra board" + +#. 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 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "Foi silenciado por conteúdo banal, ou não original." + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "Novo Topico" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "Nova Resposta" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "Todas as marcas registadas, direitos de autor, comentários e imagens nesta página são de propriedade e são de responsabilidade dos seus respectivos proprietários." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Lurke mais antes de responder." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "Voce parece um bot." + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "O seu browser enviou um referer HTTP inválido ou nenhum." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "A parte de %s era muito longo" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "O corpo era muito longo" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "O corpo era muito curto ou estava vazio" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "Tem que fazer upload de uma imagem" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "O servidor falhou o seu upload." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "Formato de imagem não suportado." + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "Board invalido!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "Thread especifica não existe" + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "Thread bloqueada. Não pode responder neste momento." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "Thread chegou ao limite de respostas." + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "Thread chegou ao limite de imagens." + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "Não fez uma mensagem." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "Flood detectada; Mensagem descartada." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "O seu pedido parece automatizado; Mensagem descartada." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "Conteudo banal ou não original!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Conteudo banal! Foi silenciado por %d segundos." + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "Foi silenciado! Expira em %d segundos." + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "O seu IP está listado em %s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "Demasiados links; flood detectada." + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "Demasiadas citações; mensagem descartada." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "Demasiados links cruzados com outras boards; mensagem descartada." + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "Não selecionou nada para eliminar" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "Não selecionou nada para reportar." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "Não pode reportar tantas mensagens ao mesmo tempo" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "Password errada..." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "Imagem invalida." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "Extenção de ficheiro desconhecida." + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "Tamanho máximo de ficheiro: %maxsz% bytes
O tamanho do seu ficheiro: %filesz% bytes" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "O ficheiro é demasiado grande." + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "Esse ficheiro já existe!" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "Esse ficheiro já existe nesta thread!" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "Tem que esperar mais %s antes de eliminar isso." + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "MIME type detection XSS exploit (IE) detectado; mensagem descartada." + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "Não se percebe o URL do vídeo que tentou embutir." + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "Enganou-se a escrever a verificação." + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "Só pode desbanir %s utilizadores ao mesmo tempo. Tentou desbanir %u utilizadores." + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "Nome de utilizador ou password invalido/s" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "Não é um moderador..." + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "Utilizador e/ou password invalido/s. O seu utilizador pode ter sido eliminado ou mudado." + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "Cookies inválidos/mal-formados" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "O seu browser não submeteu um input quando devia." + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "O campo %s é requerido." + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "O campo %s estava invalido." + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "Já existe uma board %s." + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "Não tem permição para fazer isso" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "Essa mensagem não existe..." + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "Página não encontrada." + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "Esse moderador já existe!" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "Esse tema não existe!" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "Token de segurança invalido! Por favor volte atras e tente outra vez." + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "UTILIZADOR FOI BANIDO POR ESTA MENSAGEM" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "Confirmar açao" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "Não deu para encontrar a versão currente! (vêja .installed)" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "Painel de controlo" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "Não há boards para econtrar!" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "Resultados da pesquisa" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "Editar board" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "Não deu para abrir a board depois da criação." + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "Nova board" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "Quadro de avisos" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "Novidades" + +#: ../../../../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 "Diário de moderação" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +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 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "Novo ban" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "Lista de bans" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "Mover resposta" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "Board alvo e fonte são as mesmas." + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "Impossivel mover thread; só existe uma board." + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "Mover thread" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "Editar utilizador" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "Administrar utilizadores" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "Nova PM para" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "Mensagem privada" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "Caixa PM" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "Reconstruir" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "Lista de reportes" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "Editor de configurações" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "Diretorio de temas não existe!" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "Não é possivel abrir o diretorio de teams; reveja as permissões." + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "Administrar temas" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "Tema instalado: %s" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "Configurando tema: %s" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "Reconstruir tema: %s" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "Debug: Anti-spam" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "Debug: mensagens recentes" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "Debug: SQL" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "Erro de base de dados:" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "Banido?" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "Não está banido." + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "Voltar" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "Informação do erro" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "Eliminar Mensagem" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "Ficheiro" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "Password" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "Razão" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +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 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "Voltar ao painel de controle" + +#. 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 "Modo de mensagem: Resposta" + +#: ../../../../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 "Voltar" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "(Nenhuma novidade 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 "sem assunto" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +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 "em" + +#. 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 resposta" +msgstr[1] "%count% respostas" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "Ficheiro:" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "Imagem spoiler" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "Responder" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "Ver todo" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "Ultima 1 Mensagem" +msgstr[1] "Ultimas %count% Mensagens" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "1 mensagem" +msgstr[1] "%count% mensagens" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "e" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "1 resposta com imagem" +msgstr[1] "%count% respostas com imagem" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "omitidas. Clique em responder para ver." + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "Nome" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:44 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:88 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "Email" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "Assunto" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "Actualização" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "Comentário" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "" + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/ru_RU/LC_MESSAGES/javascript.po b/inc/locale/ru_RU/LC_MESSAGES/javascript.po index 71b3e30d..45b20f38 100644 --- a/inc/locale/ru_RU/LC_MESSAGES/javascript.po +++ b/inc/locale/ru_RU/LC_MESSAGES/javascript.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgid "Delete" msgstr "Удалить" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Причина" @@ -216,43 +216,45 @@ msgid "disabled" msgstr "отключено" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Вс" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Пн" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Вт" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Ср" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Чт" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Пт" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" 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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Каталог" @@ -320,6 +322,7 @@ msgstr "Нет больше тредов для отображения" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Загрузка..." @@ -436,139 +439,140 @@ msgstr "Следить за доской" msgid "Click on any image on this site to load it into oekaki applet" msgstr "Нажмите на любое изображение на этом сайте, чтобы загрузить его в oekaki" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Воскресенье" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Понедельник" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Вторник" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Среда" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Четверг" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Пятница" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Суббота" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Январь" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Февраль" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Март" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Апрель" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Май" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Июнь" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Июль" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Август" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Сентябрь" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Октябрь" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Ноябрь" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Декабрь" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Янв" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Фев" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Мар" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Апр" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Июн" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Июл" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Авг" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Сен" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Окт" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Ноя" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Дек" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "AM" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "PM" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "am" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "pm" @@ -607,16 +611,19 @@ msgid "Tree view" msgstr "Просмотр дерева" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "Сжать все изображения" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "Анимированная gif-ка" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "Не анимированная gif-ка" @@ -719,3 +726,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo index a8cff36c..bd36b523 100644 Binary files a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo and b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po index 867b6822..d30bba87 100644 --- a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -32,12 +32,14 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "секунда" msgstr[1] "секунды" msgstr[2] "секунд" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -47,12 +49,14 @@ msgstr[2] "секунд" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "минута" msgstr[1] "минуты" msgstr[2] "минут" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -62,12 +66,14 @@ msgstr[2] "минут" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "час" msgstr[1] "часов" msgstr[2] "часа" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -77,12 +83,14 @@ msgstr[2] "часа" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "день" msgstr[1] "дня" msgstr[2] "дней" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -92,6 +100,7 @@ msgstr[2] "дней" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "неделя" @@ -107,6 +116,7 @@ msgstr[2] "недель" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "год" @@ -117,7 +127,7 @@ msgstr[2] "лет" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Забанен!" @@ -131,6 +141,7 @@ msgstr "Забанен!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Предыдущий" @@ -144,7 +155,8 @@ msgstr "Предыдущий" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Следующий" @@ -235,7 +247,8 @@ msgstr "*** Переместить ответ на другую доску" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Редактировать пост" @@ -332,6 +345,7 @@ msgstr "Переместить тред в другую доску" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Вы получили мут за неоригинальный контент." @@ -343,6 +357,7 @@ msgstr "Вы получили мут за неоригинальный конт #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Новый тред" @@ -350,6 +365,7 @@ msgstr "Новый тред" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Новый ответ" @@ -358,6 +374,7 @@ msgstr "Новый ответ" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -383,6 +400,7 @@ msgstr "Луркай еще немного, прежде чем отправля #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Ты похож на бота." @@ -390,6 +408,7 @@ msgstr "Ты похож на бота." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Твой браузер послал ошибочный HTTP referer. Ну или совсем его не отправил." @@ -397,6 +416,7 @@ msgstr "Твой браузер послал ошибочный HTTP referer. Н #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "Поле %s слишком длинное." @@ -405,6 +425,7 @@ msgstr "Поле %s слишком длинное." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Содержимое очень большое." @@ -412,6 +433,7 @@ msgstr "Содержимое очень большое." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Содержимое очень короткое или отсутствует" @@ -419,6 +441,7 @@ msgstr "Содержимое очень короткое или отсутств #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Ты должен загрузить изображение." @@ -426,6 +449,7 @@ msgstr "Ты должен загрузить изображение." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Произошла ошибка при загрузке файла на сервер." @@ -433,6 +457,7 @@ msgstr "Произошла ошибка при загрузке файла на #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Не поддерживаемый формат изображения." @@ -440,6 +465,7 @@ msgstr "Не поддерживаемый формат изображения." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Неверная доска." @@ -447,6 +473,7 @@ msgstr "Неверная доска." #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Данного треда не существует." @@ -454,6 +481,7 @@ msgstr "Данного треда не существует." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Тред закрыт. Ты не можешь писать сюда." @@ -461,6 +489,7 @@ msgstr "Тред закрыт. Ты не можешь писать сюда." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Тред достиг максимального количества ответов." @@ -468,6 +497,7 @@ msgstr "Тред достиг максимального количества о #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Тред достиг максимального количества изображений." @@ -475,6 +505,7 @@ msgstr "Тред достиг максимального количества и #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Ты не можешь создать тред." @@ -482,6 +513,7 @@ msgstr "Ты не можешь создать тред." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Обнаружен флуд. Пост отклонен." @@ -489,6 +521,7 @@ msgstr "Обнаружен флуд. Пост отклонен." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Ваш запрос похож на автоматический. Пост отклонен." @@ -496,6 +529,7 @@ msgstr "Ваш запрос похож на автоматический. Пос #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Не оригинальный контент." @@ -503,6 +537,7 @@ msgstr "Не оригинальный контент." #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Не оригинальный контент. Кляп на %d секунд." @@ -511,6 +546,7 @@ msgstr "Не оригинальный контент. Кляп на %d секу #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Вы получили мут! Мут будет снят через %d секунд" @@ -519,6 +555,7 @@ msgstr "Вы получили мут! Мут будет снят через %d #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Ваш айпи адрес числится в %s." @@ -527,6 +564,7 @@ msgstr "Ваш айпи адрес числится в %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Слишком много ссылок. Обнаружен флуд." @@ -534,6 +572,7 @@ msgstr "Слишком много ссылок. Обнаружен флуд." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Слишком много цитат; Пост отклонён." @@ -541,6 +580,7 @@ msgstr "Слишком много цитат; Пост отклонён." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Слишком много отсылок на доски. Отклонено." @@ -548,6 +588,7 @@ msgstr "Слишком много отсылок на доски. Отклоне #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Ты не выбрал ничего для удаления." @@ -555,6 +596,7 @@ msgstr "Ты не выбрал ничего для удаления." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Ты ничего не выбрал для жалобы." @@ -562,6 +604,7 @@ msgstr "Ты ничего не выбрал для жалобы." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Вы не можете пожаловаться на столько постов за раз." @@ -569,6 +612,7 @@ msgstr "Вы не можете пожаловаться на столько по #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Ошибка пароля. " @@ -576,6 +620,7 @@ msgstr "Ошибка пароля. " #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Неверное изображение" @@ -583,6 +628,7 @@ msgstr "Неверное изображение" #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Неизвестное расширение файла." @@ -590,6 +636,7 @@ msgstr "Неизвестное расширение файла." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Максимальный размер файла: %maxsz% байт
А твой файл: %filesz% байт." @@ -597,6 +644,7 @@ msgstr "Максимальный размер файла: %maxsz% байт
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Этот файл слишком большой." @@ -604,6 +652,7 @@ msgstr "Этот файл слишком большой." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Этот файл уже существует!" @@ -612,6 +661,7 @@ msgstr "Этот файл уже существует!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Этот файл уже существует в этом треде." @@ -620,6 +670,7 @@ msgstr "Этот файл уже существует в эт #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Вам нужно подождать еще %s перед удалением" @@ -628,6 +679,7 @@ msgstr "Вам нужно подождать еще %s перед удалени #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "Обнаружен XSS (IE). Пост отклонен." @@ -635,6 +687,7 @@ msgstr "Обнаружен XSS (IE). Пост отклонен." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "Не могу понять, что за ссылку вы пытаетесь добавить" @@ -642,6 +695,7 @@ msgstr "Не могу понять, что за ссылку вы пытаете #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Вы ошиблись при вводе капчи." @@ -650,6 +704,7 @@ msgstr "Вы ошиблись при вводе капчи." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -660,6 +715,7 @@ msgstr "Вам разрешено разбанивать %s пользовате #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Ошибочный логин и\\или пароль." @@ -667,6 +723,7 @@ msgstr "Ошибочный логин и\\или пароль." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Ты не модератор..." @@ -674,6 +731,7 @@ msgstr "Ты не модератор..." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -683,6 +741,7 @@ msgstr "Неправильный логин или пароль. Ваш поль #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Неверные/испорченные куки." @@ -690,6 +749,7 @@ msgstr "Неверные/испорченные куки." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Твой браузер не отправляет нужных данных, а должен." @@ -697,6 +757,7 @@ msgstr "Твой браузер не отправляет нужных данн #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Необходимо заполнить поле %s" @@ -705,6 +766,7 @@ msgstr "Необходимо заполнить поле %s" #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Поле %s заполнено с ошибкой. " @@ -713,6 +775,7 @@ msgstr "Поле %s заполнено с ошибкой. " #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Доска %s уже существует." @@ -721,6 +784,7 @@ msgstr "Доска %s уже существует." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "У тебя нет прав для этого." @@ -728,6 +792,7 @@ msgstr "У тебя нет прав для этого." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Такого поста не существует." @@ -735,6 +800,7 @@ msgstr "Такого поста не существует." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Страница не найдена." @@ -742,6 +808,7 @@ msgstr "Страница не найдена." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Этот модератор уже есть!!" @@ -750,6 +817,7 @@ msgstr "Этот модератор уже есть!! #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Этой темы не существует." @@ -757,6 +825,7 @@ msgstr "Этой темы не существует." #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Ошибка безопасности. Вернись назад и попробуй снова." @@ -770,6 +839,7 @@ msgstr "Ошибка безопасности. Вернись назад и по #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "АВТОР ЭТОГО ПОСТА ЗАБЛОКИРОВАН" @@ -856,10 +926,14 @@ msgstr "Логи модерации" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -868,11 +942,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Забанить" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Банлист" @@ -880,17 +958,20 @@ msgstr "Банлист" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Переместить ответ" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Целевая и текущая доска одинаковы." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Невозможно переместить тред; здесь только одна доска." @@ -898,18 +979,20 @@ msgstr "Невозможно переместить тред; здесь тол #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Переместить тред" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Изменить пользователя" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Пользователи" @@ -918,11 +1001,13 @@ msgstr "Пользователи" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Новое ЛС для" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Личное сообщение" @@ -930,6 +1015,7 @@ msgstr "Личное сообщение" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "ЛС входящие" @@ -940,12 +1026,14 @@ msgstr "ЛС входящие" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Ребилд" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Очередь жалоб" @@ -953,55 +1041,66 @@ msgstr "Очередь жалоб" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Редактор настроек" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Директории с темами не существует!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Не получается открыть директорию с шаблонами; проверьте права доступа." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Управлять шаблонами" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Используемая тема: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Настроить тему: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Ребилд темы: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug: Анти-спам" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug: Recent posts" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug: SQL" @@ -1069,6 +1168,10 @@ msgstr "удалить пост" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1103,6 +1206,8 @@ msgstr "Файл" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1182,6 +1287,12 @@ msgstr "Пaроль" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1254,6 +1365,8 @@ msgstr "без темы" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "by" @@ -1305,6 +1418,7 @@ msgstr "Картинка-спойлер" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Ответить" @@ -1316,6 +1430,7 @@ msgstr "Ответить" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Показать все" @@ -1327,6 +1442,7 @@ msgstr "Показать все" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Последний пост" @@ -1341,6 +1457,7 @@ msgstr[2] "Последние %count% постов" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "%count% пост" @@ -1356,6 +1473,8 @@ msgstr[2] "%count% постов" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "и" @@ -1367,6 +1486,7 @@ msgstr "и" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "%count% ответ с картинкой" @@ -1381,6 +1501,7 @@ msgstr[2] "%count% ответов с картинкой" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "обрезан. Нажмите ответить, чтобы просмотреть полностью." @@ -1409,6 +1530,9 @@ msgstr "обрезан. Нажмите ответить, чтобы просмо #. line 7 #. 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 @@ -1432,6 +1556,8 @@ msgstr "Имя" #. 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 @@ -1466,6 +1592,9 @@ msgstr "Адрес" #. line 23 #. line 12 #. 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 @@ -1494,6 +1623,8 @@ msgstr "Обновить" #. 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 @@ -1585,6 +1716,10 @@ msgstr "Флаги" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1629,6 +1764,10 @@ msgstr "Sticky" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1673,6 +1812,10 @@ msgstr "Lock" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1772,6 +1915,12 @@ msgstr "Нет результатов" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1780,38 +1929,43 @@ msgstr "Нет результатов" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Поиск" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Жалоб на баны нет!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Жалобы на несправедливые баны" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Новый пользователь" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Невозможно повысить/понизить пользователя." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1830,6 +1984,9 @@ msgstr "Your code contained PHP syntax errors. Please go back and correct them. #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1895,7 +2052,8 @@ msgstr "Анти-спам" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Новые посты" @@ -2040,6 +2198,15 @@ msgstr "Создать новостной пост" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2079,6 +2246,9 @@ msgstr "Сотрудник" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2098,6 +2268,8 @@ msgstr "Заметка" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2140,6 +2312,8 @@ msgstr "Новая заметка" #. 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" @@ -2234,6 +2408,15 @@ msgstr "без причины" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2289,6 +2472,9 @@ msgstr "все доски" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2327,6 +2513,9 @@ msgstr "Установить" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2373,6 +2562,9 @@ msgstr "никогда" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2417,6 +2609,10 @@ msgstr "Удалить бан" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2456,6 +2652,11 @@ msgstr "Время" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2517,6 +2718,8 @@ msgstr "Новый бан" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2573,6 +2776,7 @@ msgstr "Продолжительность" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Разбанить выбранных" @@ -2590,6 +2794,9 @@ msgstr "Разбанить выбранных" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2645,7 +2852,7 @@ msgstr "Не удалось перерисовать изображение!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Ошибка изменения размера изображения." @@ -2679,41 +2886,54 @@ msgid "Your ban was filed on" msgstr "Вы были забанены " #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "с тех пор истек. Обновите страницу чтобы продолжить." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "истекает" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "прямо сейчас, который находится на" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "еще не истек" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Ваш IP адрес" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Вы были забанены за постинг" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Ты подал апелляцию на этот бан" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Пока не принято" @@ -2735,21 +2955,28 @@ msgstr "Пока не принято" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Ты обжаловал запрет на" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "и отклонен. Вы не можете обжаловать это бан снова." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2773,10 +3000,14 @@ msgstr "Ты отправил достаточное количество апе #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "и отклонен." @@ -2798,21 +3029,28 @@ msgstr "и отклонен." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Вы можете попросить разбанивать вас опять. Пожалуйста введите причину этого ниже" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Последний раз вы просили разбанить вас" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Ты можешь обжаловать этот бан. Введи причину апелляции." @@ -2831,6 +3069,10 @@ msgstr "Ты можешь обжаловать этот бан. Введи пр #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2899,6 +3141,8 @@ msgstr "Заблокировать ветку; Ответы к ветке с с #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3058,7 +3302,8 @@ msgstr "Ничего" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Перемещено в %s." @@ -3070,6 +3315,7 @@ msgid "" msgstr "Не могу создать тему Недавних Сообщений, потому что нет досок для использования" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "Вы попытались загрузить слишком много изображений" @@ -3084,6 +3330,10 @@ msgstr "Заспойлерить файл" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3106,6 +3356,10 @@ msgstr "Последний ответ" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3119,6 +3373,10 @@ msgstr "Дата создания" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3132,6 +3390,10 @@ msgstr "Количество ответов" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3201,33 +3463,55 @@ msgstr "Не могу соортинтировать картинку!" msgid "Could not strip EXIF metadata!" msgstr "Немогу найти EXIF информацию!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." -msgstr "" +msgstr "Проблема обработки вашего webm" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." -msgstr "" +msgstr "Некорректый webm закачан" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " -msgstr "" +msgstr "Закачаный webm не дольше чем" #. line 48 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 msgid "Go to top" -msgstr "" +msgstr "Наверх" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 msgid "Don't show my flag" -msgstr "" +msgstr "Не показывать мои флаги" #. line 36 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" +msgstr "Очень мало" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" msgstr "" diff --git a/inc/locale/sk_SK/LC_MESSAGES/javascript.po b/inc/locale/sk_SK/LC_MESSAGES/javascript.po index 59f360a1..ffecb1bb 100644 --- a/inc/locale/sk_SK/LC_MESSAGES/javascript.po +++ b/inc/locale/sk_SK/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgid "Delete" msgstr "Odstrániť" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Dôvod" @@ -214,43 +214,45 @@ msgid "disabled" msgstr "vypnutá" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Ne" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Po" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Ut" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "St" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Št" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Pi" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" msgstr "So" #: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalóg" @@ -318,6 +320,7 @@ msgstr "Žiadne ďalšie vlákna na zobrazenie" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Načítanie..." @@ -434,139 +437,140 @@ msgstr "Sledovať túto dosku" 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/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Nedeľa" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Pondelok" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Utorok" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Streda" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Štvrtok" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Piatok" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Sobota" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Január" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Február" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Marec" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Apríl" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Máj" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Jún" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Júl" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "August" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "September" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "Október" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "November" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "December" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Jan" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Feb" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Apr" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Jún" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Júl" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Aug" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Sep" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Okt" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Nov" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Dec" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "Doobeda" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "Poobede" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "doobeda" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "poobede" @@ -605,16 +609,19 @@ msgid "Tree view" msgstr "Zobraziť ako strom" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "Zmenšiť všetky obrázky" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "Animovať GIFy" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "Neanimovať GIFy" @@ -717,3 +724,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo index 0a272523..bbe6c396 100644 Binary files a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo 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 index 8b16cd36..d4a46a5e 100644 --- a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po +++ b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n" "MIME-Version: 1.0\n" @@ -27,12 +27,14 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "sekunda" msgstr[1] "sekundy" msgstr[2] "sekúnd" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -42,12 +44,14 @@ msgstr[2] "sekúnd" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "minúta" msgstr[1] "minúty" msgstr[2] "minút" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -57,12 +61,14 @@ msgstr[2] "minút" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "hodina" msgstr[1] "hodiny" msgstr[2] "hodín" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -72,12 +78,14 @@ msgstr[2] "hodín" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "deň" msgstr[1] "dni" msgstr[2] "dní" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -87,6 +95,7 @@ msgstr[2] "dní" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "týždeň" @@ -102,6 +111,7 @@ msgstr[2] "týždňov" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "rok" @@ -112,7 +122,7 @@ msgstr[2] "rokov" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Zabanovaný!" @@ -126,6 +136,7 @@ msgstr "Zabanovaný!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Späť" @@ -139,7 +150,8 @@ msgstr "Späť" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "Ďalej" @@ -230,7 +242,8 @@ msgstr "Presunúť odpoveď do inej dosky" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Upraviť príspevok" @@ -327,6 +340,7 @@ msgstr "Presunúť vlákno na inú dosku" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Bol si zablokovaný pre neoriginálny obsah." @@ -338,6 +352,7 @@ msgstr "Bol si zablokovaný pre neoriginálny obsah." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Nové vlákno" @@ -345,6 +360,7 @@ msgstr "Nové vlákno" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Odpoveď" @@ -353,6 +369,7 @@ msgstr "Odpoveď" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -378,6 +395,7 @@ msgstr "Ešte tu chvíľu slieď predtým, než budeš prispievať." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Vyzeráš ako bot." @@ -385,6 +403,7 @@ msgstr "Vyzeráš ako bot." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Tvoj prehliadač odoslal vadný alebo žiadny HTTP referer." @@ -392,6 +411,7 @@ msgstr "Tvoj prehliadač odoslal vadný alebo žiadny HTTP referer." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "Pole %s bolo príliš dlhé." @@ -400,6 +420,7 @@ msgstr "Pole %s bolo príliš dlhé." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "Telo správy bolo príliš dlhé." @@ -407,6 +428,7 @@ msgstr "Telo správy bolo príliš dlhé." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "Telo správy bolo prikrátke alebo prázdne." @@ -414,6 +436,7 @@ msgstr "Telo správy bolo prikrátke alebo prázdne." #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Musíš odoslať obrázok." @@ -421,6 +444,7 @@ msgstr "Musíš odoslať obrázok." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Serveru sa nepodarilo poradiť si s Tvojím uploadom." @@ -428,6 +452,7 @@ msgstr "Serveru sa nepodarilo poradiť si s Tvojím uploadom." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Nepodporovaný formát súboru." @@ -435,6 +460,7 @@ msgstr "Nepodporovaný formát súboru." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Nesprávna doska!" @@ -442,6 +468,7 @@ msgstr "Nesprávna doska!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Špecifikované vlákno neexistuje." @@ -449,6 +476,7 @@ msgstr "Špecifikované vlákno neexistuje." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Zamknuté vlákno. Teraz nie je možné naň odpovedať." @@ -456,6 +484,7 @@ msgstr "Zamknuté vlákno. Teraz nie je možné naň odpovedať." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Vlákno dosiahlo svoj maximálny limit pre odpovede." @@ -463,6 +492,7 @@ msgstr "Vlákno dosiahlo svoj maximálny limit pre odpovede." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Vlákno dosiahlo svoj maximálny limit pre obrázky." @@ -470,6 +500,7 @@ msgstr "Vlákno dosiahlo svoj maximálny limit pre obrázky." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Príspevok nebol vytvorený." @@ -477,6 +508,7 @@ msgstr "Príspevok nebol vytvorený." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Detekovaný flood; Príspevok zrušený." @@ -484,6 +516,7 @@ msgstr "Detekovaný flood; Príspevok zrušený." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Požiadavka vyzerá byť automatizovaná; Príspevok zrušený." @@ -491,6 +524,7 @@ msgstr "Požiadavka vyzerá byť automatizovaná; Príspevok zrušený." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Neoriginálny obsah!" @@ -498,6 +532,7 @@ msgstr "Neoriginálny obsah!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Neoriginálny obsah! Bol si zablokovaný na %d sekúnd." @@ -506,6 +541,7 @@ msgstr "Neoriginálny obsah! Bol si zablokovaný na %d sekúnd." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Si zablokovaný! Vyprší za %d sekúnd." @@ -514,6 +550,7 @@ msgstr "Si zablokovaný! Vyprší za %d sekúnd." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "Tvoja IP je spomínaná v %s." @@ -522,6 +559,7 @@ msgstr "Tvoja IP je spomínaná v %s." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Priveľa odkazov; Flood detekovaný." @@ -529,6 +567,7 @@ msgstr "Priveľa odkazov; Flood detekovaný." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Priveľa citátov; Príspevok zrušený." @@ -536,6 +575,7 @@ msgstr "Priveľa citátov; Príspevok zrušený." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Priveľa medzidoskových odkazov; Príspevok zrušený." @@ -543,6 +583,7 @@ msgstr "Priveľa medzidoskových odkazov; Príspevok zrušený." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Nevybral si nič pre odstránenie." @@ -550,6 +591,7 @@ msgstr "Nevybral si nič pre odstránenie." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Nevybral si nič pre nahlásenie." @@ -557,6 +599,7 @@ msgstr "Nevybral si nič pre nahlásenie." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Nie je možné nahlásiť tak veľa príspevkov naraz." @@ -564,6 +607,7 @@ msgstr "Nie je možné nahlásiť tak veľa príspevkov naraz." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Neplatné heslo…" @@ -571,6 +615,7 @@ msgstr "Neplatné heslo…" #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Neplatný obrázok." @@ -578,6 +623,7 @@ msgstr "Neplatný obrázok." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Neznámy formát súboru." @@ -585,6 +631,7 @@ msgstr "Neznámy formát súboru." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 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." @@ -592,6 +639,7 @@ msgstr "Maximálna veľkosť súboru: %maxsz% bajtov
Veľkosť Tvojho súboru #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Súbor bol príliš veľký." @@ -599,6 +647,7 @@ msgstr "Súbor bol príliš veľký." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "Súbor už existuje!" @@ -607,6 +656,7 @@ msgstr "Súbor už existuje!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "Tento súbor už existuje v tomto vlákne!" @@ -615,6 +665,7 @@ msgstr "Tento súbor už existuje v tomto vlákne!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Budeš musieť čakať ešte %s než to odstrániš." @@ -623,6 +674,7 @@ msgstr "Budeš musieť čakať ešte %s než to odstrániš." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "XSS exploit detekcie MIME typu (IE) detekovaný; Post zrušený." @@ -630,6 +682,7 @@ msgstr "XSS exploit detekcie MIME typu (IE) detekovaný; Post zrušený." #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 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." @@ -637,6 +690,7 @@ msgstr "Nie je možné správne vložiť zadané video." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Vyzerá to, že bola zle opísaná verifikácia." @@ -645,6 +699,7 @@ msgstr "Vyzerá to, že bola zle opísaná verifikácia." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -655,6 +710,7 @@ msgstr "Môžeš naraz odbanovať iba %s užívateľov. Snažil si sa odbanovať #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Neplatné užívateľské meno a/alebo heslo." @@ -662,6 +718,7 @@ msgstr "Neplatné užívateľské meno a/alebo heslo." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Niesi moderátor…" @@ -669,6 +726,7 @@ msgstr "Niesi moderátor…" #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -678,6 +736,7 @@ msgstr "Neplatné užívateľské meno a/alebo heslo. Tvoj účet mohol byť zme #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Neplatné/modifikované cookies." @@ -685,6 +744,7 @@ msgstr "Neplatné/modifikované cookies." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Tvoj prehliadač neodovzdal vstup vtedy, kedy mal." @@ -692,6 +752,7 @@ msgstr "Tvoj prehliadač neodovzdal vstup vtedy, kedy mal." #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "Pole %s je povinné." @@ -700,6 +761,7 @@ msgstr "Pole %s je povinné." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "Pole %s je neplatné." @@ -708,6 +770,7 @@ msgstr "Pole %s je neplatné." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Doska %s už existuje." @@ -716,6 +779,7 @@ msgstr "Doska %s už existuje." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Nemáš na to povolenie." @@ -723,6 +787,7 @@ msgstr "Nemáš na to povolenie." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Príspevok neexistuje…" @@ -730,6 +795,7 @@ msgstr "Príspevok neexistuje…" #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Stránka nebola nájdená." @@ -737,6 +803,7 @@ msgstr "Stránka nebola nájdená." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Moderátor už existuje!" @@ -745,6 +812,7 @@ msgstr "Moderátor už existuje!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Zadaná téma neexistuje!" @@ -752,6 +820,7 @@ msgstr "Zadaná téma neexistuje!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova." @@ -765,6 +834,7 @@ msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova." #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "UŽÍVATEĽ BOL ZA TENTO PRÍSPEVOK ZABANOVANÝ" @@ -851,10 +921,14 @@ msgstr "Log moderácie" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP adresa" @@ -863,11 +937,15 @@ msgstr "IP adresa" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Nový ban" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Zoznam banov" @@ -875,17 +953,20 @@ msgstr "Zoznam banov" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Presunúť odpoveď" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Cieľová a zdrojová doska sú rovnaké." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Nie je možné presunúť vlákno; existuje iba jedna doska." @@ -893,18 +974,20 @@ msgstr "Nie je možné presunúť vlákno; existuje iba jedna doska." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Presunúť vlákno" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "Upraviť užívateľa" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Spravovať užívateľov" @@ -913,11 +996,13 @@ msgstr "Spravovať užívateľov" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Nová SS pre" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Súkromná správa" @@ -925,6 +1010,7 @@ msgstr "Súkromná správa" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "Schránka SS" @@ -935,12 +1021,14 @@ msgstr "Schránka SS" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Prestavať" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Front nahlásení" @@ -948,55 +1036,66 @@ msgstr "Front nahlásení" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Editor konfigurácie" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Adresár \"themes\" neexistuje!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "Nebolo možné otvoriť adresár \"themes\"; skontroluj oprávnenia." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Spravovať témy" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Téma %s bola nainštalovaná" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Konfigurovanie témy: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Prestavaná téma: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug: Antispam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug: Posledné príspevky" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug: SQL" @@ -1064,6 +1163,10 @@ msgstr "Odstrániť príspevok" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1098,6 +1201,8 @@ msgstr "Súbor" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1177,6 +1282,12 @@ msgstr "Heslo" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1249,6 +1360,8 @@ msgstr "žiadny predmet" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "od" @@ -1300,6 +1413,7 @@ msgstr "Skrytý obrázok" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Odpoveď" @@ -1311,6 +1425,7 @@ msgstr "Odpoveď" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Zobraziť všetko" @@ -1322,6 +1437,7 @@ msgstr "Zobraziť všetko" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Posledný 1 príspevok" @@ -1336,6 +1452,7 @@ msgstr[2] "Posledných %count% príspevkov" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "1 príspevok" @@ -1351,6 +1468,8 @@ msgstr[2] "%count% príspevkov" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "a" @@ -1362,6 +1481,7 @@ msgstr "a" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "1 príspevok s obrázkom" @@ -1376,6 +1496,7 @@ msgstr[2] "%count% príspevkov s obrázkom" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "skrytých. Klikni na Odpoveď pre ich zobrazenie." @@ -1404,6 +1525,9 @@ msgstr "skrytých. Klikni na Odpoveď pre ich zobrazenie." #. line 7 #. 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 @@ -1427,6 +1551,8 @@ msgstr "Meno" #. 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 @@ -1461,6 +1587,9 @@ msgstr "E-mail" #. line 23 #. line 12 #. 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 @@ -1489,6 +1618,8 @@ msgstr "Aktualizácia" #. 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 @@ -1580,6 +1711,10 @@ msgstr "Vlajky" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1624,6 +1759,10 @@ msgstr "Pripnuté" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1668,6 +1807,10 @@ msgstr "Zamknuté" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1767,6 +1910,12 @@ msgstr "Žiadne výsledky." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1775,38 +1924,43 @@ msgstr "Žiadne výsledky." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Hľadať" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 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:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Odvolania sa na ban" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Nový užívateľ" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 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:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1825,6 +1979,9 @@ msgstr "PHP kód obsahuje chyby syntaxu. Oprav ich, prosím. PHP hovorí: " #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1890,7 +2047,8 @@ msgstr "Antispam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Posledné príspevky" @@ -2035,6 +2193,15 @@ msgstr "Prispieť do noviniek" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2074,6 +2241,9 @@ msgstr "Tím" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2093,6 +2263,8 @@ msgstr "Poznámka" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2135,6 +2307,8 @@ msgstr "Nová poznámka" #. 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" @@ -2229,6 +2403,15 @@ msgstr "bez dôvodu" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2284,6 +2467,9 @@ msgstr "všetky dosky" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2322,6 +2508,9 @@ msgstr "sada" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2368,6 +2557,9 @@ msgstr "nikdy" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2412,6 +2604,10 @@ msgstr "Odstrániť ban" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2451,6 +2647,11 @@ msgstr "Čas" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2512,6 +2713,8 @@ msgstr "Nový ban" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2568,6 +2771,7 @@ msgstr "Trvanie" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Odbanovať vybrané" @@ -2585,6 +2789,9 @@ msgstr "Odbanovať vybrané" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2640,7 +2847,7 @@ msgstr "Prekreslenie obrázka zlyhalo!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Zmena veľkosti obrázka zlyhala!" @@ -2674,41 +2881,54 @@ msgid "Your ban was filed on" msgstr "Tvoj ban bol udelený" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "už vypršal. Pre pokračovanie obnov stránku." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "vyprší" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "od teraz, čo je" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "nevyprší" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "Tvoja IP adresa je" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Bol si zabanovaný za nasledujúci príspevok" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "Odoslal si odvolanie sa na tento ban" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Stále čaká na rozsudok" @@ -2730,21 +2950,28 @@ msgstr "Stále čaká na rozsudok" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Odvolal si sa na tento ban" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 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 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2768,10 +2995,14 @@ msgstr "Odoslal si maximálny počet odvolaní sa na ban. Nemôžeš sa znova od #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "a Tvoje odvolanie sa bolo odmietnuté" @@ -2793,21 +3024,28 @@ msgstr "a Tvoje odvolanie sa bolo odmietnuté" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 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 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "Naposledy si sa odvolal na tento ban" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 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." @@ -2826,6 +3064,10 @@ msgstr "Môžeš sa na tento ban odvolať. Prosím, zadaj svoje odôvodnenie ni #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2894,6 +3136,8 @@ msgstr "zamkne vlákno; odpovie naň odkazom." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3053,7 +3297,8 @@ msgstr "Žiadna" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "Presunuté do %s" @@ -3065,6 +3310,7 @@ msgid "" msgstr "Nieje možné zostaviť tému RecentPosts pretože neexistujú žiadne dosky, ktoré by mohla čítať." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "Pokúsil si sa odoslať priveľa súborov!" @@ -3079,6 +3325,10 @@ msgstr "Skrytý súbor" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3101,6 +3351,10 @@ msgstr "Poslednej odpovede" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3114,6 +3368,10 @@ msgstr "Dátumu vytvorenia" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3127,6 +3385,10 @@ msgstr "Počtu odpovedí" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3196,20 +3458,26 @@ msgstr "Nebolo možné automaticky otočiť obrázok!" msgid "Could not strip EXIF metadata!" msgstr "Nebolo možné odstrániť EXIF metadáta!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3226,3 +3494,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/sv_SE/LC_MESSAGES/javascript.js b/inc/locale/sv_SE/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..c589bfbf --- /dev/null +++ b/inc/locale/sv_SE/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Stil:","File":"Fil","hide":"d\u00f6lj","show":"visa","Show locked threads":"Visa l\u00e5sta tr\u00e5dar","Hide locked threads":"D\u00f6lj l\u00e5sta tr\u00e5dar","URL":"URL","Select":"V\u00e4lj","Remote":"Remote","Embed":"B\u00e4dda in","Oekaki":"Oekaki","hidden":"dolda","Show images":"Visa bilder","Hide images":"D\u00f6lj bilder","Password":"L\u00f6senord","Delete file only":"Radera bara fil","Delete":"Radera","Reason":"Anledning","Report":"Rapportera","Click reply to view.":"Klicka svara f\u00f6r att visa.","Click to expand":"Klicka f\u00f6r att f\u00f6rstora","Hide expanded replies":"D\u00f6lj expanderade svar","Brush size":"Penselstorlek","Set text":"Skriv text","Clear":"Rensa","Save":"Spara","Load":"Ladda","Toggle eraser":"V\u00e4lj suddgummi","Get color":"F\u00e4rg","Fill":"Fyll","Use oekaki instead of file?":"Anv\u00e4nd oekaki ist\u00e4llet f\u00f6r fil?","Edit in oekaki":"Redigera i oekaki","Enter some text":"Skriv text","Enter font or leave empty":"V\u00e4lj typsnitt eller l\u00e4mna tomt","Forced anonymity":"Tvungen anonymitet","enabled":"p\u00e5","disabled":"av","Sun":"S\u00f6ndag","Mon":"M\u00e5ndag","Tue":"Tisdag","Wed":"Onsdag","Thu":"Torsdag","Fri":"Fredag","Sat":"L\u00f6rdag","Catalog":"Katalog","Submit":"Skicka","Quick reply":"Snabbsvar","Posting mode: Replying to >>{0}<\/small>":"Posting mode: Replying to >>{0}<\/small>","Return":"Tillbaka","Expand all images":"Visa alla bilder","Hello!":"Tjabba tjena hall\u00e5!","{0} users":"{0} anv\u00e4ndare","(hide threads from this board)":"(d\u00f6lj tr\u00e5dar fr\u00e5n denna board)","(show threads from this board)":"(visa tr\u00e5dar fr\u00e5n denna board)","No more threads to display":"Inga fler tr\u00e5dar att visa","Loading...":"Laddar...","Save as original filename":"Spara som originalfilnamn","Reported post(s).":"Anm\u00e4lda post(er).","An unknown error occured!":"Ett ov\u00e4ntat fel har intr\u00e4ffat! Ring polisen!","Something went wrong... An unknown error occured!":"N\u00e5got gick fel... Ett ov\u00e4ntat fel har intr\u00e4ffat!","Working...":"Arbetar...","Posting... (#%)":"Skickar... (#%)","Posted...":"Skickat...","An unknown error occured when posting!":"Ett ov\u00e4ntat fel uppkom vid skickande!","Posting...":"Skickar...","Upload URL":"Ladda upp URL","Spoiler Image":"Spoiler Bild","Comment":"Kommentar","Quick Reply":"Snabbsvar","Stop watching this thread":"Sluta f\u00f6lja denna tr\u00e5d","Watch this thread":"F\u00f6lj denna tr\u00e5d","Unpin this board":"Avpinna denna tr\u00e5d","Pin this board":"Pinna denna tr\u00e5d","Stop watching this board":"Sluta f\u00f6lja denna board","Watch this board":"F\u00f6lj denna board","Click on any image on this site to load it into oekaki applet":"Klicka p\u00e5 en bild p\u00e5 denna sida f\u00f6r att ladda in den i oekaki appleten","Sunday":"S\u00f6ndag","Monday":"M\u00e5ndag","Tuesday":"Tisdag","Wednesday":"Onsdag","Thursday":"Torsdag","Friday":"FREDAG JAAAA","Saturday":"L\u00f6rdag","January":"Januari b\u00f6rjar \u00e5ret","February":"Februari kommer sen","March":"Mars","April":"April har knopp i h\u00e5ret","May":"Maj och","June":"Juni blommar mest","July":"Juli","August":"Augusti och","September":"Seheptember h\u00e4rlig sommar \u00e4r det d\u00e5, men","October":"Oktober och","November":"November och","December":"December \u00e4r s\u00e5 gr\u00e5","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Din webbl\u00e4sare st\u00f6djer inte HTML5 video.","[play once]":"[spela en g\u00e5ng]","[loop]":"[loop]","WebM Settings":"WebM Inst\u00e4llningar","Expand videos inline":"Maximera videor inline","Play videos on hover":"Spela videor vid pekande","Default volume":"Standard volym","Tree view":"Tr\u00e4d-vy","Shrink all images":"Krymp alla bilder","Animate GIFs":"Animerade GIFs","Unanimate GIFs":"Oanimerade GIFs","WebM":"WebM","No new posts.":"Inga nya posts, >tfw","No new threads.":"Inga nya tr\u00e5dar.","There are {0} new threads.":"Det finns {0} nya tr\u00e5dar.","There are {0} new posts in this thread.":"Det finns {0} nya inl\u00e4gg i denna tr\u00e5d.","Options":"Inst\u00e4llningar","General":"Allm\u00e4nt","Storage: ":"Lager:","Export":"Exportera","Import":"Importera","Paste your storage data":"Paste your storage data","Erase":"Radera","":"Backupa ditt lager n\u00e5gonstans eftersom lallande h\u00e4r kan paja sidan.","User CSS":"Anv\u00e4ndar CSS","Update custom CSS":"Uppdatera custom CSS","Enter here your own CSS rules...":"Skriv dina egna CSSregler h\u00e4r...","You can include CSS files from remote servers, for example:":"Du kan inkludera CSSfiler fr\u00e5n fj\u00e4rran servrar, till exempel: ","User JS":"Anv\u00e4ndar JS","Update custom Javascript":"Uppdatera custom Javascript","Enter here your own Javascript code...":"Skriv din egen Javascriptkod h\u00e4r...","You can include JS files from remote servers, for example:":"Du kan inkludera JSfiler fr\u00e5n fj\u00e4rran servrar, till exempel:"}; \ No newline at end of file diff --git a/inc/locale/sv_SE/LC_MESSAGES/javascript.po b/inc/locale/sv_SE/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..26cc4414 --- /dev/null +++ b/inc/locale/sv_SE/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Henning Bollmark , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "Fil" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "dölj" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +msgstr "visa" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Show locked threads" +msgstr "Visa låsta trådar" + +#: ../../../../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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "Dölj låsta trådar" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "Välj" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "Remote" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "Bädda in" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "dolda" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "Visa bilder" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +msgstr "Dölj bilder" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Lösenord" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Radera bara fil" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Radera" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "Anledning" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Rapportera" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Klicka svara för att visa." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "Klicka för att förstora" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +msgstr "Dölj expanderade svar" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "Penselstorlek" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "Skriv text" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "Rensa" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Spara" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "Ladda" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "Välj suddgummi" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "Färg" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "Fyll" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "Använd oekaki istället för fil?" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Redigera i oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "Skriv text" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "Välj typsnitt eller lämna tomt" + +#: ../../../../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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +msgid "Forced anonymity" +msgstr "Tvungen anonymitet" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +msgid "enabled" +msgstr "på" + +#: ../../../../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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "av" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "Söndag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "Måndag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "Tisdag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "Onsdag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "Torsdag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "Fredag" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +msgstr "Lördag" + +#: ../../../../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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "Katalog" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "Skicka" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Snabbsvar" + +#: ../../../../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 "Posting mode: Replying to >>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "Tillbaka" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "Visa alla bilder" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Tjabba tjena hallå!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0} användare" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +msgid "(hide threads from this board)" +msgstr "(dölj trådar från denna board)" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(visa trådar från denna board)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "Inga fler trådar att visa" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +msgstr "Laddar..." + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "Spara som originalfilnamn" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "Anmälda post(er)." + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "Ett oväntat fel har inträffat! Ring polisen!" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "Något gick fel... Ett oväntat fel har inträffat!" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "Arbetar..." + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Skickar... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Skickat..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "Ett oväntat fel uppkom vid skickande!" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Skickar..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "Ladda upp URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Spoiler Bild" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "Kommentar" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +msgid "Quick Reply" +msgstr "Snabbsvar" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Stop watching this thread" +msgstr "Sluta följa denna tråd" + +#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 +#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 +#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +msgid "Watch this thread" +msgstr "Följ denna tråd" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Unpin this board" +msgstr "Avpinna denna tråd" + +#: ../../../../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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +msgid "Pin this board" +msgstr "Pinna denna tråd" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Stop watching this board" +msgstr "Sluta följa denna board" + +#: ../../../../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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "Följ denna board" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "Klicka på en bild på denna sida för att ladda in den i oekaki appleten" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "Söndag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "Måndag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "Tisdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "Onsdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "Torsdag" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "FREDAG JAAAA" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "Lördag" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "Januari börjar året" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "Februari kommer sen" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "Mars" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "April har knopp i håret" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "Maj och" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "Juni blommar mest" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "Juli" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "Augusti och" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "Seheptember härlig sommar är det då, men" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "Oktober och" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "November och" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "December är så grå" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "Jan" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "Feb" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "Mar" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "Apr" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "Jun" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "Jul" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "Aug" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "Sep" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "Okt" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "Nov" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "Dec" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "Din webbläsare stödjer inte HTML5 video." + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "[spela en gång]" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "[loop]" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "WebM Inställningar" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "Maximera videor inline" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "Spela videor vid pekande" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "Standard volym" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "Träd-vy" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "Krymp alla bilder" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "Animerade GIFs" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "Oanimerade GIFs" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "Inga nya posts, >tfw" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "Inga nya trådar." + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "Det finns {0} nya trådar." + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "Det finns {0} nya inlägg i denna tråd." + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "Inställningar" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "Allmänt" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "Lager:" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "Exportera" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "Importera" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "Paste your storage data" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "Radera" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "Vill du verkligen radera ditt lager? Det inkluderar dina dolda trådar, sedda trådar, inläggslösenord, din själ och mycket mer." + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "Användar CSS" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "Uppdatera custom CSS" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "Skriv dina egna CSSregler här..." + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "If you want to make a redistributable style, be sure to\nhave a Yotsuba B theme selected. " + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "Du kan inkludera CSSfiler från fjärran servrar, till exempel: " + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "Användar JS" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "Uppdatera custom Javascript" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "Skriv din egen Javascriptkod här..." + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "Backupa ditt lager någonstans eftersom lallande här kan paja sidan." + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "Du kan inkludera JSfiler från fjärran servrar, till exempel:" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/sv_SE/LC_MESSAGES/tinyboard.mo b/inc/locale/sv_SE/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..6eb1fac1 Binary files /dev/null and b/inc/locale/sv_SE/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/sv_SE/LC_MESSAGES/tinyboard.po b/inc/locale/sv_SE/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..80ddb037 --- /dev/null +++ b/inc/locale/sv_SE/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3500 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Swedish (Sweden) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sv_SE/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv_SE\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "" + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "" + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +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:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "" + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "" + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "" + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "" + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "" + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "" + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "" + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "" + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "" + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "" + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "" + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "" + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "" + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "" + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "" + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "" + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "" + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "" + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +msgid "IP" +msgstr "" + +#. line 171 +#: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367 +#: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "" + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "" + +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/tr_TR/LC_MESSAGES/javascript.po b/inc/locale/tr_TR/LC_MESSAGES/javascript.po index 88c9076c..496c51cd 100644 --- a/inc/locale/tr_TR/LC_MESSAGES/javascript.po +++ b/inc/locale/tr_TR/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -119,7 +119,7 @@ msgid "Delete" msgstr "Sil" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "Sebep" @@ -214,43 +214,45 @@ msgid "disabled" msgstr "etkin değil" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "Paz" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "Pzt" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "Sa" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "Çrş" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "Per" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "Cu" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "Katalog" @@ -318,6 +320,7 @@ msgstr "Gösterecek başka konu kalmadı" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "Yükleniyor..." @@ -434,139 +437,140 @@ msgstr "Bu tahtayı izle" 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" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "Pazar" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "Pazartesi" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "Sal" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "Çarşamba" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "Perşembe" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "Cuma" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "Cumartesi" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "Ocak" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "Şubat" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "Mart" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "Nisan" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "Mayıs" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "Haziran" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "Temmuz" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "Ağustos" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "Eylül" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "kim" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "Kasım" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "Aralık" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "Oca" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "Şub" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "Mar" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "Nis" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "Haz" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "Tem" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "Ağu" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "Eyl" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "Eki" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "Kas" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "Ara" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "ÖÖ" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "ÖS" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "öö" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "ös" @@ -605,16 +609,19 @@ msgid "Tree view" msgstr "Gezgin görünümü" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "" @@ -717,3 +724,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo index 4fea83ad..b0d09d84 100644 Binary files a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo 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 index bb716275..10127723 100644 --- a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -27,10 +27,12 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "saniye" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -40,10 +42,12 @@ msgstr[0] "saniye" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "dakika" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -53,10 +57,12 @@ msgstr[0] "dakika" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "saat" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -66,10 +72,12 @@ msgstr[0] "saat" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "gün" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -79,6 +87,7 @@ msgstr[0] "gün" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "hafta" @@ -92,6 +101,7 @@ msgstr[0] "hafta" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "yıl" @@ -100,7 +110,7 @@ msgstr[0] "yıl" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "Ban!" @@ -114,6 +124,7 @@ msgstr "Ban!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "Geri" @@ -127,7 +138,8 @@ msgstr "Geri" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "İleri" @@ -218,7 +230,8 @@ msgstr "Cevabı başka tahtaya taşı" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "Girdiyi düzenle" @@ -315,6 +328,7 @@ msgstr "Konuyu başka bir tahtaya taşı" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "Özgün içerik koymamaktan susturuldunuz." @@ -326,6 +340,7 @@ msgstr "Özgün içerik koymamaktan susturuldunuz." #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "Yeni Konu" @@ -333,6 +348,7 @@ msgstr "Yeni Konu" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "Cevapla" @@ -341,6 +357,7 @@ msgstr "Cevapla" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -366,6 +383,7 @@ msgstr "Katılmadan önce biraz daha dolaşın bakalım." #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "Bot gibi duruyorsunuz burdan." @@ -373,6 +391,7 @@ msgstr "Bot gibi duruyorsunuz burdan." #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "Tarayıcınız geçersiz bir HTTP referansı yolladı." @@ -380,6 +399,7 @@ msgstr "Tarayıcınız geçersiz bir HTTP referansı yolladı." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "%s çok uzun." @@ -388,6 +408,7 @@ msgstr "%s çok uzun." #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "İçerik çok uzun." @@ -395,6 +416,7 @@ msgstr "İçerik çok uzun." #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "İçerik çok kısa ya da bış" @@ -402,6 +424,7 @@ msgstr "İçerik çok kısa ya da bış" #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "Bir resim yüklemelisiniz." @@ -409,6 +432,7 @@ msgstr "Bir resim yüklemelisiniz." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "Sunucumuz yüklemenizi kaldıramadı." @@ -416,6 +440,7 @@ msgstr "Sunucumuz yüklemenizi kaldıramadı." #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "Desteklenmeyen resim formatı." @@ -423,6 +448,7 @@ msgstr "Desteklenmeyen resim formatı." #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "Geçersiz tahta!" @@ -430,6 +456,7 @@ msgstr "Geçersiz tahta!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "Böyle bir konu yok." @@ -437,6 +464,7 @@ msgstr "Böyle bir konu yok." #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "Konu kilitlendi. Şu an cevaplayamassınız." @@ -444,6 +472,7 @@ msgstr "Konu kilitlendi. Şu an cevaplayamassınız." #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "Konu azami cevap sayısına ulaştı." @@ -451,6 +480,7 @@ msgstr "Konu azami cevap sayısına ulaştı." #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "Konu azami resim limitine ulaştı." @@ -458,6 +488,7 @@ msgstr "Konu azami resim limitine ulaştı." #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "Bi'şey yapmadınız." @@ -465,6 +496,7 @@ msgstr "Bi'şey yapmadınız." #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "Floodcu pezevenk." @@ -472,6 +504,7 @@ msgstr "Floodcu pezevenk." #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "Robot gibi görünüyorsunuz." @@ -479,6 +512,7 @@ msgstr "Robot gibi görünüyorsunuz." #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "Özgün olmayan içerik!" @@ -486,6 +520,7 @@ msgstr "Özgün olmayan içerik!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "Özgün olmayan içerik! %d saniye susturuldunuz." @@ -494,6 +529,7 @@ msgstr "Özgün olmayan içerik! %d saniye susturuldunuz." #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "Susturuldunuz! %d saniyeye geçer." @@ -502,6 +538,7 @@ msgstr "Susturuldunuz! %d saniyeye geçer." #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "IP adresiniz %s listesinde." @@ -510,6 +547,7 @@ msgstr "IP adresiniz %s listesinde." #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "Çok fazla link var, flood gibi." @@ -517,6 +555,7 @@ msgstr "Çok fazla link var, flood gibi." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "Çok fazla alıntı var." @@ -524,6 +563,7 @@ msgstr "Çok fazla alıntı var." #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "Çok fazla çapraz tahta linki." @@ -531,6 +571,7 @@ msgstr "Çok fazla çapraz tahta linki." #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "Silmek için bir şey seçmediniz." @@ -538,6 +579,7 @@ msgstr "Silmek için bir şey seçmediniz." #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "Şikayet edecek bir şey seçmediniz." @@ -545,6 +587,7 @@ msgstr "Şikayet edecek bir şey seçmediniz." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "Bu kadar çok girdiyi bir kerede şikayet edemezsiniz." @@ -552,6 +595,7 @@ msgstr "Bu kadar çok girdiyi bir kerede şikayet edemezsiniz." #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "Yanlış şifre..." @@ -559,6 +603,7 @@ msgstr "Yanlış şifre..." #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "Geçersiz resim." @@ -566,6 +611,7 @@ msgstr "Geçersiz resim." #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "Bilinmeyen dosya uzantısı." @@ -573,6 +619,7 @@ msgstr "Bilinmeyen dosya uzantısı." #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "Azami dosya boyutu: %maxsz% byte
Dosyanızın boyutu %filesz% byte" @@ -580,6 +627,7 @@ msgstr "Azami dosya boyutu: %maxsz% byte
Dosyanızın boyutu %filesz% byte" #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "Dosyanız çok büyük." @@ -587,6 +635,7 @@ msgstr "Dosyanız çok büyük." #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr " Bu dosya zaten var.!" @@ -595,6 +644,7 @@ msgstr " Bu dosya zaten var.!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr " Bu dosya bu konuda zaten var!" @@ -603,6 +653,7 @@ msgstr " Bu dosya bu konuda zaten var!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "Silmeden önce %s kadar beklemelisiniz." @@ -611,6 +662,7 @@ msgstr "Silmeden önce %s kadar beklemelisiniz." #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "FATAL ÖRÖR" @@ -618,6 +670,7 @@ msgstr "FATAL ÖRÖR" #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 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." @@ -625,6 +678,7 @@ msgstr "Gömmeye çalıştığınız video linkinden bişey anlayamadık." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "Doğrulamayı yanlış girmiş gibisin." @@ -633,6 +687,7 @@ msgstr "Doğrulamayı yanlış girmiş gibisin." #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -643,6 +698,7 @@ msgstr "Bir seferde sadece %s kullanıcının banını kaldırabilirsiniz. Siz % #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "Geçersiz kullanıcı adı ve/veya şifre." @@ -650,6 +706,7 @@ msgstr "Geçersiz kullanıcı adı ve/veya şifre." #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "Mod değilsiniz ki..." @@ -657,6 +714,7 @@ msgstr "Mod değilsiniz ki..." #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -666,6 +724,7 @@ msgstr "Geçersiz kullanıcı adı ve/veya şifre. Kullanıcı hesabınız silin #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "Geçersiz ya da bayatlamış kurabiye." @@ -673,6 +732,7 @@ msgstr "Geçersiz ya da bayatlamış kurabiye." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "Tarayıcınız zamanında göndermesi gerekeni göndermedi" @@ -680,6 +740,7 @@ msgstr "Tarayıcınız zamanında göndermesi gerekeni göndermedi" #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "%s gerekli." @@ -688,6 +749,7 @@ msgstr "%s gerekli." #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "%s geçersiz." @@ -696,6 +758,7 @@ msgstr "%s geçersiz." #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "Zaten %s böyle bir tahta var." @@ -704,6 +767,7 @@ msgstr "Zaten %s böyle bir tahta var." #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "Bunu yapmak için izniniz yok." @@ -711,6 +775,7 @@ msgstr "Bunu yapmak için izniniz yok." #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "Böyle bir girdi yok..." @@ -718,6 +783,7 @@ msgstr "Böyle bir girdi yok..." #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "Sayfa bulunamadı." @@ -725,6 +791,7 @@ msgstr "Sayfa bulunamadı." #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "Böyle bir mod! zaten var!" @@ -733,6 +800,7 @@ msgstr "Böyle bir mod! zaten var!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "Böyle bir tema yok." @@ -740,6 +808,7 @@ msgstr "Böyle bir tema yok." #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin." @@ -753,6 +822,7 @@ msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin." #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "KULLANICI BU GİRDİ SEBEBİYLE BANLANDI" @@ -839,10 +909,14 @@ msgstr "Moderasyon logları" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -851,11 +925,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "Yeni ban" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "Ban listesi" @@ -863,17 +941,20 @@ msgstr "Ban listesi" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "Cevabı taşı" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "Kaynak ve hedef tahtası aynı." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "Konuyu nereye taşıyalım; zaten bir tahta var." @@ -881,18 +962,20 @@ msgstr "Konuyu nereye taşıyalım; zaten bir tahta var." #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "Konuyu taşı" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 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 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "Kullanıcıları yönet" @@ -901,11 +984,13 @@ msgstr "Kullanıcıları yönet" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "Yeni Özel Mesaj =>" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "Özel Mesaj" @@ -913,6 +998,7 @@ msgstr "Özel Mesaj" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "ÖM Kutusu" @@ -923,12 +1009,14 @@ msgstr "ÖM Kutusu" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "Yeniden yapılandır" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "Şikayet Listesi" @@ -936,55 +1024,66 @@ msgstr "Şikayet Listesi" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "Denetim Masası" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "Tema klasörü yok!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 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 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "Temaları yönet" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "Yüklenen tema: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "Tema ayarlanıyor: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "Yapılandırılan tema: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "Debug: Anti-spam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "Debug: Son gönderiler" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "Debug: SQL" @@ -1052,6 +1151,10 @@ msgstr "Girdiyi sil" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1086,6 +1189,8 @@ msgstr "Dosya" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1165,6 +1270,12 @@ msgstr "Şifre" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1237,6 +1348,8 @@ msgstr "konu yok" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "tarafından" @@ -1286,6 +1399,7 @@ msgstr "Spoiler" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "Cevapla" @@ -1297,6 +1411,7 @@ msgstr "Cevapla" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "Hepsini Gör" @@ -1308,6 +1423,7 @@ msgstr "Hepsini Gör" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "Son %count% gönderi" @@ -1320,6 +1436,7 @@ msgstr[0] "Son %count% gönderi" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "%count% gönderi" @@ -1333,6 +1450,8 @@ msgstr[0] "%count% gönderi" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "ve" @@ -1344,6 +1463,7 @@ msgstr "ve" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "%count% imaj" @@ -1356,6 +1476,7 @@ msgstr[0] "%count% imaj" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "gizlendi. Görmek için cevaplaya basın." @@ -1384,6 +1505,9 @@ msgstr "gizlendi. Görmek için cevaplaya basın." #. line 7 #. 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 @@ -1407,6 +1531,8 @@ msgstr "İsim" #. 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 @@ -1441,6 +1567,9 @@ msgstr "E-posta" #. line 23 #. line 12 #. 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 @@ -1469,6 +1598,8 @@ msgstr "Güncelle" #. 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 @@ -1560,6 +1691,10 @@ msgstr "Bayrak" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1604,6 +1739,10 @@ msgstr "Yapışkan" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1648,6 +1787,10 @@ msgstr "Kilitli" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1745,6 +1888,12 @@ msgstr "Sonuç yok." #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1753,38 +1902,43 @@ msgstr "Sonuç yok." #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "Arama" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "Müracaat bulunamadı!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "Ban kaldırma müracaatları" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "Yeni kullanıcı" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "Bu kullanıcıyı demote/promote etmek mümkün değil" #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1803,6 +1957,9 @@ msgstr "Kodunuz PHP hataları içeriyor. Lütfen geri dönüp düzeltin. PHP:" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1868,7 +2025,8 @@ msgstr "Anti-spam" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "Son gönderiler" @@ -2013,6 +2171,15 @@ msgstr "Haber gönder" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2052,6 +2219,9 @@ msgstr "Yönetim" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2071,6 +2241,8 @@ msgstr "Not" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2113,6 +2285,8 @@ msgstr "Yeni not" #. 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" @@ -2207,6 +2381,15 @@ msgstr "sebepsizce" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2262,6 +2445,9 @@ msgstr "tüm tahtalar" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2300,6 +2486,9 @@ msgstr "Ayarla" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2346,6 +2535,9 @@ msgstr "hiç bir zaman" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2390,6 +2582,10 @@ msgstr "Banı kaldır" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2429,6 +2625,11 @@ msgstr "Zaman" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2490,6 +2691,8 @@ msgstr "Yeni Ban" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2546,6 +2749,7 @@ msgstr "Süresi" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "Banı kaldır" @@ -2563,6 +2767,9 @@ msgstr "Banı kaldır" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2618,7 +2825,7 @@ msgstr "Resmi işlerken, işleyemedik!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "Resmi yeniden boyutlandıramadık!" @@ -2652,41 +2859,54 @@ msgid "Your ban was filed on" msgstr "Şu tarihte" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 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 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "süresi geçecek" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "şu andan itibaren başlıyor" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "süresi geçmeyecek" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "IP adresiniz" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "Şu post sebebiyle banlandınız" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 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 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "Hala bekliyor" @@ -2708,21 +2928,28 @@ msgstr "Hala bekliyor" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "Bu banı kaldırmak için müracaat ettiğiniz tarih" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 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 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2746,10 +2973,14 @@ msgstr "Müracaat sınırını aştınız ulan." #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "ve geri çevrildi." @@ -2771,21 +3002,28 @@ msgstr "ve geri çevrildi." #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "Tekrar müracaat edebilirsiniz, buyrun." #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 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 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "Bu ban için tekrar müracaat edebilirsiniz:" @@ -2804,6 +3042,10 @@ msgstr "Bu ban için tekrar müracaat edebilirsiniz:" #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2872,6 +3114,8 @@ msgstr "Konuyu kilitler ve link ile cevaplar." #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3031,7 +3275,8 @@ msgstr "Hiç" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "%s tahtasına yollandı." @@ -3043,6 +3288,7 @@ msgid "" msgstr "Son Gönderiler temasını yükleyemiyoruz, çünkü gösterebileceğimiz hiç tahta yok." #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "" @@ -3057,6 +3303,10 @@ msgstr "" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3079,6 +3329,10 @@ msgstr "" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3092,6 +3346,10 @@ msgstr "" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3105,6 +3363,10 @@ msgstr "" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3174,20 +3436,26 @@ msgstr "" msgid "Could not strip EXIF metadata!" msgstr "" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3204,3 +3472,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/zh_CN/LC_MESSAGES/javascript.js b/inc/locale/zh_CN/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..b4706d42 --- /dev/null +++ b/inc/locale/zh_CN/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"\u6837\u5f0f","File":"\u6587\u4ef6","hide":"\u9690\u85cf","show":"\u663e\u793a","Show locked threads":"\u663e\u793a\u88ab\u9501\u4e3b\u9898\u5e16","Hide locked threads":"\u9690\u85cf\u88ab\u9501\u4e3b\u9898\u5e16","URL":"URL","Select":"\u9009\u62e9","Remote":"\u8fdc\u7a0b","Embed":"\u5d4c\u5165","Oekaki":"Oekaki","hidden":"\u9690\u85cf\u7684","Show images":"\u663e\u793a\u56fe\u7247","Hide images":"\u9690\u85cf\u56fe\u50cf","Password":"\u5bc6\u7801","Delete file only":"\u53ea\u5220\u9664\u6587\u4ef6","Delete":"\u5220\u9664","Reason":"\u539f\u56e0","Report":"\u62a5\u544a","Click reply to view.":"\u70b9\u51fb\u56de\u590d\u67e5\u770b","Click to expand":"\u70b9\u51fb\u5c55\u5f00","Hide expanded replies":"\u9690\u85cf\u5c55\u5f00\u7684\u56de\u590d","Brush size":"\u5237\u5b50\u5c3a\u5bf8","Set text":"\u8bbe\u7f6e\u6587\u5b57","Clear":"\u6e05\u9664","Save":"\u4fdd\u5b58","Load":"\u8bfb\u53d6","Toggle eraser":"\u5207\u6362\u6a61\u76ae\u64e6","Get color":"\u83b7\u53d6\u989c\u8272","Fill":"\u586b\u5145","Use oekaki instead of file?":"\u4f7f\u7528Oekaki\u4ee3\u66ff\u6587\u4ef6\uff1f","Edit in oekaki":"\u4fee\u6539\u7f51\u4e0a\u63cf\u7ed8","Enter some text":"\u8f93\u5165\u4e00\u4e9b\u6587\u5b57","Enter font or leave empty":"\u8f93\u5165\u5b57\u4f53\u6216\u8005\u4fdd\u7559\u7a7a\u767d","Forced anonymity":"\u5f3a\u5236\u533f\u540d","enabled":"\u5f00\u542f\u7684","disabled":"\u5173\u95ed\u7684","Sun":"\u661f\u671f\u5929","Mon":"\u661f\u671f\u4e00","Tue":"\u661f\u671f\u4e8c","Wed":"\u661f\u671f\u4e09","Thu":"\u661f\u671f\u56db","Fri":"\u661f\u671f\u4e94","Sat":"\u661f\u671f\u516d","Catalog":"\u76ee\u5f55","Submit":"\u63d0\u4ea4","Quick reply":"\u5feb\u901f\u56de\u590d","Posting mode: Replying to >>{0}<\/small>":"\u53d1\u5e16\u6a21\u5f0f: \u56de\u590d\u5230>>{0}<\/small>","Return":"\u8fd4\u56de","Expand all images":"\u5c55\u5f00\u6240\u6709\u56fe\u7247","Hello!":"\u60a8\u597d\uff01","{0} users":"{0}\u7528\u6237","(hide threads from this board)":"(\u5728\u6b64\u7248\u5757\u9690\u85cf\u4e3b\u9898\u5e16)","(show threads from this board)":"(\u5728\u6b64\u7248\u5757\u663e\u793a\u4e3b\u9898\u5e16)","No more threads to display":"\u6ca1\u6709\u66f4\u591a\u4e3b\u9898\u5e16\u663e\u793a","Loading...":"\u8bfb\u53d6\u4e2d...","An unknown error occured!":"\u4e00\u4e2a\u672a\u77e5\u9519\u8bef\u53d1\u751f!","Working...":"\u5de5\u4f5c\u4e2d...","Posting...":"\u53d1\u5e16\u4e2d...","Upload URL":"\u4e0a\u4f20URL","Comment":"\u8bc4\u8bba","Quick Reply":"\u5feb\u901f\u56de\u590d","Stop watching this thread":"\u505c\u6b62\u5173\u6ce8\u6b64\u4e3b\u9898\u5e16","Watch this thread":"\u5173\u6ce8\u6b64\u4e3b\u9898\u5e16","Stop watching this board":"\u53d6\u6d88\u5173\u6ce8\u6b64\u7248\u5757","Watch this board":"\u5173\u6ce8\u6b64\u7248\u5757","Sunday":"\u661f\u671f\u65e5","Monday":"\u661f\u671f\u4e00","Tuesday":"\u661f\u671f\u4e8c","Wednesday":"\u661f\u671f\u4e09","Thursday":"\u661f\u671f\u56db","Friday":"\u661f\u671f\u4e94","Saturday":"\u661f\u671f\u516d","January":"\u4e00\u6708","February":"\u4e8c\u6708","March":"\u4e09\u6708","April":"\u56db\u6708","May":"\u4e94\u6708","June":"\u516d\u6708","July":"\u4e03\u6708","August":"\u516b\u6708","September":"\u4e5d\u6708","October":"\u5341\u6708","November":"\u5341\u4e00\u6708","December":"\u5341\u4e8c\u6708","Jan":"\u4e00\u6708","Feb":"\u4e8c\u6708","Mar":"\u4e09\u6708","Apr":"\u56db\u6708","Jun":"\u516d\u6708","Jul":"\u4e03\u6708","Aug":"\u516b\u6708","Sep":"\u4e5d\u6708","Oct":"\u5341\u6708","Nov":"\u5341\u4e00","Dec":"\u5341\u4e8c\u6708","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"\u60a8\u7684\u6d4f\u89c8\u5668\u4e0d\u652f\u6301HTML5\u89c6\u9891\u3002","WebM Settings":"WebM\u8bbe\u7f6e","Tree view":"\u6811\u5f62","Animate GIFs":"GIF\u52a8\u753b","WebM":"WebM","No new posts.":"\u6ca1\u6709\u65b0\u5e16\u3002","No new threads.":"\u6ca1\u6709\u65b0\u4e3b\u9898\u5e16","There are {0} new threads.":"\u6709{0}\u4e2a\u65b0\u4e3b\u9898\u5e16.","Options":"\u9009\u9879","Export":"\u5bfc\u51fa","Import":"\u5bfc\u5165","Erase":"\u5220\u9664","User CSS":"\u7528\u6237CSS","Update custom CSS":"\u66f4\u65b0\u81ea\u5b9a\u4e49CSS","Enter here your own CSS rules...":"\u5728\u6b64\u8f93\u5165\u60a8\u81ea\u5df1\u7684CSS\u89c4\u5219...","User JS":"\u7528\u6237JS","Update custom Javascript":"\u66f4\u65b0\u81ea\u5b9a\u4e49Javascript","Enter here your own Javascript code...":"\u5728\u6b64\u8f93\u5165\u60a8\u81ea\u5df1\u7684Javascript\u4ee3\u7801...","Color IDs":"\u989c\u8272ID","Update":"\u66f4\u65b0"}; \ No newline at end of file diff --git a/inc/locale/zh_CN/LC_MESSAGES/javascript.po b/inc/locale/zh_CN/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..f33d8dcb --- /dev/null +++ b/inc/locale/zh_CN/LC_MESSAGES/javascript.po @@ -0,0 +1,847 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Nicholas Chen , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "样式" + +#: ../../../../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 ../../../../js/upload-selection.js:69 +msgid "File" +msgstr "文件" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "隐藏" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +#: ../../../../js/hide-images.js:63 +msgid "show" +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 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +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 +#: ../../../../js/toggle-locked-threads.js:44 +#: ../../../../js/toggle-locked-threads.js:53 +#: ../../../../js/toggle-locked-threads.js:70 +msgid "Hide locked threads" +msgstr "隐藏被锁主题帖" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +#: ../../../../js/upload-selection.js:53 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +#: ../../../../js/upload-selection.js:68 +msgid "Select" +msgstr "选择" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +#: ../../../../js/upload-selection.js:71 +msgid "Remote" +msgstr "远程" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +#: ../../../../js/upload-selection.js:74 +msgid "Embed" +msgstr "嵌入" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +#: ../../../../js/upload-selection.js:77 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +#: ../../../../js/toggle-images.js:45 +msgid "hidden" +msgstr "隐藏的" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:86 +msgid "Show images" +msgstr "显示图片" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +#: ../../../../js/toggle-images.js:63 ../../../../js/toggle-images.js:86 +msgid "Hide images" +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:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "删除" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 +msgid "Reason" +msgstr "原因" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "报告" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "点击回复查看" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +#: ../../../../js/live-index.js:72 ../../../../js/live-index.js:83 +msgid "Click to expand" +msgstr "点击展开" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +#: ../../../../js/expand.js:50 +msgid "Hide expanded replies" +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 "使用Oekaki代替文件?" + +#: ../../../../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/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 ../../../../js/forced-anon.js:73 +#: ../../../../js/forced-anon.js:81 ../../../../js/forced-anon.js:85 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:81 +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 +#: ../../../../js/forced-anon.js:73 ../../../../js/forced-anon.js:85 +msgid "disabled" +msgstr "关闭的" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sun" +msgstr "星期天" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Mon" +msgstr "星期一" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Tue" +msgstr "星期二" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Wed" +msgstr "星期三" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Thu" +msgstr "星期四" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Fri" +msgstr "星期五" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 +msgid "Sat" +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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 +msgid "Catalog" +msgstr "目录" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "提交" + +#: ../../../../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:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +#, python-brace-format +msgid "Posting mode: Replying to >>{0}" +msgstr "发帖模式: 回复到>>{0}" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "返回" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +#: ../../../../js/expand-all-images.js:23 +msgid "Expand all images" +msgstr "展开所有图片" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "您好!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "{0}用户" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +#: ../../../../templates/themes/ukko/ukko.js:52 +#: ../../../../templates/themes/ukko/ukko.js:63 +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 +#: ../../../../templates/themes/ukko/ukko.js:56 +#: ../../../../templates/themes/ukko/ukko.js:68 +msgid "(show threads from this board)" +msgstr "(在此版块显示主题帖)" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +#: ../../../../templates/themes/ukko/ukko.js:81 +msgid "No more threads to display" +msgstr "没有更多主题帖显示" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +#: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 +msgid "Loading..." +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 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "上传URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 ../../../../js/quick-reply.js:281 +msgid "Comment" +msgstr "评论" + +#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 +#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 +#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 +#: ../../../../js/quick-reply.js:289 ../../../../js/quick-reply.js:410 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 +#: ../../../../js/watch.js:361 ../../../../js/watch.js:362 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:372 +#: ../../../../js/watch.js:373 ../../../../js/watch.js:381 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +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 ../../../../js/watch.js:374 +#: ../../../../js/watch.js:379 ../../../../js/watch.js:380 +msgid "Watch this board" +msgstr "关注此版块" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Sunday" +msgstr "星期日" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Monday" +msgstr "星期一" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Tuesday" +msgstr "星期二" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Wednesday" +msgstr "星期三" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Thursday" +msgstr "星期四" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Friday" +msgstr "星期五" + +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 +msgid "Saturday" +msgstr "星期六" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "January" +msgstr "一月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "February" +msgstr "二月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "March" +msgstr "三月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "April" +msgstr "四月" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 +msgid "May" +msgstr "五月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "June" +msgstr "六月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "July" +msgstr "七月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "August" +msgstr "八月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "September" +msgstr "九月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "October" +msgstr "十月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "November" +msgstr "十一月" + +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 +msgid "December" +msgstr "十二月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jan" +msgstr "一月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Feb" +msgstr "二月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Mar" +msgstr "三月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Apr" +msgstr "四月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jun" +msgstr "六月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Jul" +msgstr "七月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Aug" +msgstr "八月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Sep" +msgstr "九月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Oct" +msgstr "十月" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Nov" +msgstr "十一" + +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 +msgid "Dec" +msgstr "十二月" + +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 +msgid "AM" +msgstr "AM" + +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 +msgid "PM" +msgstr "PM" + +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 +msgid "am" +msgstr "am" + +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 +msgid "pm" +msgstr "pm" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "您的浏览器不支持HTML5视频。" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +#: ../../../../js/expand-video.js:193 +msgid "[play once]" +msgstr "" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +#: ../../../../js/expand-video.js:194 +msgid "[loop]" +msgstr "" + +#: ../../../../js/webm-settings.js:42 ../../../../js/webm-settings.js:45 +msgid "WebM Settings" +msgstr "WebM设置" + +#: ../../../../js/webm-settings.js:44 ../../../../js/webm-settings.js:54 +msgid "Expand videos inline" +msgstr "" + +#: ../../../../js/webm-settings.js:45 ../../../../js/webm-settings.js:55 +msgid "Play videos on hover" +msgstr "" + +#: ../../../../js/webm-settings.js:46 ../../../../js/webm-settings.js:56 +msgid "Default volume" +msgstr "" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "树形" + +#: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 +msgid "Shrink all images" +msgstr "" + +#: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 +msgid "Animate GIFs" +msgstr "GIF动画" + +#: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 +#: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 +msgid "Unanimate GIFs" +msgstr "" + +#: ../../../../js/webm-settings.js:41 +msgid "WebM" +msgstr "WebM" + +#: ../../../../js/live-index.js:25 ../../../../js/live-index.js:84 +msgid "No new posts." +msgstr "没有新帖。" + +#: ../../../../js/live-index.js:30 ../../../../js/live-index.js:73 +msgid "No new threads." +msgstr "没有新主题帖" + +#: ../../../../js/live-index.js:72 +#, python-brace-format +msgid "There are {0} new threads." +msgstr "有{0}个新主题帖." + +#: ../../../../js/live-index.js:83 +#, python-brace-format +msgid "There are {0} new posts in this thread." +msgstr "" + +#: ../../../../js/options.js:106 +msgid "Options" +msgstr "选项" + +#: ../../../../js/options/general.js:15 +msgid "General" +msgstr "" + +#: ../../../../js/options/general.js:18 +msgid "Storage: " +msgstr "" + +#: ../../../../js/options/general.js:21 +msgid "Export" +msgstr "导出" + +#: ../../../../js/options/general.js:27 +msgid "Import" +msgstr "导入" + +#: ../../../../js/options/general.js:28 +msgid "Paste your storage data" +msgstr "" + +#: ../../../../js/options/general.js:40 +msgid "Erase" +msgstr "删除" + +#: ../../../../js/options/general.js:41 +msgid "" +"Are you sure you want to erase your storage? This involves your hidden " +"threads, watched threads, post password and many more." +msgstr "" + +#: ../../../../js/options/user-css.js:14 +msgid "User CSS" +msgstr "用户CSS" + +#: ../../../../js/options/user-css.js:23 +msgid "Update custom CSS" +msgstr "更新自定义CSS" + +#: ../../../../js/options/user-css.js:45 +msgid "Enter here your own CSS rules..." +msgstr "在此输入您自己的CSS规则..." + +#: ../../../../js/options/user-css.js:46 +msgid "" +"If you want to make a redistributable style, be sure to\n" +" have a Yotsuba B theme selected." +msgstr "" + +#: ../../../../js/options/user-css.js:47 +msgid "You can include CSS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/options/user-js.js:14 +msgid "User JS" +msgstr "用户JS" + +#: ../../../../js/options/user-js.js:23 +msgid "Update custom Javascript" +msgstr "更新自定义Javascript" + +#: ../../../../js/options/user-js.js:54 +msgid "Enter here your own Javascript code..." +msgstr "在此输入您自己的Javascript代码..." + +#: ../../../../js/options/user-js.js:55 +msgid "" +"Have a backup of your storage somewhere, as messing here\n" +" may render you this website unusable." +msgstr "" + +#: ../../../../js/options/user-js.js:56 +msgid "You can include JS files from remote servers, for example:" +msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "颜色ID" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "更新" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/zh_CN/LC_MESSAGES/tinyboard.mo b/inc/locale/zh_CN/LC_MESSAGES/tinyboard.mo new file mode 100644 index 00000000..9c0355ce Binary files /dev/null and b/inc/locale/zh_CN/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/zh_CN/LC_MESSAGES/tinyboard.po b/inc/locale/zh_CN/LC_MESSAGES/tinyboard.po new file mode 100644 index 00000000..305bdd48 --- /dev/null +++ b/inc/locale/zh_CN/LC_MESSAGES/tinyboard.po @@ -0,0 +1,3490 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# Nicholas Chen , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" +"Last-Translator: Marcin Łabanowski \n" +"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/zh_CN/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\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 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 +msgid "second" +msgid_plural "seconds" +msgstr[0] "秒" + +#. 60*60 = 3600 +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "分钟" + +#. 60*60*24 = 86400 +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 +msgid "hour" +msgid_plural "hours" +msgstr[0] "小时" + +#. 60*60*24*7 = 604800 +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 +msgid "day" +msgid_plural "days" +msgstr[0] "天" + +#. 60*60*24*365 = 31536000 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +#: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 +#: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 +msgid "week" +msgid_plural "weeks" +msgstr[0] "星期" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +#: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 +#: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 +msgid "year" +msgid_plural "years" +msgstr[0] "年" + +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 +#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 +msgid "Banned!" +msgstr "被封锁!" + +#. 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 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 +msgid "Previous" +msgstr "前一页" + +#. 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 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 +#: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 +msgid "Next" +msgstr "后一页" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +#: ../../../../inc/display.php:126 +msgid "Error" +msgstr "错误" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +#: ../../../../inc/display.php:127 +msgid "An error has occured." +msgstr "有错误发生" + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +#: ../../../../inc/display.php:143 +msgid "Login" +msgstr "登陆" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#: ../../../../inc/display.php:262 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "帖子太长。点击这里 查看全部文字。" + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:60 +msgid "Ban" +msgstr "封锁" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 +msgid "Ban & Delete" +msgstr "封锁 & 删除" + +#. line 4 +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Delete file" +msgstr "删除文件" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:29 +msgid "Are you sure you want to delete this file?" +msgstr "您确定要删除此文件吗?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "损坏的文件" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Are you sure you want to spoiler this file?" +msgstr "您确定要损坏这个文件吗?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:193 +msgid "Move reply to another board" +msgstr "将回复移至另一版块" + +#: ../../../../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/display.php:412 ../../../../inc/display.php:541 +#: ../../../../inc/mod/pages.php:1508 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 +msgid "Edit post" +msgstr "修改帖子" + +#. line 5 +#. line 6 +#: ../../../../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 ../../../../inc/display.php:490 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:38 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Delete" +msgstr "删除" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:36 +msgid "Are you sure you want to delete this?" +msgstr "您确定要删除这个?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Delete all posts by IP" +msgstr "删除某IP发布的所有帖子" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:44 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "您确定要删除该IP发布的所有帖子吗?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "Delete all posts by IP across all boards" +msgstr "删除某IP在所有版块的所有帖子" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:52 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "您确定要删除该IP在所有版块的所有帖子吗?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 +msgid "Make thread not sticky" +msgstr "取消主题帖置顶" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:106 +msgid "Make thread sticky" +msgstr "主题帖置顶" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:122 +msgid "Allow thread to be bumped" +msgstr "允许主题帖顶帖" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:132 +msgid "Prevent thread from being bumped" +msgstr "防止主题帖被顶帖" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:148 +msgid "Unlock thread" +msgstr "解锁主题帖" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:158 +msgid "Lock thread" +msgstr "锁主题帖" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +#: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:181 +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:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +#: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 +msgid "You have been muted for unoriginal content." +msgstr "您被禁止在非原创内容中发言。" + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +#: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 +msgid "New Topic" +msgstr "新主题" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 +msgid "New Reply" +msgstr "新回复" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +#: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "在发帖前潜一下水" + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 +msgid "You look like a bot." +msgstr "您像是是网络机器人" + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "您的浏览器发送了一个无效的或者没有HTTP引用" + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 +#, php-format +msgid "The %s field was too long." +msgstr "%s字段太长。" + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 +msgid "The body was too long." +msgstr "正文太长。" + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 +msgid "The body was too short or empty." +msgstr "正文太短或为空。" + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 +msgid "You must upload an image." +msgstr "您必须上传一张图片。" + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 +msgid "The server failed to handle your upload." +msgstr "服务器处理您的上传失败。" + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 +msgid "Unsupported image format." +msgstr "不支持的图片格式" + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 +msgid "Invalid board!" +msgstr "无效的版块!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 +msgid "Thread specified does not exist." +msgstr "所指定的主题帖不存在." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 +msgid "Thread locked. You may not reply at this time." +msgstr "主题帖被锁. 您目前不能回复." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 +msgid "Thread has reached its maximum reply limit." +msgstr "" + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 +msgid "Thread has reached its maximum image limit." +msgstr "" + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 +msgid "You didn't make a post." +msgstr "您没有发帖." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 +msgid "Flood detected; Post discarded." +msgstr "检测到灌水; 帖子被摈弃." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 +msgid "Your request looks automated; Post discarded." +msgstr "您的请求像是自动化的; 帖子被摈弃." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 +msgid "Unoriginal content!" +msgstr "非原创内容!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "" + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "" + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "您的IP地址被列举在%s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 +msgid "Too many links; flood detected." +msgstr "太多链接;检查到灌水帖。" + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 +msgid "Too many cites; post discarded." +msgstr "" + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 +msgid "Too many cross-board links; post discarded." +msgstr "" + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 +msgid "You didn't select anything to delete." +msgstr "您还未选择要删除的项。" + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 +msgid "You didn't select anything to report." +msgstr "您还未选择要报告的项。" + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 +msgid "You can't report that many posts at once." +msgstr "您不能一次报告太多帖子。" + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 +msgid "Wrong password…" +msgstr "错误的密码..." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 +msgid "Invalid image." +msgstr "无效的图片" + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +msgid "Unknown file extension." +msgstr "未知的文件后缀名。" + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 +msgid "The file was too big." +msgstr "文件太大。" + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 +#, php-format +msgid "That file already exists!" +msgstr "" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 +#, php-format +msgid "That file already exists in this thread!" +msgstr "" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 +msgid "Invalid username and/or password." +msgstr "无效的用户名或密码" + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 +msgid "You are not a mod…" +msgstr "您不是版主..." + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 +#, php-format +msgid "The %s field is required." +msgstr "%s字段必填。" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 +#, php-format +msgid "The %s field was invalid." +msgstr "%s字段无效。" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 +#, php-format +msgid "There is already a %s board." +msgstr "已经有一个%s版块." + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 +msgid "You don't have permission to do that." +msgstr "" + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 +msgid "That post doesn't exist…" +msgstr "帖子不存在..." + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 +msgid "Page not found." +msgstr "找不到页面." + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 +msgid "That theme doesn't exist!" +msgstr "主题不存在!" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +#: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "确认动作" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "无法找到当前版本!(查看.installed文件)" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "搜索结果。" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "修改版块" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "无法在创建后打开版块。" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "新版块" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "布告栏" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "新闻" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. 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 +#: ../../../../inc/mod/pages.php:849 +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 +#: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 +msgid "New ban" +msgstr "新封锁" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 +msgid "Ban list" +msgstr "封锁列表" + +#. line 38 +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +#: ../../../../inc/mod/pages.php:1172 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 +msgid "Move reply" +msgstr "移动回复" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +#: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +#: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +#: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 +msgid "Move thread" +msgstr "移动主题" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 +msgid "Edit user" +msgstr "修改用户" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +#: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 +msgid "Manage users" +msgstr "管理用户" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +#: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 +#: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 +msgid "New PM for" +msgstr "发送悄悄话给" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +#: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 +msgid "Private message" +msgstr "悄悄话" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +#: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 +msgid "PM inbox" +msgstr "悄悄话收件箱" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +#: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 +msgid "Rebuild" +msgstr "重建立" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +#: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +#: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 +#: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 +msgid "Config editor" +msgstr "配置编辑器" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +#: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 +msgid "Themes directory doesn't exist!" +msgstr "主题路径不存在!" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +#: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +#: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 +msgid "Manage themes" +msgstr "管理主题" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +#: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +#: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +#: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "数据库错误:" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "封锁的?" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "您没有被封锁。" + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "返回" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "错误信息" + +#. line 2 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 +msgid "Delete Post" +msgstr "删除帖子" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:301 +msgid "File" +msgstr "文件" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#. line 144 +#. line 21 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:411 +msgid "Password" +msgstr "密码" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Reason" +msgstr "原因" + +#. line 10 +#. line 12 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 +msgid "Report" +msgstr "报告" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 +msgid "Return to dashboard" +msgstr "返回控制面板" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "发帖模式:回复" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "返回" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "没有主题" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "在" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "文件:" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +#: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:141 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:179 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:220 +msgid "Spoiler Image" +msgstr "损坏的图片" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 +msgid "Reply" +msgstr "回复" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 +msgid "View All" +msgstr "查看全部" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "%count%帖子" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 +msgid "and" +msgstr "和" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 +msgid "omitted. Click reply to view." +msgstr "省略. 点击回复查看" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 7 +#. 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 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "姓名" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:97 +msgid "Email" +msgstr "Email" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:161 +msgid "Subject" +msgstr "主题" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "更新" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. 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 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:192 +msgid "Comment" +msgstr "评论" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:240 +msgid "Verification" +msgstr "验证" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:313 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +msgid "Embed" +msgstr "嵌入" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:353 +msgid "Flags" +msgstr "" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +msgid "Sticky" +msgstr "置顶" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:381 +msgid "Lock" +msgstr "锁" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:391 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:395 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:426 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "帖子搜索被禁止" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "没有结果。" + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 118 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 +msgid "Search" +msgstr "搜索" + +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +#: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 +msgid "New user" +msgstr "新用户" + +#: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "版块" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "修改" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "创建新版块" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "消息" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "管理" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "修改密码" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 +msgid "Configuration" +msgstr "" + +#. line 127 +#. line 130 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 +msgid "Other" +msgstr "其他" + +#. line 139 +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Debug" +msgstr "调试" + +#. line 141 +#. line 144 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#. line 145 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +#: ../../../../inc/mod/pages.php:2288 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 +msgid "Recent posts" +msgstr "最近的帖子" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 +msgid "SQL" +msgstr "SQL" + +#. line 164 +#. line 167 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 +msgid "User account" +msgstr "用户帐户" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 +msgid "Logout" +msgstr "登出" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "新帖" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "发帖到布告栏" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "删除" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "被删除?" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "员工" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "日期" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "动作" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "移除" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "状态" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "过期" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "活跃的" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "没有原因" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "版块" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "所有版块" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 50 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "设置" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 52 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "过期" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 53 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "是" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 +msgid "No" +msgstr "否" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "解除封锁" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "时间" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "动作" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "隐藏的" + +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "消息" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "长度" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "短语:" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "帖子" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "为期" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "用户名" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "继续" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "没有报告。" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +#: ../../../../post.php:894 ../../../../post.php:896 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +#: ../../../../post.php:898 ../../../../post.php:900 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +#: ../../../../post.php:905 ../../../../post.php:907 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +#: ../../../../post.php:910 ../../../../post.php:912 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "您被封锁了! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "您被封锁了! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#. line 59 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 +msgid "expires" +msgstr "过期" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 +msgid "will not expire" +msgstr "不会过期" + +#. line 78 +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 +msgid "Your IP address is" +msgstr "您的IP地址是" + +#. line 86 +#. line 94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 109 +#. line 120 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#. line 111 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 122 +#. line 129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 124 +#. line 131 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#. line 127 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "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 "类型" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "没有" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "晋升" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "降级" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "主题ID" + +#. 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 +#. line 13 +#. line 22 +#. line 13 +#. line 22 +#. line 13 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "报告日期" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "" + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "描述" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "缩略图" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "用户主题" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "重新配置" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "安装" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "解除安装" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "组" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "所有版块" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "创建用户" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "保存更改" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "删除用户" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "" + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:266 +msgid "Flag" +msgstr "" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:272 +msgid "None" +msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" + +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 +msgid "You have attempted to upload too many images!" +msgstr "" + +#. line 7 +#: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 +msgid "Spoiler file" +msgstr "" + +#. line 26 +#. line 35 +#. line 26 +#. line 35 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:90 +msgid "Bump order" +msgstr "" + +#. line 27 +#. line 36 +#. line 27 +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 +msgid "Last reply" +msgstr "最新回复" + +#. line 28 +#. line 37 +#. line 28 +#. line 37 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:94 +msgid "Creation date" +msgstr "创建日期" + +#. line 29 +#. line 38 +#. line 29 +#. line 38 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:98 +msgid "Reply count" +msgstr "回复数" + +#. line 30 +#. line 39 +#. line 30 +#. line 39 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +msgid "Random" +msgstr "随机" + +#. line 33 +#. line 26 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:85 +msgid "Sort by" +msgstr "排序" + +#. line 42 +#. line 34 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:108 +msgid "Image size" +msgstr "图片尺寸" + +#. line 44 +#. line 37 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:117 +msgid "Small" +msgstr "小" + +#. line 45 +#. line 38 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:121 +msgid "Large" +msgstr "大" + +#. line 6 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 +msgid "Post ID" +msgstr "帖子ID" + +#. line 29 +#: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 +msgid "Target thread" +msgstr "" + +#: ../../../../post.php:48 +msgid "Post deletion is not allowed!" +msgstr "" + +#: ../../../../post.php:385 +msgid "Unrecognized file size determination method." +msgstr "" + +#: ../../../../post.php:519 +msgid "Invalid flag selection!" +msgstr "" + +#: ../../../../post.php:631 ../../../../post.php:633 +msgid "exiftool failed!" +msgstr "" + +#: ../../../../post.php:641 ../../../../post.php:643 +msgid "Could not auto-orient image!" +msgstr "" + +#: ../../../../post.php:695 ../../../../post.php:697 +msgid "Could not strip EXIF metadata!" +msgstr "" + +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 +msgid "There was a problem processing your webm." +msgstr "" + +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 +msgid "Invalid webm uploaded." +msgstr "无效的webm上传" + +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 +msgid "" +"The uploaded webm contains an audio or another type of additional stream." +msgstr "" + +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 +msgid "The uploaded webm is longer than " +msgstr "" + +#. line 48 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:190 +msgid "Go to top" +msgstr "返回顶部" + +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:80 +msgid "Don't show my flag" +msgstr "" + +#. line 36 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 +msgid "Very small" +msgstr "太小" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "(无评论)" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/locale/zh_TW/LC_MESSAGES/javascript.po b/inc/locale/zh_TW/LC_MESSAGES/javascript.po index d0f7f059..555b43ec 100644 --- a/inc/locale/zh_TW/LC_MESSAGES/javascript.po +++ b/inc/locale/zh_TW/LC_MESSAGES/javascript.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:39+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -118,7 +118,7 @@ msgid "Delete" msgstr "刪除" #: ../../../../js/quick-post-controls.js:35 -#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:37 ../../../../js/mod/ban-list.js:40 msgid "Reason" msgstr "理由" @@ -213,43 +213,45 @@ msgid "disabled" msgstr "停用" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sun" msgstr "日" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Mon" msgstr "一" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Tue" msgstr "二" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Wed" msgstr "三" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Thu" msgstr "四" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Fri" msgstr "五" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 -#: ../../../../js/local-time.js:30 +#: ../../../../js/local-time.js:30 ../../../../templates/main.js:63 msgid "Sat" 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 +#: ../../../../js/catalog-link.js:28 ../../../../js/catalog-link.js:39 +#: ../../../../js/catalog-link.js:47 msgid "Catalog" msgstr "型錄" @@ -317,6 +319,7 @@ msgstr "沒有可顯示的討論串" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:103 +#: ../../../../js/infinite-scroll.js:48 msgid "Loading..." msgstr "載入中……" @@ -433,139 +436,140 @@ msgstr "監視本版" msgid "Click on any image on this site to load it into oekaki applet" msgstr "點選本站的圖片,把它載入於 oekaki applet" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Sunday" msgstr "週日" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Monday" msgstr "週一" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Tuesday" msgstr "週二" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Wednesday" msgstr "週三" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Thursday" msgstr "週四" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Friday" msgstr "週五" -#: ../../../../js/local-time.js:29 +#: ../../../../js/local-time.js:29 ../../../../templates/main.js:62 msgid "Saturday" msgstr "週六" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "January" msgstr "一月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "February" msgstr "二月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "March" msgstr "三月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "April" msgstr "四月" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +#: ../../../../templates/main.js:64 ../../../../templates/main.js:65 msgid "May" msgstr "五月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "June" msgstr "六月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "July" msgstr "七月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "August" msgstr "八月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "September" msgstr "九月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "October" msgstr "十月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "November" msgstr "十一月" -#: ../../../../js/local-time.js:31 +#: ../../../../js/local-time.js:31 ../../../../templates/main.js:64 msgid "December" msgstr "十二月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jan" msgstr "一月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Feb" msgstr "二月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Mar" msgstr "三月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Apr" msgstr "四月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jun" msgstr "六月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Jul" msgstr "七月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Aug" msgstr "八月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Sep" msgstr "九月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Oct" msgstr "十月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Nov" msgstr "十一月" -#: ../../../../js/local-time.js:32 +#: ../../../../js/local-time.js:32 ../../../../templates/main.js:65 msgid "Dec" msgstr "十二月" -#: ../../../../js/local-time.js:33 +#: ../../../../js/local-time.js:33 ../../../../templates/main.js:66 msgid "AM" msgstr "上午" -#: ../../../../js/local-time.js:34 +#: ../../../../js/local-time.js:34 ../../../../templates/main.js:67 msgid "PM" msgstr "下午" -#: ../../../../js/local-time.js:35 +#: ../../../../js/local-time.js:35 ../../../../templates/main.js:68 msgid "am" msgstr "上午" -#: ../../../../js/local-time.js:36 +#: ../../../../js/local-time.js:36 ../../../../templates/main.js:69 msgid "pm" msgstr "下午" @@ -604,16 +608,19 @@ msgid "Tree view" msgstr "樹狀檢視" #: ../../../../js/expand-all-images.js:32 +#: ../../../../js/expand-all-images.js:35 msgid "Shrink all images" msgstr "縮小所有圖片" #: ../../../../js/no-animated-gif.js:33 ../../../../js/no-animated-gif.js:37 +#: ../../../../js/no-animated-gif.js:40 msgid "Animate GIFs" msgstr "播放 GIF 動畫" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 #: ../../../../js/no-animated-gif.js:47 ../../../../js/no-animated-gif.js:57 -#: ../../../../js/no-animated-gif.js:62 +#: ../../../../js/no-animated-gif.js:62 ../../../../js/no-animated-gif.js:50 +#: ../../../../js/no-animated-gif.js:60 ../../../../js/no-animated-gif.js:65 msgid "Unanimate GIFs" msgstr "停止 GIF 動畫" @@ -716,3 +723,124 @@ msgstr "" #: ../../../../js/options/user-js.js:56 msgid "You can include JS files from remote servers, for example:" msgstr "" + +#: ../../../../js/id_colors.js:6 ../../../../js/id_colors.js:12 +msgid "Color IDs" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Update" +msgstr "" + +#: ../../../../js/mod/ban-list.js:29 +msgid "IP address" +msgstr "" + +#: ../../../../js/mod/ban-list.js:42 +msgid "Seen" +msgstr "" + +#: ../../../../js/mod/ban-list.js:44 +msgid "Message for which user was banned is included" +msgstr "" + +#: ../../../../js/mod/ban-list.js:45 +msgid "Message:" +msgstr "" + +#: ../../../../js/mod/ban-list.js:53 +msgid "Board" +msgstr "" + +#: ../../../../js/mod/ban-list.js:55 +msgid "all" +msgstr "" + +#: ../../../../js/mod/ban-list.js:57 +msgid "Set" +msgstr "" + +#: ../../../../js/mod/ban-list.js:58 +msgid " ago" +msgstr "" + +#: ../../../../js/mod/ban-list.js:61 +msgid "Expires" +msgstr "" + +#: ../../../../js/mod/ban-list.js:62 +msgid "never" +msgstr "" + +#: ../../../../js/mod/ban-list.js:64 +msgid "in " +msgstr "" + +#: ../../../../js/mod/ban-list.js:66 +msgid "Staff" +msgstr "" + +#: ../../../../js/mod/ban-list.js:73 +msgid "system" +msgstr "" + +#: ../../../../js/auto-reload.js:33 +msgid "Auto" +msgstr "" + +#: ../../../../js/auto-reload.js:141 +msgid "Updating..." +msgstr "" + +#: ../../../../js/auto-reload.js:183 +#, python-brace-format +msgid "Thread updated with {0} new post(s)" +msgstr "" + +#: ../../../../js/auto-reload.js:185 +msgid "No new posts found" +msgstr "" + +#: ../../../../js/auto-reload.js:191 +msgid "Thread deleted or pruned" +msgstr "" + +#: ../../../../js/auto-reload.js:199 +msgid "Error: " +msgstr "" + +#: ../../../../js/auto-reload.js:201 +msgid "Unknown error" +msgstr "" + +#: ../../../../js/infinite-scroll.js:47 +msgid "Page" +msgstr "" + +#: ../../../../js/infinite-scroll.js:82 +msgid "All" +msgstr "" + +#: ../../../../templates/main.js:29 ../../../../templates/main.js:47 +msgid "second(s)" +msgstr "" + +#: ../../../../templates/main.js:31 ../../../../templates/main.js:49 +msgid "minute(s)" +msgstr "" + +#: ../../../../templates/main.js:33 ../../../../templates/main.js:51 +msgid "hour(s)" +msgstr "" + +#: ../../../../templates/main.js:35 ../../../../templates/main.js:53 +msgid "day(s)" +msgstr "" + +#: ../../../../templates/main.js:37 ../../../../templates/main.js:55 +msgid "week(s)" +msgstr "" + +#: ../../../../templates/main.js:39 ../../../../templates/main.js:57 +msgid "year(s)" +msgstr "" diff --git a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo index 9eb7db59..2f2227ed 100644 Binary files a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo and b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po index 3c862ead..c50d83cc 100644 --- a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po +++ b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-09-21 04:38+0200\n" -"PO-Revision-Date: 2014-09-21 02:40+0000\n" +"POT-Creation-Date: 2014-10-18 13:47+0200\n" +"PO-Revision-Date: 2014-10-18 11:48+0000\n" "Last-Translator: Marcin Łabanowski \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -27,10 +27,12 @@ msgstr "" #: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:683 ../../../../inc/functions.php:700 +#: ../../../../inc/functions.php:701 ../../../../inc/functions.php:719 msgid "second" msgid_plural "seconds" msgstr[0] "秒" +#. 60*60 = 3600 #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 @@ -40,10 +42,12 @@ msgstr[0] "秒" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:685 ../../../../inc/functions.php:702 +#: ../../../../inc/functions.php:703 ../../../../inc/functions.php:721 msgid "minute" msgid_plural "minutes" msgstr[0] "分" +#. 60*60*24 = 86400 #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 @@ -53,10 +57,12 @@ msgstr[0] "分" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:687 ../../../../inc/functions.php:704 +#: ../../../../inc/functions.php:705 ../../../../inc/functions.php:723 msgid "hour" msgid_plural "hours" msgstr[0] "時" +#. 60*60*24*7 = 604800 #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 @@ -66,10 +72,12 @@ msgstr[0] "時" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:689 ../../../../inc/functions.php:706 +#: ../../../../inc/functions.php:707 ../../../../inc/functions.php:725 msgid "day" msgid_plural "days" msgstr[0] "日" +#. 60*60*24*365 = 31536000 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 @@ -79,6 +87,7 @@ msgstr[0] "日" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 #: ../../../../inc/functions.php:691 ../../../../inc/functions.php:708 +#: ../../../../inc/functions.php:709 ../../../../inc/functions.php:727 msgid "week" msgid_plural "weeks" msgstr[0] "週" @@ -92,6 +101,7 @@ msgstr[0] "週" #: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 #: ../../../../inc/functions.php:694 ../../../../inc/functions.php:711 +#: ../../../../inc/functions.php:729 msgid "year" msgid_plural "years" msgstr[0] "年" @@ -100,7 +110,7 @@ msgstr[0] "年" #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 #: ../../../../inc/functions.php:732 ../../../../inc/functions.php:727 -#: ../../../../inc/functions.php:755 +#: ../../../../inc/functions.php:755 ../../../../inc/functions.php:774 msgid "Banned!" msgstr "被封禁!" @@ -114,6 +124,7 @@ msgstr "被封禁!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1256 +#: ../../../../inc/functions.php:1261 ../../../../inc/functions.php:1275 msgid "Previous" msgstr "上一頁" @@ -127,7 +138,8 @@ msgstr "上一頁" #: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 ../../../../inc/functions.php:1261 -#: ../../../../inc/functions.php:1270 +#: ../../../../inc/functions.php:1270 ../../../../inc/functions.php:1280 +#: ../../../../inc/functions.php:1289 msgid "Next" msgstr "下一頁" @@ -218,7 +230,8 @@ msgstr "移動回覆到另一版" #: ../../../../inc/display.php:412 ../../../../inc/display.php:541 #: ../../../../inc/mod/pages.php:1508 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:208 -#: ../../../../inc/mod/pages.php:1509 +#: ../../../../inc/mod/pages.php:1509 ../../../../inc/mod/pages.php:1506 +#: ../../../../inc/mod/pages.php:1511 msgid "Edit post" msgstr "編輯貼文" @@ -315,6 +328,7 @@ msgstr "移動討論串到另一版" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 #: ../../../../inc/config.php:476 ../../../../inc/config.php:479 +#: ../../../../inc/config.php:482 msgid "You have been muted for unoriginal content." msgstr "您已因抄襲而被消音。" @@ -326,6 +340,7 @@ msgstr "您已因抄襲而被消音。" #: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792 #: ../../../../inc/config.php:803 ../../../../inc/config.php:829 +#: ../../../../inc/config.php:832 ../../../../inc/config.php:835 msgid "New Topic" msgstr "新主題" @@ -333,6 +348,7 @@ msgstr "新主題" #: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793 #: ../../../../inc/config.php:804 ../../../../inc/config.php:830 +#: ../../../../inc/config.php:833 ../../../../inc/config.php:836 msgid "New Reply" msgstr "新回覆" @@ -341,6 +357,7 @@ msgstr "新回覆" #: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804 #: ../../../../inc/config.php:815 ../../../../inc/config.php:841 +#: ../../../../inc/config.php:844 ../../../../inc/config.php:847 msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." @@ -366,6 +383,7 @@ msgstr "先多潛潛水,再來貼文吧!" #: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1023 msgid "You look like a bot." msgstr "您看起來像機器人。" @@ -373,6 +391,7 @@ msgstr "您看起來像機器人。" #: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1021 ../../../../inc/config.php:1024 msgid "Your browser sent an invalid or no HTTP referer." msgstr "您的瀏覽器送出無效的 HTTP referer." @@ -380,6 +399,7 @@ msgstr "您的瀏覽器送出無效的 HTTP referer." #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1022 ../../../../inc/config.php:1025 #, php-format msgid "The %s field was too long." msgstr "%s 欄位太長了。" @@ -388,6 +408,7 @@ msgstr "%s 欄位太長了。" #: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1023 ../../../../inc/config.php:1026 msgid "The body was too long." msgstr "內文太長了。" @@ -395,6 +416,7 @@ msgstr "內文太長了。" #: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1024 ../../../../inc/config.php:1027 msgid "The body was too short or empty." msgstr "內文太短或者為空。" @@ -402,6 +424,7 @@ msgstr "內文太短或者為空。" #: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1025 ../../../../inc/config.php:1028 msgid "You must upload an image." msgstr "您一定要上傳圖片。" @@ -409,6 +432,7 @@ msgstr "您一定要上傳圖片。" #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1027 ../../../../inc/config.php:1030 msgid "The server failed to handle your upload." msgstr "伺服器無法處理您的上傳。" @@ -416,6 +440,7 @@ msgstr "伺服器無法處理您的上傳。" #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1028 ../../../../inc/config.php:1031 msgid "Unsupported image format." msgstr "不支援的圖片格式。" @@ -423,6 +448,7 @@ msgstr "不支援的圖片格式。" #: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1026 +#: ../../../../inc/config.php:1029 ../../../../inc/config.php:1032 msgid "Invalid board!" msgstr "無效的版!" @@ -430,6 +456,7 @@ msgstr "無效的版!" #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1027 +#: ../../../../inc/config.php:1030 ../../../../inc/config.php:1033 msgid "Thread specified does not exist." msgstr "指定的討論串不存在。" @@ -437,6 +464,7 @@ msgstr "指定的討論串不存在。" #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1028 +#: ../../../../inc/config.php:1031 ../../../../inc/config.php:1034 msgid "Thread locked. You may not reply at this time." msgstr "討論串已鎖定。此時您不能回覆。" @@ -444,6 +472,7 @@ msgstr "討論串已鎖定。此時您不能回覆。" #: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1029 +#: ../../../../inc/config.php:1032 ../../../../inc/config.php:1035 msgid "Thread has reached its maximum reply limit." msgstr "討論串達到最大回覆數量。" @@ -451,6 +480,7 @@ msgstr "討論串達到最大回覆數量。" #: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1030 +#: ../../../../inc/config.php:1033 ../../../../inc/config.php:1036 msgid "Thread has reached its maximum image limit." msgstr "討論串達到最大圖片數量。" @@ -458,6 +488,7 @@ msgstr "討論串達到最大圖片數量。" #: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1031 +#: ../../../../inc/config.php:1034 ../../../../inc/config.php:1037 msgid "You didn't make a post." msgstr "您並未貼文。" @@ -465,6 +496,7 @@ msgstr "您並未貼文。" #: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1032 +#: ../../../../inc/config.php:1035 ../../../../inc/config.php:1038 msgid "Flood detected; Post discarded." msgstr "偵測到洪水攻擊;貼文已丟棄。" @@ -472,6 +504,7 @@ msgstr "偵測到洪水攻擊;貼文已丟棄。" #: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1033 +#: ../../../../inc/config.php:1036 ../../../../inc/config.php:1039 msgid "Your request looks automated; Post discarded." msgstr "您的請求看似自動化;貼文已丟棄。" @@ -479,6 +512,7 @@ msgstr "您的請求看似自動化;貼文已丟棄。" #: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1034 +#: ../../../../inc/config.php:1037 ../../../../inc/config.php:1040 msgid "Unoriginal content!" msgstr "抄襲!" @@ -486,6 +520,7 @@ msgstr "抄襲!" #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1035 +#: ../../../../inc/config.php:1038 ../../../../inc/config.php:1041 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." msgstr "抄襲!您已被消音 %d 秒。" @@ -494,6 +529,7 @@ msgstr "抄襲!您已被消音 %d 秒。" #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1036 +#: ../../../../inc/config.php:1039 ../../../../inc/config.php:1042 #, php-format msgid "You are muted! Expires in %d seconds." msgstr "您已被消音!將於 %d 秒後解除。" @@ -502,6 +538,7 @@ msgstr "您已被消音!將於 %d 秒後解除。" #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1037 +#: ../../../../inc/config.php:1040 ../../../../inc/config.php:1043 #, php-format msgid "Your IP address is listed in %s." msgstr "您的 IP 位址列於 %s 中。" @@ -510,6 +547,7 @@ msgstr "您的 IP 位址列於 %s 中。" #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1038 +#: ../../../../inc/config.php:1041 ../../../../inc/config.php:1044 msgid "Too many links; flood detected." msgstr "太多鏈結;已偵測洪水攻擊。" @@ -517,6 +555,7 @@ msgstr "太多鏈結;已偵測洪水攻擊。" #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1039 +#: ../../../../inc/config.php:1042 ../../../../inc/config.php:1045 msgid "Too many cites; post discarded." msgstr "太多引用;貼文已丟棄。" @@ -524,6 +563,7 @@ msgstr "太多引用;貼文已丟棄。" #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1040 +#: ../../../../inc/config.php:1043 ../../../../inc/config.php:1046 msgid "Too many cross-board links; post discarded." msgstr "太多跨版鏈結;貼文已丟棄。" @@ -531,6 +571,7 @@ msgstr "太多跨版鏈結;貼文已丟棄。" #: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1041 +#: ../../../../inc/config.php:1044 ../../../../inc/config.php:1047 msgid "You didn't select anything to delete." msgstr "您未選擇要刪除的東西。" @@ -538,6 +579,7 @@ msgstr "您未選擇要刪除的東西。" #: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1042 +#: ../../../../inc/config.php:1045 ../../../../inc/config.php:1048 msgid "You didn't select anything to report." msgstr "您未選擇要舉報的東西。" @@ -545,6 +587,7 @@ msgstr "您未選擇要舉報的東西。" #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1043 +#: ../../../../inc/config.php:1046 ../../../../inc/config.php:1049 msgid "You can't report that many posts at once." msgstr "您不能一次舉報這麼多貼文。" @@ -552,6 +595,7 @@ msgstr "您不能一次舉報這麼多貼文。" #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1044 +#: ../../../../inc/config.php:1047 ../../../../inc/config.php:1050 msgid "Wrong password…" msgstr "密碼錯誤…" @@ -559,6 +603,7 @@ msgstr "密碼錯誤…" #: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1045 +#: ../../../../inc/config.php:1048 ../../../../inc/config.php:1051 msgid "Invalid image." msgstr "無效的圖片。" @@ -566,6 +611,7 @@ msgstr "無效的圖片。" #: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1046 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 msgid "Unknown file extension." msgstr "未知的副檔名。" @@ -573,6 +619,7 @@ msgstr "未知的副檔名。" #: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1021 ../../../../inc/config.php:1047 +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1053 msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" msgstr "檔案大小限制:%maxsz% 位元組
您的檔案大小:%filesz% 位元組" @@ -580,6 +627,7 @@ msgstr "檔案大小限制:%maxsz% 位元組
您的檔案大小:%filesz% #: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1022 ../../../../inc/config.php:1048 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1054 msgid "The file was too big." msgstr "檔案太大了。" @@ -587,6 +635,7 @@ msgstr "檔案太大了。" #: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1023 ../../../../inc/config.php:1053 +#: ../../../../inc/config.php:1057 ../../../../inc/config.php:1060 #, php-format msgid "That file already exists!" msgstr "檔案已存在!" @@ -595,6 +644,7 @@ msgstr "檔案已存在!" #: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1024 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1058 ../../../../inc/config.php:1061 #, php-format msgid "That file already exists in this thread!" msgstr "檔案已存在於本討論串!" @@ -603,6 +653,7 @@ msgstr "檔案已存在於本討論串!" #: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1025 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1059 ../../../../inc/config.php:1062 #, php-format msgid "You'll have to wait another %s before deleting that." msgstr "您要等 %s 才能刪除它。" @@ -611,6 +662,7 @@ msgstr "您要等 %s 才能刪除它。" #: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1060 ../../../../inc/config.php:1063 msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgstr "MIME 類型偵測 XSS 漏洞 (IE);貼文已丟棄。" @@ -618,6 +670,7 @@ msgstr "MIME 類型偵測 XSS 漏洞 (IE);貼文已丟棄。" #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1027 ../../../../inc/config.php:1057 +#: ../../../../inc/config.php:1061 ../../../../inc/config.php:1064 msgid "Couldn't make sense of the URL of the video you tried to embed." msgstr "無法理解您試圖嵌入的影片 URL." @@ -625,6 +678,7 @@ msgstr "無法理解您試圖嵌入的影片 URL." #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1028 ../../../../inc/config.php:1058 +#: ../../../../inc/config.php:1062 ../../../../inc/config.php:1065 msgid "You seem to have mistyped the verification." msgstr "您似乎打錯驗證碼了。" @@ -633,6 +687,7 @@ msgstr "您似乎打錯驗證碼了。" #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:1031 ../../../../inc/config.php:1062 +#: ../../../../inc/config.php:1066 ../../../../inc/config.php:1069 #, php-format msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " @@ -643,6 +698,7 @@ msgstr "您只能一次解封 %s 位用戶。您試可解封 %u 位。" #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1032 ../../../../inc/config.php:1063 +#: ../../../../inc/config.php:1067 ../../../../inc/config.php:1070 msgid "Invalid username and/or password." msgstr "無效的用戶名或密碼。" @@ -650,6 +706,7 @@ msgstr "無效的用戶名或密碼。" #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 ../../../../inc/config.php:1064 +#: ../../../../inc/config.php:1068 ../../../../inc/config.php:1071 msgid "You are not a mod…" msgstr "您不是版務…" @@ -657,6 +714,7 @@ msgstr "您不是版務…" #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:1034 ../../../../inc/config.php:1065 +#: ../../../../inc/config.php:1069 ../../../../inc/config.php:1072 msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." @@ -666,6 +724,7 @@ msgstr "無效的用戶名或密碼。您的帳號可能已刪除或變更。" #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 #: ../../../../inc/config.php:1035 ../../../../inc/config.php:1066 +#: ../../../../inc/config.php:1070 ../../../../inc/config.php:1073 msgid "Invalid/malformed cookies." msgstr "無效的 cookie." @@ -673,6 +732,7 @@ msgstr "無效的 cookie." #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 #: ../../../../inc/config.php:1036 ../../../../inc/config.php:1067 +#: ../../../../inc/config.php:1071 ../../../../inc/config.php:1074 msgid "Your browser didn't submit an input when it should have." msgstr "您的瀏覽器未送出應送出的輸入資料。" @@ -680,6 +740,7 @@ msgstr "您的瀏覽器未送出應送出的輸入資料。" #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1068 +#: ../../../../inc/config.php:1072 ../../../../inc/config.php:1075 #, php-format msgid "The %s field is required." msgstr "%s 欄位必填。" @@ -688,6 +749,7 @@ msgstr "%s 欄位必填。" #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 #: ../../../../inc/config.php:1038 ../../../../inc/config.php:1069 +#: ../../../../inc/config.php:1073 ../../../../inc/config.php:1076 #, php-format msgid "The %s field was invalid." msgstr "%s 欄位無效。" @@ -696,6 +758,7 @@ msgstr "%s 欄位無效。" #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #: ../../../../inc/config.php:1039 ../../../../inc/config.php:1070 +#: ../../../../inc/config.php:1074 ../../../../inc/config.php:1077 #, php-format msgid "There is already a %s board." msgstr "已經有 %s 版了。" @@ -704,6 +767,7 @@ msgstr "已經有 %s 版了。" #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 #: ../../../../inc/config.php:1040 ../../../../inc/config.php:1071 +#: ../../../../inc/config.php:1075 ../../../../inc/config.php:1078 msgid "You don't have permission to do that." msgstr "您沒有權限做那個。" @@ -711,6 +775,7 @@ msgstr "您沒有權限做那個。" #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 #: ../../../../inc/config.php:1041 ../../../../inc/config.php:1072 +#: ../../../../inc/config.php:1076 ../../../../inc/config.php:1079 msgid "That post doesn't exist…" msgstr "貼文不存在…" @@ -718,6 +783,7 @@ msgstr "貼文不存在…" #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 #: ../../../../inc/config.php:1042 ../../../../inc/config.php:1073 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1080 msgid "Page not found." msgstr "頁面不存在。" @@ -725,6 +791,7 @@ msgstr "頁面不存在。" #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #: ../../../../inc/config.php:1043 ../../../../inc/config.php:1074 +#: ../../../../inc/config.php:1078 ../../../../inc/config.php:1081 #, php-format msgid "That mod already exists!" msgstr "版務 已存在!" @@ -733,6 +800,7 @@ msgstr "版務 已存在!" #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 #: ../../../../inc/config.php:1044 ../../../../inc/config.php:1075 +#: ../../../../inc/config.php:1079 ../../../../inc/config.php:1082 msgid "That theme doesn't exist!" msgstr "佈景不存在!" @@ -740,6 +808,7 @@ msgstr "佈景不存在!" #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 #: ../../../../inc/config.php:1045 ../../../../inc/config.php:1076 +#: ../../../../inc/config.php:1080 ../../../../inc/config.php:1083 msgid "Invalid security token! Please go back and try again." msgstr "無效的安全 token!請回去重試。" @@ -753,6 +822,7 @@ msgstr "無效的安全 token!請回去重試。" #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 ../../../../inc/config.php:1243 +#: ../../../../inc/config.php:1247 ../../../../inc/config.php:1250 msgid "USER WAS BANNED FOR THIS POST" msgstr "用戶因這篇貼文而被封禁" @@ -839,10 +909,14 @@ msgstr "仲裁記錄" #. 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 +#: ../../../../inc/mod/pages.php:849 msgid "IP" msgstr "IP" @@ -851,11 +925,15 @@ msgstr "IP" #: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 ../../../../inc/mod/pages.php:1447 +#: ../../../../inc/mod/pages.php:859 ../../../../inc/mod/pages.php:1444 +#: ../../../../inc/mod/pages.php:1449 msgid "New ban" msgstr "新封禁規則" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +#: ../../../../inc/mod/pages.php:911 ../../../../inc/mod/pages.php:903 +#: ../../../../templates/themes/public_banlist/theme.php:42 msgid "Ban list" msgstr "封禁名單" @@ -863,17 +941,20 @@ msgstr "封禁名單" #: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 -#: ../../../../inc/mod/pages.php:1173 +#: ../../../../inc/mod/pages.php:1173 ../../../../inc/mod/pages.php:1170 +#: ../../../../inc/mod/pages.php:1175 msgid "Move reply" msgstr "移動回覆" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 ../../../../inc/mod/pages.php:1199 +#: ../../../../inc/mod/pages.php:1196 ../../../../inc/mod/pages.php:1201 msgid "Target and source board are the same." msgstr "目的與來源版相同。" #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 ../../../../inc/mod/pages.php:1372 +#: ../../../../inc/mod/pages.php:1369 ../../../../inc/mod/pages.php:1374 msgid "Impossible to move thread; there is only one board." msgstr "不可能移動討論串;只有一版。" @@ -881,18 +962,20 @@ msgstr "不可能移動討論串;只有一版。" #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 ../../../../inc/mod/pages.php:1376 +#: ../../../../inc/mod/pages.php:1373 ../../../../inc/mod/pages.php:1378 msgid "Move thread" msgstr "移動討論串" #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 -#: ../../../../inc/mod/pages.php:1792 +#: ../../../../inc/mod/pages.php:1792 ../../../../inc/mod/pages.php:1796 msgid "Edit user" msgstr "編輯用戶" #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 #: ../../../../inc/mod/pages.php:1871 ../../../../inc/mod/pages.php:1872 +#: ../../../../inc/mod/pages.php:1876 msgid "Manage users" msgstr "管理用戶" @@ -901,11 +984,13 @@ msgstr "管理用戶" #: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 #: ../../../../inc/mod/pages.php:1961 ../../../../inc/mod/pages.php:2037 #: ../../../../inc/mod/pages.php:1962 ../../../../inc/mod/pages.php:2038 +#: ../../../../inc/mod/pages.php:1966 ../../../../inc/mod/pages.php:2042 msgid "New PM for" msgstr "私訊給" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 ../../../../inc/mod/pages.php:1969 +#: ../../../../inc/mod/pages.php:1973 msgid "Private message" msgstr "私人訊息" @@ -913,6 +998,7 @@ msgstr "私人訊息" #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 ../../../../inc/mod/pages.php:1990 +#: ../../../../inc/mod/pages.php:1994 msgid "PM inbox" msgstr "私訊收件匣" @@ -923,12 +1009,14 @@ msgstr "私訊收件匣" #: ../../../../inc/mod/pages.php:2106 ../../../../inc/mod/pages.php:2110 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../inc/mod/pages.php:2107 ../../../../inc/mod/pages.php:2111 +#: ../../../../inc/mod/pages.php:2115 msgid "Rebuild" msgstr "重建" #: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 #: ../../../../inc/mod/pages.php:2195 ../../../../inc/mod/pages.php:2196 +#: ../../../../inc/mod/pages.php:2200 msgid "Report queue" msgstr "舉報 queue" @@ -936,55 +1024,66 @@ msgstr "舉報 queue" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 #: ../../../../inc/mod/pages.php:2328 ../../../../inc/mod/pages.php:2422 +#: ../../../../inc/mod/pages.php:2327 ../../../../inc/mod/pages.php:2421 +#: ../../../../inc/mod/pages.php:2332 ../../../../inc/mod/pages.php:2426 msgid "Config editor" msgstr "設定編輯器" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 ../../../../inc/mod/pages.php:2439 +#: ../../../../inc/mod/pages.php:2438 ../../../../inc/mod/pages.php:2443 msgid "Themes directory doesn't exist!" msgstr "佈景目錄不存在!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 ../../../../inc/mod/pages.php:2441 +#: ../../../../inc/mod/pages.php:2440 ../../../../inc/mod/pages.php:2445 msgid "Cannot open themes directory; check permissions." msgstr "無法打開佈景目錄;檢查權限。" #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 #: ../../../../inc/mod/pages.php:2466 ../../../../inc/mod/pages.php:2460 +#: ../../../../inc/mod/pages.php:2459 ../../../../inc/mod/pages.php:2464 msgid "Manage themes" msgstr "管理佈景" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #: ../../../../inc/mod/pages.php:2531 ../../../../inc/mod/pages.php:2525 +#: ../../../../inc/mod/pages.php:2524 ../../../../inc/mod/pages.php:2529 #, php-format msgid "Installed theme: %s" msgstr "已安裝佈景:%s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 ../../../../inc/mod/pages.php:2536 +#: ../../../../inc/mod/pages.php:2535 ../../../../inc/mod/pages.php:2540 #, php-format msgid "Configuring theme: %s" msgstr "設定佈景:%s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 ../../../../inc/mod/pages.php:2565 +#: ../../../../inc/mod/pages.php:2564 ../../../../inc/mod/pages.php:2569 #, php-format msgid "Rebuilt theme: %s" msgstr "重建佈景:%s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 ../../../../inc/mod/pages.php:2604 +#: ../../../../inc/mod/pages.php:2603 ../../../../inc/mod/pages.php:2608 msgid "Debug: Anti-spam" msgstr "除錯:反垃圾" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 ../../../../inc/mod/pages.php:2638 +#: ../../../../inc/mod/pages.php:2637 ../../../../inc/mod/pages.php:2642 msgid "Debug: Recent posts" msgstr "除錯:最新貼文" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 ../../../../inc/mod/pages.php:2662 +#: ../../../../inc/mod/pages.php:2661 ../../../../inc/mod/pages.php:2666 msgid "Debug: SQL" msgstr "除錯:SQL" @@ -1052,6 +1151,10 @@ msgstr "刪除貼文" #. line 4 #. line 97 #. line 4 +#. line 97 +#. line 4 +#. line 97 +#. line 4 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -1086,6 +1189,8 @@ msgstr "檔案" #. line 21 #. line 14 #. line 144 +#. line 21 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -1165,6 +1270,12 @@ msgstr "密碼" #. line 23 #. line 48 #. line 10 +#. line 5 +#. line 10 +#. line 108 +#. line 32 +#. line 23 +#. line 48 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1237,6 +1348,8 @@ msgstr "沒有主題" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:124 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:132 msgid "by" msgstr "由" @@ -1286,6 +1399,7 @@ msgstr "Spoiler 圖片" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:227 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:229 msgid "Reply" msgstr "回覆" @@ -1297,6 +1411,7 @@ msgstr "回覆" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:241 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:243 msgid "View All" msgstr "顯示全部" @@ -1308,6 +1423,7 @@ msgstr "顯示全部" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:258 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:260 msgid "Last 1 Post" msgid_plural "Last %count% Posts" msgstr[0] "最新的 %count% 則貼文" @@ -1320,6 +1436,7 @@ msgstr[0] "最新的 %count% 則貼文" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:295 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:297 msgid "1 post" msgid_plural "%count% posts" msgstr[0] "%count% 則貼文" @@ -1333,6 +1450,8 @@ msgstr[0] "%count% 則貼文" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:301 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:303 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:141 msgid "and" msgstr "與" @@ -1344,6 +1463,7 @@ msgstr "與" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:313 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:315 msgid "1 image reply" msgid_plural "%count% image replies" msgstr[0] "%count% 則含圖回覆" @@ -1356,6 +1476,7 @@ msgstr[0] "%count% 則含圖回覆" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:320 msgid "omitted. Click reply to view." msgstr "已省略。點擊回覆以查看" @@ -1384,6 +1505,9 @@ msgstr "已省略。點擊回覆以查看" #. line 7 #. 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 @@ -1407,6 +1531,8 @@ msgstr "名稱" #. 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 @@ -1441,6 +1567,9 @@ msgstr "Email" #. line 23 #. line 12 #. 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 @@ -1469,6 +1598,8 @@ msgstr "更新" #. 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 @@ -1560,6 +1691,10 @@ msgstr "旗標" #. line 129 #. line 128 #. line 129 +#. line 128 +#. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1604,6 +1739,10 @@ msgstr "黏性" #. line 133 #. line 132 #. line 133 +#. line 132 +#. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1648,6 +1787,10 @@ msgstr "鎖定" #. line 137 #. line 136 #. line 137 +#. line 136 +#. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1745,6 +1888,12 @@ msgstr "沒有結果。" #. line 13 #. line 2 #. line 13 +#. line 118 +#. line 16 +#. line 22 +#. line 2 +#. line 13 +#. line 2 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1753,38 +1902,43 @@ msgstr "沒有結果。" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:61 msgid "Search" msgstr "搜尋" -#: ../../../../inc/mod/pages.php:939 +#: ../../../../inc/mod/pages.php:939 ../../../../inc/mod/pages.php:936 +#: ../../../../inc/mod/pages.php:941 msgid "Ban appeal not found!" msgstr "找不到封禁申訴!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 ../../../../inc/mod/pages.php:995 +#: ../../../../inc/mod/pages.php:992 ../../../../inc/mod/pages.php:997 msgid "Ban appeals" msgstr "封禁申訴" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 -#: ../../../../inc/mod/pages.php:1850 +#: ../../../../inc/mod/pages.php:1850 ../../../../inc/mod/pages.php:1854 msgid "New user" msgstr "新用戶" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 -#: ../../../../inc/mod/pages.php:1905 +#: ../../../../inc/mod/pages.php:1905 ../../../../inc/mod/pages.php:1909 msgid "Impossible to promote/demote user." msgstr "不可能升級/降級用戶。" #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 -#: ../../../../inc/mod/pages.php:2684 +#: ../../../../inc/mod/pages.php:2684 ../../../../inc/mod/pages.php:2683 +#: ../../../../inc/mod/pages.php:2688 msgid "Debug: APC" msgstr "除錯:APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1037 ../../../../inc/config.php:1046 -#: ../../../../inc/config.php:1077 +#: ../../../../inc/config.php:1077 ../../../../inc/config.php:1081 +#: ../../../../inc/config.php:1084 msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " @@ -1803,6 +1957,9 @@ msgstr "您的程式碼有 PHP 語法錯誤。請回去更正。PHP 說:" #. line 2 #. line 46 #. line 6 +#. line 2 +#. line 46 +#. line 6 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 @@ -1868,7 +2025,8 @@ msgstr "反垃圾" #: ../../../../inc/mod/pages.php:2288 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 -#: ../../../../inc/mod/pages.php:2283 +#: ../../../../inc/mod/pages.php:2283 ../../../../inc/mod/pages.php:2282 +#: ../../../../inc/mod/pages.php:2287 msgid "Recent posts" msgstr "最新貼文" @@ -2013,6 +2171,15 @@ msgstr "張貼新聞" #. line 17 #. line 54 #. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -2052,6 +2219,9 @@ msgstr "職員" #. line 25 #. line 68 #. line 18 +#. line 25 +#. line 68 +#. line 18 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -2071,6 +2241,8 @@ msgstr "筆記" #. line 22 #. line 26 #. line 19 +#. line 26 +#. line 19 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 @@ -2113,6 +2285,8 @@ msgstr "新筆記" #. 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" @@ -2207,6 +2381,15 @@ msgstr "沒有理由" #. line 33 #. line 49 #. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 6 +#. line 33 +#. line 49 +#. line 136 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -2262,6 +2445,9 @@ msgstr "所有版" #. line 11 #. line 43 #. line 50 +#. line 128 +#. line 43 +#. line 50 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -2300,6 +2486,9 @@ msgstr "設定" #. line 13 #. line 47 #. line 52 +#. line 132 +#. line 47 +#. line 52 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -2346,6 +2535,9 @@ msgstr "從未" #. line 14 #. line 57 #. line 53 +#. line 142 +#. line 57 +#. line 53 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2390,6 +2582,10 @@ msgstr "解除封禁" #. line 183 #. line 5 #. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 @@ -2429,6 +2625,11 @@ msgstr "時間" #. line 7 #. line 89 #. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2490,6 +2691,8 @@ msgstr "新封禁" #. line 5 #. line 2 #. line 5 +#. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2546,6 +2749,7 @@ msgstr "期間" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:68 msgid "Unban selected" msgstr "選取解除封禁" @@ -2563,6 +2767,9 @@ msgstr "選取解除封禁" #. line 11 #. line 6 #. line 4 +#. line 11 +#. line 6 +#. line 4 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 @@ -2618,7 +2825,7 @@ msgstr "重繪圖形失敗!" #: ../../../../inc/image.php:324 ../../../../inc/image.php:343 #: ../../../../inc/image.php:368 ../../../../inc/image.php:342 -#: ../../../../inc/image.php:366 +#: ../../../../inc/image.php:366 ../../../../inc/image.php:372 msgid "Failed to resize image!" msgstr "縮放圖形失敗!" @@ -2652,41 +2859,54 @@ msgid "Your ban was filed on" msgstr "您的封禁建檔於" #. line 51 +#. line 59 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:148 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:181 msgid "has since expired. Refresh the page to continue." msgstr "已經過期。重整頁面已繼續。" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:154 msgid "expires" msgstr "到期" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:158 msgid "from now, which is on" msgstr "從今以後,它是在" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:208 msgid "will not expire" msgstr "不會到期" #. line 78 +#. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:217 msgid "Your IP address is" msgstr "您的 IP 位址是" #. line 86 +#. line 94 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You were banned for the following post on" msgstr "您由於以下貼文被封禁" #. line 95 +#. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 msgid "You submitted an appeal for this ban on" msgstr "您送出這個封禁申訴於" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:271 msgid "It is still pending" msgstr "仍在佇列中" @@ -2708,21 +2928,28 @@ msgstr "仍在佇列中" #. line 112 #. line 101 #. line 112 +#. line 109 +#. line 120 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:283 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:315 msgid "You appealed this ban on" msgstr "您申訴這個封禁於" #. line 103 +#. line 111 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:291 msgid "and it was denied. You may not appeal this ban again." msgstr "且已被拒絕。您不能再申訴這個封禁。" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." @@ -2746,10 +2973,14 @@ msgstr "您已達封禁申訴的最大數量。您不能再申訴這個封禁。 #. line 121 #. line 114 #. line 121 +#. line 122 +#. line 129 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:344 msgid "and it was denied." msgstr "且已被拒絕。" @@ -2771,21 +3002,28 @@ msgstr "且已被拒絕。" #. line 123 #. line 116 #. line 123 +#. line 124 +#. line 131 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:328 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:349 msgid "You may appeal this ban again. Please enter your reasoning below." msgstr "您可以再申訴這個封禁。請在以下輸入您的理由。" #. line 119 +#. line 127 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:336 msgid "You last appealed this ban on" msgstr "您最近申訴這個封禁於" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:358 msgid "You may appeal this ban. Please enter your reasoning below." msgstr "您可以再申訴這個封禁。請在以下輸入您的理由。" @@ -2804,6 +3042,10 @@ msgstr "您可以再申訴這個封禁。請在以下輸入您的理由。" #. line 4 #. line 16 #. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 @@ -2872,6 +3114,8 @@ msgstr "鎖定討論串;以鏈結回覆。" #. line 13 #. line 22 #. line 13 +#. line 22 +#. line 13 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" @@ -3031,7 +3275,8 @@ msgstr "沒有" #. will be replaced with a #. standard cross-board post citation (>>>/board/xxx) #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 -#: ../../../../inc/config.php:1251 +#: ../../../../inc/config.php:1251 ../../../../inc/config.php:1255 +#: ../../../../inc/config.php:1258 #, php-format msgid "Moved to %s." msgstr "移動到 %s" @@ -3043,6 +3288,7 @@ msgid "" msgstr "無法建造 RecentPosts 佈景,因為沒有可取用的版。" #: ../../../../inc/config.php:997 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1029 msgid "You have attempted to upload too many images!" msgstr "您試圖上傳太多圖片!" @@ -3057,6 +3303,10 @@ msgstr "Spoiler 檔" #. line 35 #. line 20 #. line 28 +#. line 20 +#. line 28 +#. line 20 +#. line 28 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:67 @@ -3079,6 +3329,10 @@ msgstr "最新回覆" #. line 37 #. line 21 #. line 29 +#. line 21 +#. line 29 +#. line 21 +#. line 29 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:71 @@ -3092,6 +3346,10 @@ msgstr "建立日期" #. line 38 #. line 22 #. line 30 +#. line 22 +#. line 30 +#. line 22 +#. line 30 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:75 @@ -3105,6 +3363,10 @@ msgstr "回覆數量" #. line 39 #. line 23 #. line 31 +#. line 23 +#. line 31 +#. line 23 +#. line 31 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:79 @@ -3174,20 +3436,26 @@ msgstr "無法自動旋轉圖片!" msgid "Could not strip EXIF metadata!" msgstr "無法獲取 EXIF 後設資料!" -#: ../../../../inc/config.php:1049 +#: ../../../../inc/config.php:1049 ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1053 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1056 msgid "There was a problem processing your webm." msgstr "" -#: ../../../../inc/config.php:1050 +#. Is this error used anywhere ? +#: ../../../../inc/config.php:1050 ../../../../inc/config.php:1054 +#: ../../../../inc/config.php:1057 msgid "Invalid webm uploaded." msgstr "" -#: ../../../../inc/config.php:1051 +#: ../../../../inc/config.php:1051 ../../../../inc/config.php:1055 +#: ../../../../inc/config.php:1058 msgid "" "The uploaded webm contains an audio or another type of additional stream." msgstr "" -#: ../../../../inc/config.php:1052 +#: ../../../../inc/config.php:1052 ../../../../inc/config.php:1056 +#: ../../../../inc/config.php:1059 msgid "The uploaded webm is longer than " msgstr "" @@ -3204,3 +3472,19 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:113 msgid "Very small" msgstr "" + +#: ../../../../templates/themes/recent/theme.php:99 +msgid "(no comment)" +msgstr "" + +#: ../../../../templates/cache/3a/fa/a15b273b182a2c833d42475af728873be4a7cb0481854a52be6ed9380ea2.php:30 +msgid "There are no active posts." +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:49 +msgid "Show only bans from boards I moderate" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +msgid "Show only active bans" +msgstr "" diff --git a/inc/mod/pages.php b/inc/mod/pages.php index cb798767..966c68ea 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -115,7 +115,7 @@ function mod_dashboard() { $latest = unserialize($_COOKIE['update']); } else { $ctx = stream_context_create(array('http' => array('timeout' => 5))); - if ($code = @file_get_contents('http://tinyboard.org/version.txt', 0, $ctx)) { + if ($code = @file_get_contents('http://engine.vichan.net/version.txt', 0, $ctx)) { $ver = strtok($code, "\n"); if (preg_match('@^// v(\d+)\.(\d+)\.(\d+)\s*?$@', $ver, $matches)) { @@ -124,7 +124,7 @@ function mod_dashboard() { 'major' => $matches[2], 'minor' => $matches[3] ); - if (preg_match('/v(\d+)\.(\d)\.(\d+)(-dev.+)?$/', $config['version'], $matches)) { + if (preg_match('/(\d+)\.(\d)\.(\d+)(-dev.+)?$/', $config['version'], $matches)) { $current = array( 'massive' => (int) $matches[1], 'major' => (int) $matches[2], @@ -770,7 +770,7 @@ function mod_page_ip($ip) { if (!hasPermission($config['mod']['unban'])) error($config['error']['noaccess']); - Bans::delete($_POST['ban_id'], true); + Bans::delete($_POST['ban_id'], true, $mod['boards']); header('Location: ?/IP/' . $ip . '#bans', true, $config['redirect_http']); return; @@ -867,18 +867,16 @@ function mod_ban() { require_once 'inc/mod/ban.php'; Bans::new_ban($_POST['ip'], $_POST['reason'], $_POST['length'], $_POST['board'] == '*' ? false : $_POST['board']); - + if (isset($_POST['redirect'])) header('Location: ' . $_POST['redirect'], true, $config['redirect_http']); else header('Location: ?/', true, $config['redirect_http']); } -function mod_bans($page_no = 1) { +function mod_bans() { global $config; - - if ($page_no < 1) - error($config['error']['404']); + global $mod; if (!hasPermission($config['mod']['view_banlist'])) error($config['error']['noaccess']); @@ -896,29 +894,33 @@ function mod_bans($page_no = 1) { error(sprintf($config['error']['toomanyunban'], $config['mod']['unban_limit'], count($unban))); foreach ($unban as $id) { - Bans::delete($id, true); + Bans::delete($id, true, $mod['boards'], true); } + rebuildThemes('bans'); header('Location: ?/bans', true, $config['redirect_http']); return; } - $bans = Bans::list_all(($page_no - 1) * $config['mod']['banlist_page'], $config['mod']['banlist_page']); - - if (empty($bans) && $page_no > 1) - error($config['error']['404']); - - foreach ($bans as &$ban) { - if (filter_var($ban['mask'], FILTER_VALIDATE_IP) !== false) - $ban['single_addr'] = true; - } - mod_page(_('Ban list'), 'mod/ban_list.html', array( - 'bans' => $bans, - 'count' => Bans::count(), - 'token' => make_secure_link_token('bans') + 'mod' => $mod, + 'boards' => json_encode($mod['boards']), + 'token' => make_secure_link_token('bans'), + 'token_json' => make_secure_link_token('bans.json') )); } +function mod_bans_json() { + global $config, $mod; + + if (!hasPermission($config['mod']['ban'])) + error($config['error']['noaccess']); + + // Compress the json for faster loads + if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); + + Bans::stream_json(false, false, !hasPermission($config['mod']['view_banstaff']), $mod['boards']); +} + function mod_ban_appeals() { global $config, $board; @@ -1163,7 +1165,7 @@ function mod_move_reply($originBoard, $postID) { $post = $query->fetch(PDO::FETCH_ASSOC); // redirect - header('Location: ?/' . sprintf($config['board_path'], $board['uri']) . $config['dir']['res'] . sprintf($config['file_page'], $post['thread'] ? $post['thread'] : $newID) . '#' . $newID, true, $config['redirect_http']); + header('Location: ?/' . sprintf($config['board_path'], $board['uri']) . $config['dir']['res'] . link_for($post) . '#' . $newID, true, $config['redirect_http']); } else { @@ -1226,7 +1228,10 @@ function mod_move($originBoard, $postID) { // create the new thread $newID = post($post); - + + $op = $post; + $op['id'] = $newID; + if ($post['has_file']) { // copy image foreach ($post['files'] as $i => &$file) { @@ -1324,6 +1329,8 @@ function mod_move($originBoard, $postID) { // trigger themes rebuildThemes('post', $targetBoard); + $newboard = $board; + // return to original board openBoard($originBoard); @@ -1334,7 +1341,7 @@ function mod_move($originBoard, $postID) { $query->execute() or error(db_error($query)); // leave a reply, linking to the new thread - $post = array( + $spost = array( 'mod' => true, 'subject' => '', 'email' => '', @@ -1348,23 +1355,23 @@ function mod_move($originBoard, $postID) { 'op' => false ); - $post['body'] = $post['body_nomarkup'] = sprintf($config['mod']['shadow_mesage'], '>>>/' . $targetBoard . '/' . $newID); + $spost['body'] = $spost['body_nomarkup'] = sprintf($config['mod']['shadow_mesage'], '>>>/' . $targetBoard . '/' . $newID); - markup($post['body']); + markup($spost['body']); - $botID = post($post); + $botID = post($spost); buildThread($postID); buildIndex(); - header('Location: ?/' . sprintf($config['board_path'], $originBoard) . $config['dir']['res'] .sprintf($config['file_page'], $postID) . + header('Location: ?/' . sprintf($config['board_path'], $newboard['uri']) . $config['dir']['res'] . link_for($op, false, $newboard) . '#' . $botID, true, $config['redirect_http']); } else { deletePost($postID); buildIndex(); openBoard($targetBoard); - header('Location: ?/' . sprintf($config['board_path'], $board['uri']) . $config['dir']['res'] . sprintf($config['file_page'], $newID), true, $config['redirect_http']); + header('Location: ?/' . sprintf($config['board_path'], $newboard['uri']) . $config['dir']['res'] . link_for($op, false, $newboard), true, $config['redirect_http']); } } @@ -1506,7 +1513,7 @@ function mod_edit_post($board, $edit_raw_html, $postID) { rebuildThemes('post', $board); - header('Location: ?/' . sprintf($config['board_path'], $board) . $config['dir']['res'] . sprintf($config['file_page'], $post['thread'] ? $post['thread'] : $postID) . '#' . $postID, true, $config['redirect_http']); + header('Location: ?/' . sprintf($config['board_path'], $board) . $config['dir']['res'] . link_for($post) . '#' . $postID, true, $config['redirect_http']); } else { if ($config['minify_html']) { $post['body_nomarkup'] = str_replace("\n", ' ', utf8tohtml($post['body_nomarkup'])); @@ -1585,10 +1592,12 @@ function mod_spoiler_image($board, $post, $file) { $result = $query->fetch(PDO::FETCH_ASSOC); $files = json_decode($result['files']); + + $size_spoiler_image = @getimagesize($config['spoiler_image']); file_unlink($board . '/' . $config['dir']['thumb'] . $files[$file]->thumb); $files[$file]->thumb = 'spoiler'; - $files[$file]->thumbheight = 128; - $files[$file]->thumbwidth = 128; + $files[$file]->thumbwidth = $size_spoiler_image[0]; + $files[$file]->thumbheight = $size_spoiler_image[1]; // Make thumbnail spoiler $query = prepare(sprintf("UPDATE ``posts_%s`` SET `files` = :files WHERE `id` = :id", $board)); @@ -2510,10 +2519,14 @@ function mod_theme_configure($theme_name) { $query->bindValue(':value', $_POST[$conf['name']]); $query->execute() or error(db_error($query)); } - + $query = prepare("INSERT INTO ``theme_settings`` VALUES(:theme, NULL, NULL)"); $query->bindValue(':theme', $theme_name); $query->execute() or error(db_error($query)); + + // Clean cache + Cache::delete("themes"); + Cache::delete("theme_settings_".$theme_name); $result = true; $message = false; @@ -2561,11 +2574,15 @@ function mod_theme_uninstall($theme_name) { if (!hasPermission($config['mod']['themes'])) error($config['error']['noaccess']); - + $query = prepare("DELETE FROM ``theme_settings`` WHERE `theme` = :theme"); $query->bindValue(':theme', $theme_name); $query->execute() or error(db_error($query)); + // Clean cache + Cache::delete("themes"); + Cache::delete("theme_settings_".$theme); + header('Location: ?/themes', true, $config['redirect_http']); } diff --git a/install.php b/install.php index 8b3815a2..95caf8ec 100644 --- a/install.php +++ b/install.php @@ -1,7 +1,7 @@ vichan upgrade path. query("CREATE TABLE IF NOT EXISTS ``search_queries`` ( `ip` varchar(39) NOT NULL, `time` int(11) NOT NULL, `query` text NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8;") or error(db_error()); @@ -621,6 +625,13 @@ if ($step == 0) { 'required' => true, 'message' => 'vichan requires PHP 5.3 or better.', ), + array( + 'category' => 'PHP', + 'name' => 'PHP ≥ 5.4', + 'result' => PHP_VERSION_ID >= 50400, + 'required' => false, + 'message' => 'vichan works best on PHP 5.4 or better.', + ), array( 'category' => 'PHP', 'name' => 'mbstring extension installed', @@ -670,13 +681,6 @@ if ($step == 0) { 'required' => true, 'message' => 'imagecreatefromgif() does not exist. This is a problem.', ), - array( - 'category' => 'Image processing', - 'name' => 'Imagick extension installed', - 'result' => extension_loaded('imagick'), - 'required' => false, - 'message' => '(Optional) The PHP Imagick (ImageMagick) extension is not installed. You may not use Imagick for better (and faster) image processing.', - ), array( 'category' => 'Image processing', 'name' => '`convert` (command-line ImageMagick)', diff --git a/js/ajax.js b/js/ajax.js index 4501cef2..56f0df5c 100644 --- a/js/ajax.js +++ b/js/ajax.js @@ -107,6 +107,7 @@ $(window).ready(function() { }, 'html'); } $(form).find('input[type="submit"]').val(_('Posted...')); + $(document).trigger("ajax_after_post", post_response); } else { alert(_('An unknown error occured when posting!')); $(form).find('input[type="submit"]').val(submit_txt); @@ -114,17 +115,10 @@ $(window).ready(function() { } }, error: function(xhr, status, er) { - // An error occured - do_not_ajax = true; - $(form).find('input[type="submit"]').each(function() { - var $replacement = $(''); - $replacement.attr('name', $(this).attr('name')); - $replacement.val(submit_txt); - $(this) - .after($replacement) - .replaceWith($('').val(submit_txt)); - }); - $(form).submit(); + console.log(xhr); + alert(_('The server took too long to submit your post. Your post was probably still submitted. If it wasn\'t, we might be experiencing issues right now -- please try your post again later. Error information: ') + "

"); + $(form).find('input[type="submit"]').val(submit_txt); + $(form).find('input[type="submit"]').removeAttr('disabled'); }, data: formData, cache: false, @@ -140,6 +134,7 @@ $(window).ready(function() { }; setup_form($('form[name="post"]')); $(window).on('quick-reply', function() { + $('form#quick-reply').off('submit'); setup_form($('form#quick-reply')); }); }); diff --git a/js/auto-reload.js b/js/auto-reload.js index bccc0ec2..d015dfc1 100644 --- a/js/auto-reload.js +++ b/js/auto-reload.js @@ -17,227 +17,221 @@ * */ -au = false; -auto_reload_enabled = true; // for watch.js to interop -function makeIcon(){ - if(au) return; - au = true; - $("link[rel='icon']").attr("href", "../static/favicon_au.png"); -} +auto_reload_enabled = true; // for watch.js to interop $(document).ready(function(){ - if($('div.banner').length == 0) - return; // not index - - if($(".post.op").size() != 1) - return; //not thread page - - var countdown_interval; - - // Add an update link - $(".threadlinks span:last-child").after(""+_("Update")+" ] ( "+_("Auto")+") "); - - // Grab the settings - var settings = new script_settings('auto-reload'); - var poll_interval_mindelay = settings.get('min_delay_bottom', 5000); - var poll_interval_maxdelay = settings.get('max_delay', 600000); - var poll_interval_errordelay = settings.get('error_delay', 30000); - - // number of ms to wait before reloading - var poll_interval_delay = poll_interval_mindelay; - var poll_current_time = poll_interval_delay; - - var end_of_page = false; - - var new_posts = 0; - var first_new_post = null; - - var title = document.title; - - if (typeof update_title == "undefined") { - var update_title = function() { - if (new_posts) { - document.title = "("+new_posts+") "+title; - } else { - document.title = title; - } - }; - } + if($('div.banner').length == 0) + return; // not index + + if($(".post.op").size() != 1) + return; //not thread page + + var countdown_interval; + + // Add an update link + $('.boardlist.bottom').prev().after("["+_("Update")+"] ( "+_("Auto")+") "); + + // Grab the settings + var settings = new script_settings('auto-reload'); + var poll_interval_mindelay = settings.get('min_delay_bottom', 5000); + var poll_interval_maxdelay = settings.get('max_delay', 600000); + var poll_interval_errordelay = settings.get('error_delay', 30000); + + // number of ms to wait before reloading + var poll_interval_delay = poll_interval_mindelay; + var poll_current_time = poll_interval_delay; + + var end_of_page = false; + + var new_posts = 0; + var first_new_post = null; + + var title = document.title; + + if (typeof update_title == "undefined") { + var update_title = function() { + if (new_posts) { + document.title = "("+new_posts+") "+title; + } else { + document.title = title; + } + }; + } - if (typeof add_title_collector != "undefined") + if (typeof add_title_collector != "undefined") add_title_collector(function(){ - return new_posts; + return new_posts; }); - var window_active = true; - $(window).focus(function() { - window_active = true; - recheck_activated(); + var window_active = true; + $(window).focus(function() { + window_active = true; + recheck_activated(); - // Reset the delay if needed - if(settings.get('reset_focus', true)) { - poll_interval_delay = poll_interval_mindelay; - } - }); - $(window).blur(function() { - window_active = false; - }); + // Reset the delay if needed + if(settings.get('reset_focus', true)) { + poll_interval_delay = poll_interval_mindelay; + } + }); + $(window).blur(function() { + window_active = false; + }); + + $('#auto_update_status').click(function() { + if($("#auto_update_status").is(':checked')) { + auto_update(poll_interval_mindelay); + } else { + stop_auto_update(); + $('#update_secs').text(""); + } - $('#auto_update_status').click(function() { - if($("#auto_update_status").is(':checked')) { - auto_update(poll_interval_mindelay); - } else { - stop_auto_update(); - $('#update_secs').text(""); + }); + + + var decrement_timer = function() { + poll_current_time = poll_current_time - 1000; + $('#update_secs').text(poll_current_time/1000); + + if (poll_current_time <= 0) { + poll(manualUpdate = false); + } } - }); - + var recheck_activated = function() { + if (new_posts && window_active && + $(window).scrollTop() + $(window).height() >= + $('div.boardlist.bottom').position().top) { - var decrement_timer = function() { - poll_current_time = poll_current_time - 1000; - $('#update_secs').text(poll_current_time/1000); - - if (poll_current_time <= 0) { - poll(manualUpdate = false); + new_posts = 0; + } + update_title(); + first_new_post = null; + }; + + // automatically updates the thread after a specified delay + var auto_update = function(delay) { + clearInterval(countdown_interval); + + poll_current_time = delay; + countdown_interval = setInterval(decrement_timer, 1000); + $('#update_secs').text(poll_current_time/1000); } - } - - var recheck_activated = function() { - if (new_posts && window_active && - $(window).scrollTop() + $(window).height() >= - $('footer').position().top) { - - new_posts = 0; + + var stop_auto_update = function() { + clearInterval(countdown_interval); } - update_title(); - first_new_post = null; - }; - - // automatically updates the thread after a specified delay - var auto_update = function(delay) { - clearInterval(countdown_interval); - - poll_current_time = delay; - countdown_interval = setInterval(decrement_timer, 1000); - $('#update_secs').text(poll_current_time/1000); - } - - var stop_auto_update = function() { - clearInterval(countdown_interval); - } - - var epoch = (new Date).getTime(); - var epochold = epoch; - - var timeDiff = function (delay) { - if((epoch-epochold) > delay) { - epochold = epoch = (new Date).getTime(); - return true; - }else{ - epoch = (new Date).getTime(); - return; + + var epoch = (new Date).getTime(); + var epochold = epoch; + + var timeDiff = function (delay) { + if((epoch-epochold) > delay) { + epochold = epoch = (new Date).getTime(); + return true; + }else{ + epoch = (new Date).getTime(); + return; + } } - } - - var poll = function(manualUpdate) { - stop_auto_update(); - $('#update_secs').text(_("Updating...")); - - $.ajax({ - url: document.location, - success: function(data) { - var loaded_posts = 0; // the number of new posts loaded in this update - $(data).find('div.postcontainer').each(function() { - var id = $(this).attr('id').substring(2); - if($('#' + id).length == 0) { - if (!new_posts) { - first_new_post = this; - makeIcon(); + + var poll = function(manualUpdate) { + stop_auto_update(); + $('#update_secs').text(_("Updating...")); + + $.ajax({ + url: document.location, + success: function(data) { + var loaded_posts = 0; // the number of new posts loaded in this update + $(data).find('div.post.reply').each(function() { + var id = $(this).attr('id'); + if($('#' + id).length == 0) { + if (!new_posts) { + first_new_post = this; + } + $(this).insertAfter($('div.post:last').next()).after('
'); + new_posts++; + loaded_posts++; + $(document).trigger('new_post', this); + recheck_activated(); + } + }); + time_loaded = Date.now(); // interop with watch.js + + + if ($('#auto_update_status').is(':checked')) { + // If there are no new posts, double the delay. Otherwise set it to the min. + if(loaded_posts == 0) { + // if the update was manual, don't increase the delay + if (manualUpdate == false) { + poll_interval_delay *= 2; + + // Don't increase the delay beyond the maximum + if(poll_interval_delay > poll_interval_maxdelay) { + poll_interval_delay = poll_interval_maxdelay; + } + } + } else { + poll_interval_delay = poll_interval_mindelay; + } + + auto_update(poll_interval_delay); + } else { + // Decide the message to show if auto update is disabled + if (loaded_posts > 0) + $('#update_secs').text(fmt(_("Thread updated with {0} new post(s)"), [loaded_posts])); + else + $('#update_secs').text(_("No new posts found")); + } + }, + error: function(xhr, status_text, error_text) { + if (status_text == "error") { + if (error_text == "Not Found") { + $('#update_secs').text(_("Thread deleted or pruned")); + $('#auto_update_status').prop('checked', false); + $('#auto_update_status').prop('disabled', true); // disable updates if thread is deleted + return; + } else { + $('#update_secs').text("Error: "+error_text); + } + } else if (status_text) { + $('#update_secs').text(_("Error: ")+status_text); + } else { + $('#update_secs').text(_("Unknown error")); + } + + // Keep trying to update + if ($('#auto_update_status').is(':checked')) { + poll_interval_delay = poll_interval_errordelay; + auto_update(poll_interval_delay); + } } - $(this).insertAfter($('div.postcontainer:last').next()).after('
'); - new_posts++; - loaded_posts++; - $(document).trigger('new_post', this); - recheck_activated(); - } }); - time_loaded = Date.now(); // interop with watch.js - - - if ($('#auto_update_status').is(':checked')) { - // If there are no new posts, double the delay. Otherwise set it to the min. - if(loaded_posts == 0) { - // if the update was manual, don't increase the delay - if (manualUpdate == false) { - poll_interval_delay *= 2; - - // Don't increase the delay beyond the maximum - if(poll_interval_delay > poll_interval_maxdelay) { - poll_interval_delay = poll_interval_maxdelay; - } - } - } else { - poll_interval_delay = poll_interval_mindelay; - } - - auto_update(poll_interval_delay); - } else { - // Decide the message to show if auto update is disabled - if (loaded_posts > 0) - $('#update_secs').text(fmt(_("Thread updated with {0} new post(s)"), [loaded_posts])); - else - $('#update_secs').text(_("No new posts found")); - } - }, - error: function(xhr, status_text, error_text) { - if (status_text == "error") { - if (error_text == "Not Found") { - $('#update_secs').text(_("Thread deleted or pruned")); - $('#auto_update_status').prop('checked', false); - $('#auto_update_status').prop('disabled', true); // disable updates if thread is deleted + + return false; + }; + + $(window).scroll(function() { + recheck_activated(); + + // if the newest post is not visible + if($(this).scrollTop() + $(this).height() < + $('div.post:last').position().top + $('div.post:last').height()) { + end_of_page = false; return; - } else { - $('#update_secs').text("Error: "+error_text); - } - } else if (status_text) { - $('#update_secs').text(_("Error: ")+status_text); } else { - $('#update_secs').text(_("Unknown error")); - } - - // Keep trying to update - if ($('#auto_update_status').is(':checked')) { - poll_interval_delay = poll_interval_errordelay; - auto_update(poll_interval_delay); + if($("#auto_update_status").is(':checked') && timeDiff(poll_interval_mindelay)) { + poll(manualUpdate = true); + } + end_of_page = true; } - } }); - return false; - }; - - $(window).scroll(function() { - recheck_activated(); - - // if the newest post is not visible - if($(this).scrollTop() + $(this).height() < - $('div.post:last').position().top + $('div.post:last').height()) { - end_of_page = false; - return; - } else { - if($("#auto_update_status").is(':checked') && timeDiff(poll_interval_mindelay)) { - poll(manualUpdate = true); - } - end_of_page = true; - } - }); - - $('#update_thread').on('click', function() { poll(manualUpdate = true); return false; }); + $('#update_thread').on('click', function() { poll(manualUpdate = true); return false; }); - if($("#auto_update_status").is(':checked')) { - auto_update(poll_interval_delay); - } + if($("#auto_update_status").is(':checked')) { + auto_update(poll_interval_delay); + } }); + diff --git a/js/catalog-link.js b/js/catalog-link.js index 899e6859..05ee9efb 100644 --- a/js/catalog-link.js +++ b/js/catalog-link.js @@ -15,13 +15,8 @@ function catalog() { var board = $("input[name='board']"); -if (board.length>0) { -if (window.location.href.indexOf("/res/")==-1){ //if we are inside a thread -var catalog_url = 'catalog.html'; -} -else { -var catalog_url = '../catalog.html'; -} +var catalog_url = configRoot + board.first().val() + "/catalog.html"; + var pages = document.getElementsByClassName('pages')[0]; var bottom = document.getElementsByClassName('boardlist bottom')[0] var subtitle = document.getElementsByClassName('subtitle')[0]; @@ -57,7 +52,6 @@ if (subtitle) { subtitle.appendChild(link2); } } -} if (active_page == 'thread' || active_page == 'index') { $(document).ready(catalog); diff --git a/js/expand-all-images.js b/js/expand-all-images.js index fc273e5e..5545045c 100644 --- a/js/expand-all-images.js +++ b/js/expand-all-images.js @@ -27,7 +27,10 @@ onready(function(){ $(this).parent().click(); }); - $('hr:first').before('
'); + if (!$('#shrink-all-images').length) { + $('hr:first').before('
'); + } + $('div#shrink-all-images a') .text(_('Shrink all images')) .click(function(){ diff --git a/js/favorites.js b/js/favorites.js index e325e110..daf7b732 100644 --- a/js/favorites.js +++ b/js/favorites.js @@ -54,7 +54,6 @@ if (active_page == 'thread' || active_page == 'index') { $(document).ready(function(){ var favorites = JSON.parse(localStorage.favorites); var is_board_favorite = ~$.inArray(board_name, favorites); - console.log(is_board_favorite); $('header>h1').append('\u2605'); add_favorites(); diff --git a/js/file-selector.js b/js/file-selector.js new file mode 100644 index 00000000..207a5ae9 --- /dev/null +++ b/js/file-selector.js @@ -0,0 +1,191 @@ +/* + * file-selector.js - Add support for drag and drop file selection, and paste from clipbboard on supported browsers. + * + * Usage: + * $config['additional_javascript'][] = 'js/jquery.min.js'; + * $config['additional_javascript'][] = 'js/file-selector.js'; + */ +function init_file_selector(max_images) { + +$(document).ready(function () { + // add options panel item + if (window.Options && Options.get_tab('general')) { + Options.extend_tab('general', ''); + + $('#file-drag-drop>input').on('click', function() { + if ($('#file-drag-drop>input').is(':checked')) { + localStorage.file_dragdrop = 'true'; + } else { + localStorage.file_dragdrop = 'false'; + } + }); + + if (typeof localStorage.file_dragdrop === 'undefined') localStorage.file_dragdrop = 'true'; + if (localStorage.file_dragdrop === 'true') $('#file-drag-drop>input').prop('checked', true); + } +}); + +// disabled by user, or incompatible browser. +if (localStorage.file_dragdrop == 'false' || !(window.URL.createObjectURL && window.File)) + return; + +// multipost not enabled +if (typeof max_images == 'undefined') { + var max_images = 1; +} + +$(''+ +'').prependTo('#upload td'); + +var files = []; +$('#upload_file').remove(); // remove the original file selector +$('.dropzone-wrap').css('user-select', 'none').show(); // let jquery add browser specific prefix + +function addFile(file) { + if (files.length == max_images) + return; + + files.push(file); + addThumb(file); +} + +function removeFile(file) { + files.splice(files.indexOf(file), 1); +} + +function getThumbElement(file) { + return $('.tmb-container').filter(function(){return($(this).data('file-ref')==file);}); +} + +function addThumb(file) { + + var fileName = (file.name.length < 24) ? file.name : file.name.substr(0, 22) + '…'; + var fileType = file.type.split('/')[0]; + var fileExt = file.type.split('/')[1]; + var $container = $('
') + .addClass('tmb-container') + .data('file-ref', file) + .append( + $('
').addClass('remove-btn').html('✖'), + $('
').addClass('file-tmb'), + $('
').addClass('tmb-filename').html(fileName) + ) + .appendTo('.file-thumbs'); + + var $fileThumb = $container.find('.file-tmb'); + if (fileType == 'image') { + // if image file, generate thumbnail + var objURL = window.URL.createObjectURL(file); + $fileThumb.css('background-image', 'url('+ objURL +')'); + } else { + $fileThumb.html('' + fileExt.toUpperCase() + ''); + } +} + +$(document).on('ajax_before_post', function (e, formData) { + for (var i=0; i 0) key += i + 1; + if (typeof files[i] === 'undefined') break; + formData.append(key, files[i]); + } +}); + +// clear file queue and UI on success +$(document).on('ajax_after_post', function () { + files = []; + $('.file-thumbs').empty(); +}); + +var dragCounter = 0; +var dropHandlers = { + dragenter: function (e) { + e.stopPropagation(); + e.preventDefault(); + + if (dragCounter === 0) $('.dropzone').addClass('dragover'); + dragCounter++; + }, + dragover: function (e) { + // needed for webkit to work + e.stopPropagation(); + e.preventDefault(); + }, + dragleave: function (e) { + e.stopPropagation(); + e.preventDefault(); + + dragCounter--; + if (dragCounter === 0) $('.dropzone').removeClass('dragover'); + }, + drop: function (e) { + e.stopPropagation(); + e.preventDefault(); + + $('.dropzone').removeClass('dragover'); + dragCounter = 0; + + var fileList = e.originalEvent.dataTransfer.files; + for (var i=0; i'); + + $fileSelector.on('change', function (e) { + if (this.files.length > 0) { + for (var i=0; i "+_('Forced anonymity')+""); + Options.extend_tab("general", ""); } else { selector = '#forced-anon'; diff --git a/js/gallery-view.js b/js/gallery-view.js new file mode 100644 index 00000000..2d7d85b4 --- /dev/null +++ b/js/gallery-view.js @@ -0,0 +1,165 @@ +if (active_page == 'index' || active_page == 'thread') +$(function(){ + + var gallery_view = false; + + $('hr:first').before(''); + $('#gallery-view a').html(gallery_view ? _("Disable gallery mode") : _("Enable gallery mode")).click(function() { + gallery_view = !gallery_view; + $(this).html(gallery_view ? _("Disable gallery mode") : _("Enable gallery mode")); + toggle_gview(document); + }); + + var toggle_gview = function(elem) { + if (gallery_view) { + $(elem).find('img.post-image').parent().each(function() { + this.oldonclick = this.onclick; + this.onclick = handle_click; + $(this).attr('data-galid', Math.random()); + }); + } + else { + $(elem).find('img.post-image').parent().each(function() { + if (this.onclick == handle_click) this.onclick = this.oldonclick; + }); + } + }; + + $(document).on('new_post', toggle_gview); + + var gallery_opened = false; + + var handle_click = function(e) { + e.stopPropagation(); + e.preventDefault(); + + if (!gallery_opened) open_gallery(); + + gallery_setimage($(this).attr('data-galid')); + }; + + var handler, images, active, toolbar; + + var open_gallery = function() { + $('body').css('overflow', 'hidden'); + + gallery_opened = true; + + handler = $("
").hide().appendTo('body').css('text-align', 'left'); + + $("
").click(close_gallery).appendTo(handler); + + images = $("").appendTo(handler); + toolbar = $("").appendTo(handler); + active = $("").appendTo(handler); + + active.on('click', function() { + close_gallery(); + }); + + $('img.post-image').parent().each(function() { + var thumb = $(this).find('img').attr('src'); + + var i = $('').appendTo(images); + i.attr('src', thumb); + i.attr('data-galid-th', $(this).attr('data-galid')); + + i.on('click', function(e) { + gallery_setimage($(this).attr('data-galid-th')); + }); + }); + + $("
") + .click(close_gallery).appendTo(toolbar); + + $('body').on('keydown.gview', function(e) { + if (e.which == 39 || e.which == 40) { // right or down arrow + gallery_setimage(+1); + e.preventDefault(); + } + else if (e.which == 37 || e.which == 38) { // left or up arrow + gallery_setimage(-1); + e.preventDefault(); + } + }); + + handler.fadeIn(400); + }; + + var gallery_setimage = function(a) { + if (a == +1 || a == -1) { + var meth = (a == -1) ? 'prev' : 'next'; + a = $('#gallery_images img.active')[meth]().attr('data-galid-th'); + if (!a) return; + } + + $('#gallery_images img.active').removeClass('active'); + + var thumb = $('#gallery_images [data-galid-th="'+a+'"]'); + var elem = $('a[data-galid="'+a+'"]'); + + thumb.addClass('active'); + + var topscroll = thumb.position().top + images.scrollTop(); + topscroll -= images.height() / 2; + topscroll += thumb.height() / 2; + images.animate({'scrollTop': topscroll}, 300); + + var img = elem.attr('href'); + + active.find('img, video').fadeOut(200, function() { $(this).remove(); }); + + var i; + if (img.match(/player\.php/)) { + img = img.replace(/.*player\.php\?v=|&t=.*/g, ''); + } + if (img.match(/\.webm$|\.mp4$|\.ogv$/i)) { // We are handling video nao + i = $('') + } + + $(selector).on(event, function() { + if (localStorage.color_ids === 'true') { + localStorage.color_ids = 'false'; + } else { + localStorage.color_ids = 'true'; + } + }); + + if (!localStorage.color_ids || localStorage.color_ids === 'false') { + return; + } else { + $('#color-ids>input').attr('checked','checked'); + } + + function IDToRGB(id_str){ + var id = id_str.match(/.{1,2}/g); + var rgb = new Array(); + + for (i = 0; i < id.length; i++) { + rgb[i] = parseInt(id[i], 16); + } + + return rgb; + } + + function colorPostId(el) { + var rgb = IDToRGB($(el).text()); + var ft = "#fff"; + + if ((rgb[0]*0.299 + rgb[1]*0.587 + rgb[2]*0.114) > 125) + ft = "#000"; + + $(el).css({ + "background-color": "rgb("+rgb[0]+", "+rgb[1]+", "+rgb[2]+")", + "padding": "0px 5px", + "border-radius": "8px", + "color": ft + }); + + $(el).mouseover(function() { + $(this).css('color', '#800000'); // how about a CSS :hover rule instead? + }).mouseout(function() { + $(this).css('color', ft); + }); + } + + $(".poster_id").each(function(k, v){ + colorPostId(v); + }); + + $(document).on('new_post', function(e, post) { + $(post).find('.poster_id').each(function(k, v) { + colorPostId(v); + }); + }); + }); +} diff --git a/js/id_highlighter.js b/js/id_highlighter.js new file mode 100644 index 00000000..d0a5fabf --- /dev/null +++ b/js/id_highlighter.js @@ -0,0 +1,50 @@ +if (active_page == 'thread' || active_page == 'index') { + $(document).ready(function(){ + function arrayRemove(a, v) { a.splice(a.indexOf(v) == -1 ? a.length : a.indexOf(v), 1); } + + var idshighlighted = []; + + function getPostsById(id){ + return $(".poster_id").filter(function(i){ + return $(this).text() == id; + }); + } + + function getMasterPosts(parents){ + if(!parents.hasClass("post")) return; + + var toRet = []; + + $(parents).each(function(){ + if($(this).hasClass("post")) + toRet.push($(this)); + }); + + return toRet; + } + + var id_highlighter = function(){ + var id = $(this).text(); + + if($.inArray(id, idshighlighted) !== -1){ + arrayRemove(idshighlighted, id); + + $(getMasterPosts(getPostsById(id).parents())).each(function(i){ + $(this).removeClass("highlighted"); + }); + }else{ + idshighlighted.push(id); + + $(getMasterPosts(getPostsById(id).parents())).each(function(i){ + $(this).addClass("highlighted"); + }); + } + } + + $(".poster_id").on('click', id_highlighter); + + $(document).on('new_post', function(e, post) { + $(post).find('.poster_id').on('click', id_highlighter); + }); + }); +} diff --git a/js/infinite-scroll.js b/js/infinite-scroll.js new file mode 100644 index 00000000..e212f9d6 --- /dev/null +++ b/js/infinite-scroll.js @@ -0,0 +1,91 @@ +/* + * infinite-scroll.js + * https://github.com/vichan-devel/vichan/blob/master/js/infinite-scroll.js + * + * Released under the MIT license + * Copyright (c) 2013-2014 Marcin Łabanowski + * + * Usage: + * $config['additional_javascript'][] = 'js/jquery.min.js'; + * $config['additional_javascript'][] = 'js/infinite-scroll.js'; + * + */ + +$(function() { +if (active_page == 'index') { + + +var loading = false; + +var activate = function() { + if (document.location.hash != '#all') return false; + + $(window).on("scroll", function() { + scrolltest(); + }); + scrolltest(); + + return true; +}; + +var scrolltest = function() { + if ($(window).scrollTop() + $(window).height() + 1000 > $(document).height() && !loading) { + load_next_page(); + } +}; + +var load_next_page = function() { + if (loading) return; + loading = true; + + var this_page = $(".pages a.selected:last"); + var next_page = this_page.next(); + + var href = next_page.prop("href"); + if (!href) return; + + var boardheader = $('

'+_('Page')+' '+next_page.html()+'

'); + var loading_ind = $('

'+_('Loading...')+'

').insertBefore('form[name="postcontrols"]>.delete:first'); + + $.get(href, function(data) { + var doc = $(data); + + loading_ind.remove(); + boardheader.insertBefore('form[name="postcontrols"]>.delete:first'); + + var i = 0; + + doc.find('div[id*="thread_"]').each(function() { + var checkout = $(this).attr('id').replace('thread_', ''); + var $this = this; + + if ($('div#thread_' + checkout).length == 0) { + // Delay DOM insertion to lessen the lag. + setTimeout(function() { + $($this).insertBefore('form[name="postcontrols"]>.delete:first'); + $(document).trigger('new_post', $this); + $($this).hide().slideDown(); + }, 500*i); + i++; + } + }); + setTimeout(function() { + loading = false; + scrolltest(); + }, 500*(i+1)); + + next_page.addClass('selected'); + }); + +}; + +var button = $(""+_("All")+" ").prependTo(".pages"); + +$(window).on("hashchange", function() { + return !activate(); +}); +activate(); + + +} +}); diff --git a/js/inline.js b/js/inline.js new file mode 100644 index 00000000..4f8c9a72 --- /dev/null +++ b/js/inline.js @@ -0,0 +1,154 @@ +$(document).ready(function() { + var App = { + cache: {}, + get: function(url, cb) { + var $page = App.cache[url] + if ($page) + return cb($page) + + $.get(url, function(data) { + var $page = $(data) + App.cache[url] = $page + cb($page) + }) + }, + options: { + add: function(key, description, tab) { + tab || (tab = 'general') + + var checked = App.options.get(key) + var $el = $( + '
' + + '' + + '
') + + $el + .find('input') + .prop('checked', checked) + .on('change', App.options.check(key)) + + window.Options.extend_tab(tab, $el) + }, + get: function(key) { + if (localStorage[key]) + return JSON.parse(localStorage[key]) + }, + check: function(key) { + return function(e) { + var val = this.checked + localStorage[key] = JSON.stringify(val) + } + } + } + } + + var inline = function(e) { + e.preventDefault() + + var $root = $(this).closest('.post') + var targetNum = this.textContent.slice(2) + + var srcOP = $root.closest('[id^=thread]').attr('id').match(/\d+/)[0] + + var node, targetOP + var isBacklink = !!this.className + if (isBacklink) { + node = $root.find('> .intro') + targetOP = srcOP + } else { + node = $(this) + + var to_search = inMod ? this.search : this.pathname; + targetOP = to_search.match(/(\d+).html/)[1] + } + + var link = { + id: 'inline_' + targetNum, + isBacklink: isBacklink, + node: node + } + + var selector = targetNum === targetOP + ? '#op_' + srcOP + : '#reply_' + targetNum + + var $clone = $root.find('#inline_' + targetNum) + if ($clone.length) { + $clone.remove() + $(selector) + .show() + .next() + .show() + return + } + + if (srcOP === targetOP) { + if (targetNum === targetOP) + link.node = link.node.next()// bypass `(OP)` + + var $target = $(selector) + if ($target.length) + return add(link, $target) + } + + var $loading = $('
loading...
') + .attr('id', link.id) + .insertAfter(link.node) + + App.get(this.pathname, function($page) { + $loading.remove() + var $target = $page.find(selector) + add(link, $target) + }) + } + + var add = function(link, $target) { + var $clone = $target.clone(true) + + if (link.isBacklink && App.options.get('hidePost')) + $target + .hide() + .next() + .hide() + + $clone.find('.inline').remove() + $clone.attr({ + "class": 'inline post', + id: link.id, + style: null// XXX remove post hover styling + }) + $clone.insertAfter(link.node) + } + + App.options.add('useInlining', 'Enable inlining') + App.options.add('hidePost', 'Hide inlined backlinked posts') + + $('head').append( + '') + + // don't attach to outbound links + + if (App.options.get('useInlining')) { + var assign_inline = function() { + $('.body a:not([rel]), .mentioned a') + .attr('onclick', null)// XXX disable highlightReply + .off('click') + .click(inline) + } + + assign_inline(); + + $(document).on('new_post', function(e, post) { + assign_inline(); + }); + } +}); diff --git a/js/live-index.js b/js/live-index.js index 463f7596..017d0c1f 100644 --- a/js/live-index.js +++ b/js/live-index.js @@ -58,7 +58,7 @@ if (active_page == 'index' && (""+document.location).match(/\/(index\.html)?(\?| update_new_threads(new_threads); }); - }, 1000); + }, 20000); }); $(document).on("new_post", function(e, post) { diff --git a/js/local-time.js b/js/local-time.js index e6b3495d..a4e25d6d 100644 --- a/js/local-time.js +++ b/js/local-time.js @@ -25,16 +25,6 @@ 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()] + ") " + diff --git a/js/longtable/longtable.js b/js/longtable/longtable.js new file mode 100644 index 00000000..fe3ad1c6 --- /dev/null +++ b/js/longtable/longtable.js @@ -0,0 +1,184 @@ +$.fn.longtable = function(fields, options, data) { + var elem = $(this).addClass("longtable"); + + var orig_data = data; + + options.row_h = options.row_h || 22; + options.checkbox = options.checkbox || false; + + var shown_rows = {}; + + var sorted_by = undefined; + var sorted_reverse = false; + + var filter = function() { return true; }; + + var lt = { + _gen_field_td: function(field, id) { + var el; + if (id === undefined) { + el = $(""); + el.html(fields[field].name || field); + + if (!fields[field].sort_disable) { + el.addClass("sortable").click(function() { + lt._sort_by(field); + }); + } + } + else { + el = $(""); + if (fields[field].fmt) { // Special formatting? + el.html(fields[field].fmt(data[id])); + } + else { + el.html(data[id][field]); + } + } + el.css("width", fields[field].width); + el.css("height", options.row_h); + return el; + }, + _gen_tr: function(id) { + var el = $(""); + $.each(fields, function(field, f) { + lt._gen_field_td(field, id).appendTo(el); + }); + if (id !== undefined) { + el.addClass("row").addClass("row_"+id); + el.css({position: "absolute", top: options.row_h * (id+1)}); + } + return el; + }, + _clean: function() { + elem.find('.row').remove(); + shown_rows = {}; + }, + _remove: function(id) { + elem.find('.row_'+id).remove(); + delete shown_rows[id]; + }, + _insert: function(id) { + var el = lt._gen_tr(id).appendTo(elem); + $(elem).trigger("new-row", [data[id], el]); + shown_rows[id] = true; + }, + + _sort_by: function(field) { + if (field !== undefined) { + if (sorted_by == field) { + sorted_reverse = !sorted_reverse; + } + else { + sorted_reverse = !!fields[field].sort_reverse; + sorted_by = field; + } + } + lt.sort_by(sorted_by, sorted_reverse); + }, + + _apply_filter: function() { + data = data.filter(filter); + }, + _reset_data: function() { + data = orig_data; + }, + + + set_filter: function(f) { + filter = f; + lt._reset_data(); + lt._apply_filter(); + lt._sort_by(); + }, + + sort_by: function(field, reverse) { + if (field !== undefined) { + sorted_by = field; + sorted_reverse = reverse; + + var ord = fields[field].sort_fun || function(a,b) { return lt.sort_alphanum(a[field], b[field]); }; + + data = data.sort(ord); + if (reverse) data = data.reverse(); + } + + lt.update_data(); + }, + + update_viewport: function() { + var first = $(window).scrollTop() - $(elem).offset().top - options.row_h; + var last = first + $(window).height(); + + first = Math.floor(first / options.row_h); + last = Math.ceil (last / options.row_h); + + first = first < 0 ? 0 : first; + last = last >= data.length ? data.length - 1 : last; + + $.each(shown_rows, function(id) { + if (id < first || id > last) { + lt._remove(id); + } + }); + + for (var id = first; id <= last; id++) { + if (!shown_rows[id]) lt._insert(id); + } + }, + + update_data: function() { + $(elem).height((data.length + 1) * options.row_h); + + lt._clean(); + lt.update_viewport(); + }, + + get_data: function() { + return data; + }, + + destroy: function() { + }, + + // http://web.archive.org/web/20130826203933/http://my.opera.com/GreyWyvern/blog/show.dml/1671288 + sort_alphanum: function(a, b) { + function chunkify(t) { + var tz = [], x = 0, y = -1, n = 0, i, j; + + while (i = (j = t.charAt(x++)).charCodeAt(0)) { + var m = (/* dot: i == 46 || */(i >=48 && i <= 57)); + if (m !== n) { + tz[++y] = ""; + n = m; + } + tz[y] += j; + } + return tz; + } + + var aa = chunkify((""+a).toLowerCase()); + var bb = chunkify((""+b).toLowerCase()); + + for (x = 0; aa[x] && bb[x]; x++) { + if (aa[x] !== bb[x]) { + var c = Number(aa[x]), d = Number(bb[x]); + if (c == aa[x] && d == bb[x]) { + return c - d; + } else return (aa[x] > bb[x]) ? 1 : -1; + } + } + return aa.length - bb.length; + } + // End of foreign code + }; + + + + lt._gen_tr().appendTo(elem); + lt.update_data(); + + $(window).on("scroll resize", lt.update_viewport); + + return lt; +}; diff --git a/js/mod/ban-list.js b/js/mod/ban-list.js new file mode 100644 index 00000000..7e5fdac0 --- /dev/null +++ b/js/mod/ban-list.js @@ -0,0 +1,157 @@ +var banlist_init = function(token, my_boards, inMod) { + inMod = !inMod; + + var lt; + + var selected = {}; + + var time = function() { return Date.now()/1000|0; } + + $.getJSON(inMod ? ("?/bans.json/"+token) : token, function(t) { + $("#banlist").on("new-row", function(e, drow, el) { + var sel = selected[drow.id]; + if (sel) { + $(el).find('input.unban').prop("checked", true); + } + $(el).find('input.unban').on("click", function() { + selected[drow.id] = $(this).prop("checked"); + }); + + + if (drow.expires && drow.expires != 0 && drow.expires < time()) { + $(el).find("td").css("text-decoration", "line-through"); + } + }); + + var selall = ""; + + lt = $("#banlist").longtable({ + mask: {name: selall+_("IP address"), width: "220px", fmt: function(f) { + var pre = ""; + if (inMod && f.access) { + pre = ""; + } + + if (inMod && f.single_addr && !f.masked) { + return pre+""+f.mask+""; + } + return pre+f.mask; + } }, + reason: {name: _("Reason"), width: "calc(100% - 715px - 6 * 4px)", fmt: function(f) { + var add = "", suf = ''; + if (f.seen == 1) add += ""; + if (f.message) { + add += ""; + suf = "

"+_("Message:")+"
"+f.message; + } + + if (add) { add = "
"+add+"
"; } + + if (f.reason) return add + f.reason + suf; + else return add + "-" + suf; + } }, + board: {name: _("Board"), width: "60px", fmt: function(f) { + if (f.board) return "/"+f.board+"/"; + else return ""+_("all")+""; + } }, + created: {name: _("Set"), width: "100px", fmt: function(f) { + return ago(f.created) + _(" ago"); // in AGO form + } }, + // duration? + expires: {name: _("Expires"), width: "235px", fmt: function(f) { + if (!f.expires || f.expires == 0) return ""+_("never")+""; + return strftime(window.post_date, new Date((f.expires|0)*1000), datelocale) + + ((f.expires < time()) ? "" : " "+_("in ")+until(f.expires|0)+""); + } }, + username: {name: _("Staff"), width: "100px", fmt: function(f) { + var pre='',suf='',un=f.username; + if (inMod && f.username && f.username != '?' && !f.vstaff) { + pre = ""; + suf = ""; + } + if (!f.username) { + un = ""+_("system")+""; + } + return pre + un + suf; + } } + }, {}, t); + + $("#select-all").click(function(e) { + var $this = $(this); + $("input.unban").prop("checked", $this.prop("checked")); + lt.get_data().forEach(function(v) { v.access && (selected[v.id] = $this.prop("checked")); }); + e.stopPropagation(); + }); + + var filter = function(e) { + if ($("#only_mine").prop("checked") && ($.inArray(e.board, my_boards) === -1)) return false; + if ($("#only_not_expired").prop("checked") && e.expires && e.expires != 0 && e.expires < time()) return false; + if ($("#search").val()) { + var terms = $("#search").val().split(" "); + + var fields = ["mask", "reason", "board", "staff", "message"]; + + var ret_false = false; + terms.forEach(function(t) { + var fs = fields; + + var re = /^(mask|reason|board|staff|message):/, ma; + if (ma = t.match(re)) { + fs = [ma[1]]; + t = t.replace(re, ""); + } + + var found = false + fs.forEach(function(f) { + if (e[f] && e[f].indexOf(t) !== -1) { + found = true; + } + }); + if (!found) ret_false = true; + }); + + if (ret_false) return false; + } + + return true; + }; + + $("#only_mine, #only_not_expired, #search").on("click input", function() { + lt.set_filter(filter); + }); + lt.set_filter(filter); + + $(".banform").on("submit", function() { return false; }); + + $("#unban").on("click", function() { + $(".banform .hiddens").remove(); + $("").appendTo(".banform"); + + $.each(selected, function(e) { + $("").appendTo(".banform"); + }); + + $(".banform").off("submit").submit(); + }); + + if (device_type == 'desktop') { + // Stick topbar + var stick_on = $(".banlist-opts").offset().top; + var state = true; + $(window).on("scroll resize", function() { + if ($(window).scrollTop() > stick_on && state == true) { + $("body").css("margin-top", $(".banlist-opts").height()); + $(".banlist-opts").addClass("boardlist top").detach().prependTo("body"); + $("#banlist tr:not(.row)").addClass("tblhead").detach().appendTo(".banlist-opts"); + state = !state; + } + else if ($(window).scrollTop() < stick_on && state == false) { + $("body").css("margin-top", "auto"); + $(".banlist-opts").removeClass("boardlist top").detach().prependTo(".banform"); + $(".tblhead").detach().prependTo("#banlist"); + state = !state; + } + }); + } + }); +} diff --git a/js/multi-image.js b/js/multi-image.js index 32d1f256..db4c6bd2 100644 --- a/js/multi-image.js +++ b/js/multi-image.js @@ -18,7 +18,12 @@ function multi_image() { var images_len = $('form:not([id="quick-reply"]) [type=file]').length; if (!(images_len >= max_images)) { - $('.add_image').after('
'); + var new_file = '
'; + + $('[type=file]:last').after(new_file); + if ($("#quick-reply").length) { + $('form:not(#quick-reply) [type=file]:last').after(new_file); + } if (typeof setup_form !== 'undefined') setup_form($('form[name="post"]')); } }) diff --git a/js/no-animated-gif.js b/js/no-animated-gif.js index 7e777d87..a10a6497 100644 --- a/js/no-animated-gif.js +++ b/js/no-animated-gif.js @@ -13,7 +13,10 @@ */ function unanimate_gif(e) { - var c = $(''); + if (active_page === "catalog") + var c = $(''); + else + var c = $(''); $(e).parent().prepend(c); c.attr('width', $(e).width()); c.attr('height',$(e).height()); @@ -32,7 +35,7 @@ function unanimate_gif(e) { } function no_animated_gif() { - var anim_gifs = $('img.post-image[src$=".gif"]'); + var anim_gifs = $('img.post-image[src$=".gif"], img.thread-image[src$=".gif"]'); localStorage.no_animated_gif = true; $('#no-animated-gif>a').text(_('Animate GIFs')); $('#no-animated-gif>input').prop('checked', true); @@ -48,13 +51,13 @@ function animated_gif() { $('#no-animated-gif>input').prop('checked', false); } -if (active_page == 'thread' || active_page == 'index' || active_page == 'ukko') { +if (active_page == 'thread' || active_page == 'index' || active_page == 'ukko' || active_page == 'catalog') { $(function(){ var selector, event; if (window.Options && Options.get_tab('general')) { selector = '#no-animated-gif>input'; event = 'change'; - Options.extend_tab("general", ""); + Options.extend_tab("general", ""); } else { selector = '#no-animated-gif'; diff --git a/js/options/user-css.js b/js/options/user-css.js index a6b2d137..840bcd1f 100644 --- a/js/options/user-css.js +++ b/js/options/user-css.js @@ -43,7 +43,7 @@ var apply_css = function() { var update_textarea = function() { if (!localStorage.user_css) { textarea.text("/* "+_("Enter here your own CSS rules...")+" */\n" + - "/* "+_("If you want to make a redistributable style, be sure to\n have a Yotsuba B theme selected.")+" */\n" + + "/* "+_("If you want to make a redistributable style, be sure to\nhave a Yotsuba B theme selected.")+" */\n" + "/* "+_("You can include CSS files from remote servers, for example:")+" */\n" + '@import "http://example.com/style.css";'); } diff --git a/js/options/user-js.js b/js/options/user-js.js index 240e7b95..0b7d140f 100644 --- a/js/options/user-js.js +++ b/js/options/user-js.js @@ -52,7 +52,7 @@ var apply_js = function() { var update_textarea = function() { if (!localStorage.user_js) { textarea.text("/* "+_("Enter here your own Javascript code...")+" */\n" + - "/* "+_("Have a backup of your storage somewhere, as messing here\n may render you this website unusable.")+" */\n" + + "/* "+_("Have a backup of your storage somewhere, as messing here\nmay render you this website unusable.")+" */\n" + "/* "+_("You can include JS files from remote servers, for example:")+" */\n" + 'load_js("http://example.com/script.js");'); } diff --git a/js/own-board.js b/js/own-board.js new file mode 100644 index 00000000..497c568c --- /dev/null +++ b/js/own-board.js @@ -0,0 +1,116 @@ +/***************************************************************** + * ------- WARNING! --------- * + ***************************************************************** + * This script is at the current time undocumented and * + * unsupported. It is still a work in progress and will likely * + * change. You are on your own. * + *****************************************************************/ + ++function() { + +var uniq = function(a) { + var b = {}; + var c = []; + a.forEach(function(i) { + if (!b[i]) { + c.push(i); + b[i] = true; + } + }); + return c; +}; + + +if (active_page == 'thread' || active_page == 'index') { + var board = null; + + $(function() { + board = $('input[name="board"]').first().val(); + }); + + $(document).on('ajax_after_post', function(e, r) { + var threads = JSON.parse(localStorage.obthreads || '[]'); + + var thread = null; + if (active_page == 'index') { + thread = r.id|0; + } + else { + thread = $('[id^="thread_"]').first().attr('id').replace("thread_", "")|0; + } + + threads.push([board, thread]); + threads = uniq(threads); + localStorage.obthreads = JSON.stringify(threads); + }); +} + +var loaded = false; +$(function() { + loaded = true; +}); + +var activate = function() { + if (document.location.hash != '#own') return false; + + if (loaded) late_activate(); + else $(function() { late_activate(); }); + + return true; +}; + +var late_activate = function() { + $('[id^="thread_"]').remove(); + + var threads = JSON.parse(localStorage.obthreads || '[]'); + + threads.forEach(function(v) { + var board = v[0]; + var thread = v[1]; + var url = "/"+board+"/res/"+thread+".html"; + + $.get(url, function(html) { + var s = $(html).find('[id^="thread_"]'); + + s[0].bumptime = (new Date(s.find("time").last().attr("datetime"))).getTime(); + + var added = false; + $('[id^="thread_"]').each(function() { + if (added) return; + if (s[0].bumptime > this.bumptime) { + added = true; + s.insertBefore(this); + } + }); + if (!added) { + s.appendTo('[name="postcontrols"]'); + } + + s.find('.post.reply').addClass('hidden').hide().slice(-3).removeClass('hidden').show(); + + s.find('.post.reply.hidden').next().addClass('hidden').hide(); // Hide
elements + + var posts_omitted = s.find('.post.reply.hidden').length; + var images_omitted = s.find('.post.reply.hidden img').length; + + if (posts_omitted > 0) { + var omitted = $(fmt(''+_('{0} posts and {1} images omitted.')+' '+_('Click reply to view.')+'', + [posts_omitted, images_omitted])); + + omitted.appendTo(s.find('.post.op')); + } + + var reply = $('['+_('Reply')+']').appendTo(s.find('.intro').first()); + + $(document).trigger('new_post', s[0]); + }); + }); +}; + +$(window).on("hashchange", function() { + return !activate(); +}); +activate(); + + +}(); diff --git a/js/post-hover.js b/js/post-hover.js index e3e4dc62..e30cbf43 100644 --- a/js/post-hover.js +++ b/js/post-hover.js @@ -58,8 +58,8 @@ onready(function(){ // link links to itself or to op; ignore } else if($post.is(':visible') && - $post.offset().top + $post.height() >= $(window).scrollTop() && - $post.offset().top <= $(window).scrollTop() + $(window).height()) { + $post.offset().top >= $(window).scrollTop() && + $post.offset().top + $post.height() <= $(window).scrollTop() + $(window).height()) { // post is in view $post.addClass('highlighted'); } else { diff --git a/js/quick-reply.js b/js/quick-reply.js index 07fe4aef..12cca366 100644 --- a/js/quick-reply.js +++ b/js/quick-reply.js @@ -83,11 +83,12 @@ }\ #quick-reply textarea {\ width: 100%;\ + min-width: 100%;\ box-sizing: border-box;\ -webkit-box-sizing:border-box;\ -moz-box-sizing: border-box;\ font-size: 10pt;\ - resize: vertical;\ + resize: vertical horizontal;\ }\ #quick-reply input, #quick-reply select, #quick-reply textarea {\ margin: 0 0 1px 0;\ @@ -115,7 +116,7 @@ #quick-reply td.recaptcha-response {\ padding: 0 0 1px 0;\ }\ - @media screen and (max-width: 800px) {\ + @media screen and (max-width: 400px) {\ #quick-reply {\ display: none !important;\ }\ @@ -363,7 +364,7 @@ $(window).ready(function() { if (settings.get('hide_at_top', true)) { $(window).scroll(function() { - if ($(this).width() <= 800) + if ($(this).width() <= 400) return; if ($(this).scrollTop() < $origPostForm.offset().top + $origPostForm.height() - 100) $postForm.fadeOut(100); @@ -384,7 +385,7 @@ }; $(window).on('cite', function(e, id, with_link) { - if ($(this).width() <= 800) + if ($(this).width() <= 400) return; show_quick_reply(); if (with_link) { @@ -439,7 +440,7 @@ $('.quick-reply-btn').hide(); $(window).scroll(function() { - if ($(this).width() <= 800) + if ($(this).width() <= 400) return; if ($(this).scrollTop() < $('form[name="post"]:first').offset().top + $('form[name="post"]:first').height() - 100) $('.quick-reply-btn').fadeOut(100); diff --git a/js/settings.js b/js/settings.js index 02d5658d..81e88f7a 100644 --- a/js/settings.js +++ b/js/settings.js @@ -55,13 +55,11 @@ tb_settings['wpaint'] = { // auto-reload.js tb_settings['auto-reload'] = { // Minimum delay before reloading the page when at the bottom - min_delay_bottom: 3000, - // Minimum delay before reloading the page when not at the bottom - min_delay_top: 10000, + min_delay_bottom: 5000, // Maximum delay before reloading the page max_delay: 600000, - //Delay to wait before reloading when the user scrolls to the bottom - quick_delay: 100, + // Delay if there was an error + error_delay: 30000, // Reset the delay to the minimum upon focussing the window. reset_focus: true }; diff --git a/js/show-own-posts.js b/js/show-own-posts.js new file mode 100644 index 00000000..8b83f4cd --- /dev/null +++ b/js/show-own-posts.js @@ -0,0 +1,86 @@ +/* + * show-own-posts.js + * https://github.com/savetheinternet/Tinyboard/blob/master/js/show-op.js + * + * Adds "(You)" to a name field when the post is yours. Update references as well. + * + * Released under the MIT license + * Copyright (c) 2014 Marcin Łabanowski + * + * Usage: + * $config['additional_javascript'][] = 'js/jquery.min.js'; + * $config['additional_javascript'][] = 'js/ajax.js'; + * $config['additional_javascript'][] = 'js/show-own-posts.js'; + * + */ + + ++function(){ + + +var update_own = function() { + if ($(this).is('.you')) return; + + var thread = $(this).parents('[id^="thread_"]').first(); + if (!thread.length) { + thread = $(this); + } + + var board = thread.attr('data-board'); + var posts = JSON.parse(localStorage.own_posts || '{}'); + + var id = $(this).attr('id').split('_')[1]; + + if (posts[board] && posts[board].indexOf(id) !== -1) { // Own post! + $(this).addClass('you'); + $(this).find('span.name').first().append(' '+_('(You)')); + } + + // Update references + $(this).find('div.body:first a:not([rel="nofollow"])').each(function() { + var postID; + + if(postID = $(this).text().match(/^>>(\d+)$/)) + postID = postID[1]; + else + return; + + if (posts[board] && posts[board].indexOf(postID) !== -1) { + $(this).after(' '+_('(You)')+''); + } + }); +}; + +var update_all = function() { + $('div[id^="thread_"], div.post.reply').each(update_own); +}; + +var board = null; + +$(function() { + board = $('input[name="board"]').first().val(); + + update_all(); +}); + +$(document).on('ajax_after_post', function(e, r) { + var posts = JSON.parse(localStorage.own_posts || '{}'); + posts[board] = posts[board] || []; + posts[board].push(r.id); + localStorage.own_posts = JSON.stringify(posts); +}); + +$(document).on('new_post', function(e,post) { + var $post = $(post); + if ($post.is('div.post.reply')) { // it's a reply + $post.each(update_own); + } + else { + $post.each(update_own); // first OP + $post.find('div.post.reply').each(update_own); // then replies + } +}); + + + +}(); diff --git a/js/thread-stats.js b/js/thread-stats.js new file mode 100644 index 00000000..8873dbdb --- /dev/null +++ b/js/thread-stats.js @@ -0,0 +1,116 @@ +/* + * thread-stats.js + * - Adds statistics of the thread below the posts area + * - Shows ID post count beside each postID on hover + * + * Usage: + * $config['additional_javascript'][] = 'js/jquery.min.js'; + * $config['additional_javascript'][] = 'js/thread-stats.js'; + */ +if (active_page == 'thread') { +$(document).ready(function(){ + //check if page uses unique ID + var IDsupport = ($('.poster_id').length > 0); + var thread_id = (document.location.pathname + document.location.search).split('/'); + thread_id = thread_id[thread_id.length -1].split('+')[0].split('-')[0].split('.')[0]; + + $('.boardlist.bottom, footer') + .first() + .before('
'); + var el = $('#thread_stats'); + el.prepend(_('Page')+' ?'); + if (IDsupport){ + el.prepend('0 UIDs | '); + } + el.prepend('0 '+_('images')+' | '); + el.prepend('0 '+_('replies')+' | '); + delete el; + function update_thread_stats(){ + var op = $('#thread_'+ thread_id +' > div.post.op:not(.post-hover):not(.inline)').first(); + var replies = $('#thread_'+ thread_id +' > div.post.reply:not(.post-hover):not(.inline)'); + // post count + $('#thread_stats_posts').text(replies.length); + // image count + $('#thread_stats_images').text(replies.filter(function(){ + return $(this).find('> .files').text().trim() != false; + }).length); + // unique ID count + if (IDsupport) { + var opID = op.find('> .intro > .poster_id').text(); + var ids = {}; + replies.each(function(){ + var cur = $(this).find('> .intro > .poster_id'); + var curID = cur.text(); + if (ids[curID] === undefined) { + ids[curID] = 0; + } + ids[curID]++; + }); + if (ids[opID] === undefined) { + ids[opID] = 0; + } + ids[opID]++; + var cur = op.find('>.intro >.poster_id'); + cur.find('+.posts_by_id').remove(); + cur.after(' ('+ ids[cur.text()] +')'); + replies.each(function(){ + cur = $(this).find('>.intro >.poster_id'); + cur.find('+.posts_by_id').remove(); + cur.after(' ('+ ids[cur.text()] +')'); + }); + var size = function(obj) { + var size = 0, key; + for (key in obj) { + if (obj.hasOwnProperty(key)) size++; + } + return size; + }; + $('#thread_stats_uids').text(size(ids)); + } + var board_name = $('input[name="board"]').val(); + $.getJSON('//'+ document.location.host +'/'+ board_name +'/threads.json').success(function(data){ + var found, page = '???'; + for (var i=0;data[i];i++){ + var threads = data[i].threads; + for (var j=0; threads[j]; j++){ + if (parseInt(threads[j].no) == parseInt(thread_id)) { + page = data[i].page +1; + found = true; + break; + } + } + if (found) break; + } + $('#thread_stats_page').text(page); + if (!found) $('#thread_stats_page').css('color','red'); + else $('#thread_stats_page').css('color',''); + }); + } + // load the current page the thread is on. + // uses ajax call so it gets loaded on a delay (depending on network resources available) + var thread_stats_page_timer = setInterval(function(){ + var board_name = $('input[name="board"]').val(); + $.getJSON('//'+ document.location.host +'/'+ board_name +'/threads.json').success(function(data){ + var found, page = '???'; + for (var i=0;data[i];i++){ + var threads = data[i].threads; + for (var j=0; threads[j]; j++){ + if (parseInt(threads[j].no) == parseInt(thread_id)) { + page = data[i].page +1; + found = true; + break; + } + } + if (found) break; + } + $('#thread_stats_page').text(page); + if (!found) $('#thread_stats_page').css('color','red'); + else $('#thread_stats_page').css('color',''); + }); + },30000); + $('body').append(''); + update_thread_stats(); + $('#update_thread').click(update_thread_stats); + $(document).on('new_post',update_thread_stats); +}); +} diff --git a/js/thread-watcher.js b/js/thread-watcher.js new file mode 100644 index 00000000..22656e48 --- /dev/null +++ b/js/thread-watcher.js @@ -0,0 +1,195 @@ +// Thanks to Khorne on #8chan at irc.rizon.net +// https://gitlab.com/aymous/8chan-watchlist + +'use strict'; +/* jshint globalstrict:true, quotmark:single */ +/* jshint browser:true, jquery:true, devel:true, unused:true, undef:true */ +/* global active_page:false, board_name:false */ +if(!localStorage.watchlist){ + //If the watchlist is undefined in the localStorage, + //initialize it as an empty array. + localStorage.watchlist = '[]'; +} +var watchlist = {}; + +/** + * [render /> Creates a watchlist container and populates it with info + * about each thread that's currently being watched. If the watchlist container + * already exists, it empties it out and repopulates it.] + * @param {[Bool]} reset [If true and the watchlist is rendered, remove it] + */ +watchlist.render = function(reset) { + /* jshint eqnull:true */ + if (reset == null) reset = false; + /* jshint eqnull:false */ + if (reset && $('#watchlist').length) $('#watchlist').remove(); + var threads = []; + //Read the watchlist and create a new container for each thread. + JSON.parse(localStorage.watchlist).forEach(function(e, i) { + //look at line 69, that's what (e) is here. + threads.push('
' + + 'Board: '+e[0]+' ' + + 'Thread: '+''+e[1]+' ' + + 'Replies: '+e[2]+' ' + + '[Unwatch]'+ + '
'); + }); + if ($('#watchlist').length) { + //If the watchlist is already there, empty it and append the threads. + $('#watchlist').children('.watchlist-inner').remove(); + $('#watchlist').append(threads.join('')); + } else { + //If the watchlist has not yet been rendered, create it. + $('form[name="post"]').before( + $('
'+ + '
'+ + '[Clear List] '+ + '[Clear Ghosts]'+ + '
'+ + threads.join('')+ + '
').css({ + background: $('.reply').css('background'), + borderColor : $('.reply').css('border-color') + })); + } + return this; +}; + +/** + * [add /> adds the given item to the watchlist] + * @param {[Obj/Str]} sel [An unwrapped jquery selector.] + */ +watchlist.add = function(sel) { + var threadName, threadInfo; + + if (active_page === 'thread') { + if ($('.subject').length){ + //If a subject is given, use the first 20 characters as the thread name. + threadName = $('.subject').text().substring(0,20); + } else { //Otherwise use the thread id. + threadName = $('.op').parent().attr('id'); + } + //board name, thread name as defined above, current amount of posts, thread url + threadInfo = [board_name, threadName, $('.post').length, location.href]; + + } else if (active_page === 'index') { + + var postCount; + //Figure out the post count. + if ($(sel).parents('.op').children('.omitted').length) { + postCount = $(sel).parents('.op').children('.omitted').text().split(' ')[0]; + } else { + postCount = $(sel).parents('.op').siblings('.post').length+1; + } + //Grab the reply link. + var threadLink = $(sel).siblings('a:contains("[Reply]")').attr('href'); + //Figure out the thread name. If anon, use the thread id. + if ($(sel).parent().find('.subject').length) { + threadName = $(sel).parent().find('.subject').text().substring(0,20); + } else { + threadName = $(sel).parents('div').last().attr('id'); + } + + threadInfo = [board_name, threadName, postCount, threadLink]; + + } else { + alert('Functionality not yet implemented for this type of page.'); + return this; + } + + //if the thread is already being watched, cancel the function. + if (localStorage.watchlist.indexOf(JSON.stringify(threadInfo)) !== -1) { + return this; + } + + var _watchlist = JSON.parse(localStorage.watchlist); //Read the watchlist + _watchlist.push(threadInfo); //Add the new watch item. + localStorage.watchlist = JSON.stringify(_watchlist); //Save the watchlist. + return this; +}; + +/** + * [remove /> removes the given item from the watchlist] + * @param {[Int]} n [The index at which to remove.] + */ +watchlist.remove = function(n) { + var _watchlist = JSON.parse(localStorage.watchlist); + _watchlist.splice(n, 1); + localStorage.watchlist = JSON.stringify(_watchlist); + return this; +}; + +/** + * [clear /> resets the watchlist to the initial empty array] + */ +watchlist.clear = function() { + localStorage.watchlist = '[]'; + return this; +}; + +/** + * [exists /> pings every watched thread to check if it exists and removes it if not] + * @param {[Obj/Str]} sel [an unwrapped jq selector] + */ +watchlist.exists = function(sel) { + $.ajax($(sel).children().children('a').attr('href'), { + type :'HEAD', + error: function() { + watchlist.remove(parseInt($(sel).attr('id').split('-')[1])).render(); + }, + success : function(){ + return; + } + }); +}; + +$(document).ready(function(){ + //Append the watchlist toggle button. + $('.boardlist').append('[ watchlist ]'); + //Append a watch thread button after every OP. + $('.op>.intro').append('[Watch Thread]'); + + //Draw the watchlist, hidden. + watchlist.render(); + + //Show or hide the watchlist. + $('#watchlist-toggle').on('click', function(e) { + //if ctrl+click, reset the watchlist. + if (e.ctrlKey) { + watchlist.render(true); + } + if ($('#watchlist').css('display') !== 'none') { + $('#watchlist').css('display', 'none'); + } else { + $('#watchlist').css('display', 'block'); + } //Shit got really weird with hide/show. Went with css manip. Probably faster anyway. + }); + + //Trigger the watchlist add function. + //The selector is passed as an argument in case the page is not a thread. + $('.watchThread').on('click', function() { + watchlist.add(this).render(); + }); + + //The index is saved in .watchlist-inner so that it can be passed as the argument here. + //$('.watchlist-remove').on('click') won't work in case of re-renders and + //the page will need refreshing. This works around that. + $(document).on('click', '.watchlist-remove', function() { + var item = parseInt($(this).parent().attr('id').split('-')[1]); + watchlist.remove(item).render(); + }); + + //Empty the watchlist and redraw it. + $('#clearList').on('click', function(){ + watchlist.clear().render(); + }); + + //Get rid of every watched item that no longer directs to an existing page. + $('#clearGhosts').on('click', function() { + $('.watchlist-inner').each(function(){ + watchlist.exists(this); + }); + }); + +}); + diff --git a/js/threadscroll.js b/js/threadscroll.js new file mode 100644 index 00000000..0a233f58 --- /dev/null +++ b/js/threadscroll.js @@ -0,0 +1,37 @@ +if(active_page == "index" || active_page == "ukko"){ + var hoverElem = null; + + $(document).mouseover(function(e){ + var x = e.clientX, y = e.clientY, + elementOnMouseOver = document.elementFromPoint(x, y); + hoverElem = $(elementOnMouseOver); + }); + + $(document).keydown(function(e){ + //Up arrow + if(e.which == 38){ + var ele = hoverElem; + var par = $(ele).parents('div[id^="thread_"]'); + + if(par.length == 1){ + if(par.prev().attr("id") != null){ + if(par.prev().attr("id").match("^thread")){ + par.prev()[0].scrollIntoView(true); + } + } + } + //Down arrow + }else if(e.which == 40){ + var ele = hoverElem; + var par = $(ele).parents('div[id^="thread_"]'); + + if(par.length == 1){ + if(par.next().attr("id") != null){ + if(par.next().attr("id").match("^thread")){ + par.next()[0].scrollIntoView(true); + } + } + } + } + }); +} diff --git a/js/toggle-images.js b/js/toggle-images.js index 20940ccf..b8940252 100644 --- a/js/toggle-images.js +++ b/js/toggle-images.js @@ -60,7 +60,7 @@ $(document).ready(function(){ if (window.Options && Options.get_tab('general')) { selector = '#toggle-images>input'; event = 'change'; - Options.extend_tab("general", ""); + Options.extend_tab("general", ""); } else { selector = '#toggle-images a'; diff --git a/js/treeview.js b/js/treeview.js index 78ad620b..1709debb 100644 --- a/js/treeview.js +++ b/js/treeview.js @@ -11,14 +11,28 @@ * */ -if (active_page == 'thread') +if (active_page == 'thread' || active_page == 'ukko' || active_page == 'index') $(function() { - $('hr:first').before('
'); - $('div#treeview a') - .text(_('Tree view')) - .click(function(e) { - e.preventDefault(); + if (window.Options && Options.get_tab('general')) { + var selector = '#treeview-global>input'; + Options.extend_tab("general", ""); + $(selector).on('change', function() { + if (localStorage.treeview === 'true') { + localStorage.treeview = 'false'; + } else { + localStorage.treeview = 'true'; + } + }); + if (localStorage.treeview === 'true') { + $(selector).attr('checked', 'checked'); + } + } +}); +if (active_page == 'thread') +$(function() { + var treeview = function(enable) { + if (enable === true) { $('.post.reply').each(function(){ var references = []; $(this).find('.body a').each(function(){ @@ -26,7 +40,6 @@ $(function() { references.push(parseInt($(this).html().replace('>>', ''))); } }); - var maxref = references.reduce(function(a,b) { return a > b ? a : b; }, 0); var parent_post = $("#reply_"+maxref); @@ -39,7 +52,24 @@ $(function() { post.detach().css("margin-left", margin).insertAfter(parent_post.next()); br.detach().insertAfter(post); - }); - }); + } else { + $('.post.reply').sort(function(a,b) { + return parseInt(a.id.replace('reply_', '')) - parseInt(b.id.replace('reply_', '')); + }).each(function () { + var post = $(this); + var br = post.next(); + post.detach().css('margin-left', '').appendTo('.thread'); + br.detach().insertAfter(post); + }); + } + } + + $('hr:first').before('
'); + $('input#treeview').on('change', function(e) { treeview($(this).is(':checked')); }); + + if (localStorage.treeview === 'true') { + treeview(true); + $('input#treeview').attr('checked', true); + } }); diff --git a/js/upload-selection.js b/js/upload-selection.js index e2032748..b342a134 100644 --- a/js/upload-selection.js +++ b/js/upload-selection.js @@ -25,6 +25,7 @@ $(function(){ $("#upload_url").hide(); $("#upload_embed").hide(); $(".add_image").hide(); + $(".dropzone-wrap").hide(); $('[id^=upload_file]').each(function(i, v) { $(v).val(''); @@ -40,6 +41,7 @@ $(function(){ enable_file = function() { disable_all(); $("#upload").show(); + $(".dropzone-wrap").show(); $(".file_separator").show(); $("[id^=upload_file]").show(); $(".add_image").show(); diff --git a/js/wPaint b/js/wPaint index 2c272dff..f1122003 160000 --- a/js/wPaint +++ b/js/wPaint @@ -1 +1 @@ -Subproject commit 2c272dffca0f3d7b7163bd82ba15629f54409278 +Subproject commit f11220032e7edb8349516d3751d3aaee0fd0de68 diff --git a/js/watch.js b/js/watch.js index a202130f..07c6942a 100644 --- a/js/watch.js +++ b/js/watch.js @@ -98,6 +98,9 @@ $(function(){ else { bc.threads = bc.threads || {}; bc.threads[thread] = Date.now(); + + bc.slugs = bc.slugs || {}; + bc.slugs[thread] = document.location.pathname + document.location.search; } st[board] = bc; storage_save(st); @@ -121,7 +124,7 @@ $(function(){ var tag; if (variant == 'desktop') { - tag = $("#"+tid+""+newposts+""); + tag = $("#"+tid+""+newposts+""); tag.find(".watch-remove").mouseenter(function() { this.oldval = $(this).html(); $(this).css("min-width", $(this).width()); @@ -132,7 +135,7 @@ $(function(){ }) } else if (variant == 'mobile') { - tag = $("#"+tid+""+newposts+"" + tag = $("#"+tid+""+newposts+"" +""); } @@ -245,7 +248,7 @@ $(function(){ var st = storage(); var sched = 0; - var sched_diff = 300; + var sched_diff = 2000; for (var i in st) { if (st[i].watched) { diff --git a/js/wpaint.js b/js/wpaint.js index 9c619070..a245a22b 100644 --- a/js/wpaint.js +++ b/js/wpaint.js @@ -13,12 +13,7 @@ * $config['additional_javascript'][] = 'js/jquery.min.js'; * $config['additional_javascript'][] = 'js/jquery-ui.custom.min.js'; * $config['additional_javascript'][] = 'js/ajax.js'; - * $config['additional_javascript'][] = 'js/wPaint/lib/wColorPicker.min.js'; - * $config['additional_javascript'][] = 'js/wPaint/wPaint.min.js'; - * $config['additional_javascript'][] = 'js/wPaint/plugins/main/wPaint.menu.main.min.js'; - * $config['additional_javascript'][] = 'js/wPaint/plugins/text/wPaint.menu.text.min.js'; - * $config['additional_javascript'][] = 'js/wPaint/plugins/shapes/wPaint.menu.main.shapes.min.js'; - * $config['additional_javascript'][] = 'js/wPaint/plugins/file/wPaint.menu.main.file.min.js'; + * $config['additional_javascript'][] = 'js/wPaint/8ch.js'; * $config['additional_javascript'][] = 'js/wpaint.js'; * $config['additional_javascript'][] = 'js/upload-selection.js'; * @@ -49,7 +44,7 @@ oekaki.init = function() { var oekaki_form = 'Oekaki
'; // Add oekaki after the file input - $('form[name="post"]:not(#quick-reply) input[type="file"]').parent().parent().after(oekaki_form); + $('form[name="post"]:not(#quick-reply) [id="upload"]').after(oekaki_form); $('').appendTo($("head")); $('').appendTo($("head")); diff --git a/mod.php b/mod.php index 434853dc..8ae4a107 100644 --- a/mod.php +++ b/mod.php @@ -4,9 +4,10 @@ * Copyright (c) 2010-2014 Tinyboard Development Group */ -require 'inc/functions.php'; -require 'inc/mod/pages.php'; -require 'inc/mod/auth.php'; +require_once 'inc/functions.php'; +require_once 'inc/bans.php'; +require_once 'inc/mod/pages.php'; +require_once 'inc/mod/auth.php'; if ($config['debug']) $parse_start_time = microtime(true); @@ -68,7 +69,7 @@ $pages = array( '/ban' => 'secure_POST ban', // new ban '/bans' => 'secure_POST bans', // ban list - '/bans/(\d+)' => 'secure_POST bans', // ban list + '/bans.json' => 'secure bans_json', // ban list JSON '/ban-appeals' => 'secure_POST ban_appeals', // view ban appeals '/recent/(\d+)' => 'recent_posts', // view recent posts @@ -111,6 +112,11 @@ $pages = array( str_replace('%d', '(\d+)', preg_quote($config['file_page50'], '!')) => 'view_thread50', '/(\%b)/' . preg_quote($config['dir']['res'], '!') . str_replace('%d', '(\d+)', preg_quote($config['file_page'], '!')) => 'view_thread', + + '/(\%b)/' . preg_quote($config['dir']['res'], '!') . + str_replace(array('%d','%s'), array('(\d+)', '[a-z0-9-]+'), preg_quote($config['file_page50_slug'], '!')) => 'view_thread50', + '/(\%b)/' . preg_quote($config['dir']['res'], '!') . + str_replace(array('%d','%s'), array('(\d+)', '[a-z0-9-]+'), preg_quote($config['file_page_slug'], '!')) => 'view_thread', ); diff --git a/post.php b/post.php index 2763d4d3..729170a7 100644 --- a/post.php +++ b/post.php @@ -3,8 +3,9 @@ * Copyright (c) 2010-2014 Tinyboard Development Group */ -require 'inc/functions.php'; -require 'inc/anti-bot.php'; +require_once 'inc/functions.php'; +require_once 'inc/anti-bot.php'; +require_once 'inc/bans.php'; // Fix for magic quotes if (get_magic_quotes_gpc()) { @@ -16,6 +17,10 @@ if (get_magic_quotes_gpc()) { $_POST = strip_array($_POST); } +if ((!isset($_POST['mod']) || !$_POST['mod']) && $config['board_locked']) { + error("Board is locked"); +} + if (isset($_POST['delete'])) { // Delete @@ -81,25 +86,29 @@ if (isset($_POST['delete'])) { } _syslog(LOG_INFO, 'Deleted post: ' . - '/' . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $post['thread'] ? $post['thread'] : $id) . ($post['thread'] ? '#' . $id : '') + '/' . $board['dir'] . $config['dir']['res'] . link_for($post) . ($post['thread'] ? '#' . $id : '') ); } } buildIndex(); - - rebuildThemes('post-delete', $board['uri']); - $is_mod = isset($_POST['mod']) && $_POST['mod']; $root = $is_mod ? $config['root'] . $config['file_mod'] . '?/' : $config['root']; - + if (!isset($_POST['json_response'])) { header('Location: ' . $root . $board['dir'] . $config['file_index'], true, $config['redirect_http']); } else { header('Content-Type: text/json'); echo json_encode(array('success' => true)); } + + // We are already done, let's continue our heavy-lifting work in the background (if we run off FastCGI) + if (function_exists('fastcgi_finish_request')) + @fastcgi_finish_request(); + + rebuildThemes('post-delete', $board['uri']); + } elseif (isset($_POST['report'])) { if (!isset($_POST['board'], $_POST['reason'])) error($config['error']['bot']); @@ -138,7 +147,7 @@ if (isset($_POST['delete'])) { if ($config['syslog']) _syslog(LOG_INFO, 'Reported post: ' . - '/' . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], $thread ? $thread : $id) . ($thread ? '#' . $id : '') . + '/' . $board['dir'] . $config['dir']['res'] . link_for($post) . ($thread ? '#' . $id : '') . ' for "' . $reason . '"' ); $query = prepare("INSERT INTO ``reports`` VALUES (NULL, :time, :ip, :board, :post, :reason)"); @@ -187,20 +196,6 @@ if (isset($_POST['delete'])) { } else $post['op'] = true; - if (!(($post['op'] && $_POST['post'] == $config['button_newtopic']) || - (!$post['op'] && $_POST['post'] == $config['button_reply']))) - error($config['error']['bot']); - - // Check the referrer - if ($config['referer_match'] !== false && - (!isset($_SERVER['HTTP_REFERER']) || !preg_match($config['referer_match'], rawurldecode($_SERVER['HTTP_REFERER'])))) - error($config['error']['referer']); - - checkDNSBL(); - - // Check if banned - checkBan($board['uri']); - // Check for CAPTCHA right after opening the board so the "return" link is in there if ($config['recaptcha']) { if (!isset($_POST['recaptcha_challenge_field']) || !isset($_POST['recaptcha_response_field'])) @@ -214,7 +209,21 @@ if (isset($_POST['delete'])) { error($config['error']['captcha']); } } + + if (!(($post['op'] && $_POST['post'] == $config['button_newtopic']) || + (!$post['op'] && $_POST['post'] == $config['button_reply']))) + error($config['error']['bot']); + + // Check the referrer + if ($config['referer_match'] !== false && + (!isset($_SERVER['HTTP_REFERER']) || !preg_match($config['referer_match'], rawurldecode($_SERVER['HTTP_REFERER'])))) + error($config['error']['referer']); + checkDNSBL(); + + // Check if banned + checkBan($board['uri']); + if ($post['mod'] = isset($_POST['mod']) && $_POST['mod']) { require 'inc/mod/auth.php'; if (!$mod) { @@ -246,7 +255,7 @@ if (isset($_POST['delete'])) { //Check if thread exists if (!$post['op']) { - $query = prepare(sprintf("SELECT `sticky`,`locked`,`sage` FROM ``posts_%s`` WHERE `id` = :id AND `thread` IS NULL LIMIT 1", $board['uri'])); + $query = prepare(sprintf("SELECT `sticky`,`locked`,`sage`,`slug` FROM ``posts_%s`` WHERE `id` = :id AND `thread` IS NULL LIMIT 1", $board['uri'])); $query->bindValue(':id', $post['thread'], PDO::PARAM_INT); $query->execute() or error(db_error()); @@ -255,6 +264,9 @@ if (isset($_POST['delete'])) { error($config['error']['nonexistant']); } } + else { + $thread = false; + } // Check for an embed field @@ -300,7 +312,12 @@ if (isset($_POST['delete'])) { $url_without_params = $post['file_url']; $post['extension'] = strtolower(mb_substr($url_without_params, mb_strrpos($url_without_params, '.') + 1)); - if (!in_array($post['extension'], $config['allowed_ext']) && !in_array($post['extension'], $config['allowed_ext_files'])) + + if ($post['op'] && $config['allowed_ext_op']) { + if (!in_array($post['extension'], $config['allowed_ext_op'])) + error($config['error']['unknownext']); + } + else if (!in_array($post['extension'], $config['allowed_ext']) && !in_array($post['extension'], $config['allowed_ext_files'])) error($config['error']['unknownext']); $post['file_tmp'] = tempnam($config['tmp'], 'url'); @@ -509,7 +526,7 @@ if (isset($_POST['delete'])) { "\n".geoip\geoip_country_name_by_addr_v6($gi, ipv4to6($_SERVER['REMOTE_ADDR'])).""; } } - + if ($config['user_flag'] && isset($_POST['user_flag'])) if (!empty($_POST['user_flag']) ){ @@ -523,6 +540,15 @@ if (isset($_POST['delete'])) { $post['body'] .= "\n" . strtolower($user_flag) . "" . "\n" . $flag_alt . ""; } + + if ($config['allowed_tags'] && $post['op'] && isset($_POST['tag']) && isset($config['allowed_tags'][$_POST['tag']])) { + $post['body'] .= "\n" . $_POST['tag'] . ""; + } + + if ($config['proxy_save'] && isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { + $proxy = preg_replace("/[^0-9a-fA-F.,: ]/", '', $_SERVER['HTTP_X_FORWARDED_FOR']); + $post['body'] .= "\n".$proxy.""; + } if (mysql_version() >= 50503) { $post['body_nomarkup'] = $post['body']; // Assume we're using the utf8mb4 charset @@ -546,8 +572,13 @@ if (isset($_POST['delete'])) { if ($post['has_file']) { + $fnarray = array(); foreach ($post['files'] as $key => &$file) { - if (!in_array($file['extension'], $config['allowed_ext']) && !in_array($file['extension'], $config['allowed_ext_files'])) + if ($post['op'] && $config['allowed_ext_op']) { + if (!in_array($file['extension'], $config['allowed_ext_op'])) + error($config['error']['unknownext']); + } + elseif (!in_array($file['extension'], $config['allowed_ext']) && !in_array($file['extension'], $config['allowed_ext_files'])) error($config['error']['unknownext']); $file['is_an_image'] = !in_array($file['extension'], $config['allowed_ext_files']); @@ -560,6 +591,9 @@ if (isset($_POST['delete'])) { } else { $filenames .= (' ' . escapeshellarg($file['tmp_name'])); } + + $fnarray[] = $file['tmp_name']; + $upload = $file['tmp_name']; if (!is_readable($upload)) @@ -568,7 +602,7 @@ if (isset($_POST['delete'])) { $md5cmd = $config['bsd_md5'] ? 'md5 -r' : 'md5sum'; - if ($output = shell_exec_error("cat $filenames | $md5cmd")) { + if (!$config['php_md5'] && $output = shell_exec_error("cat $filenames | $md5cmd")) { $explodedvar = explode(' ', $output); $hash = $explodedvar[0]; $post['filehash'] = $hash; @@ -576,7 +610,7 @@ if (isset($_POST['delete'])) { $post['filehash'] = md5_file($upload); } else { $str_to_hash = ''; - foreach (explode(' ', $filenames) as $i => $f) { + foreach ($fnarray as $i => $f) { $str_to_hash .= file_get_contents($f); } $post['filehash'] = md5($str_to_hash); @@ -774,6 +808,7 @@ if (isset($_POST['delete'])) { $post = (object)$post; $post->files = array_map(function($a) { return (object)$a; }, $post->files); + $error = event('post', $post); $post->files = array_map(function($a) { return (array)$a; }, $post->files); @@ -788,6 +823,7 @@ if (isset($_POST['delete'])) { $post['num_files'] = sizeof($post['files']); $post['id'] = $id = post($post); + $post['slug'] = slugify($post); insertFloodPost($post); @@ -809,18 +845,6 @@ if (isset($_POST['delete'])) { bumpThread($post['thread']); } - buildThread($post['op'] ? $id : $post['thread']); - - if ($config['try_smarter'] && $post['op']) - $build_pages = range(1, $config['max_pages']); - - if ($post['op']) - clean(); - - event('post-after', $post); - - buildIndex(); - if (isset($_SERVER['HTTP_REFERER'])) { // Tell Javascript that we posted successfully if (isset($_COOKIE[$config['cookies']['js']])) @@ -837,37 +861,35 @@ if (isset($_POST['delete'])) { if ($noko) { $redirect = $root . $board['dir'] . $config['dir']['res'] . - sprintf($config['file_page'], $post['op'] ? $id:$post['thread']) . (!$post['op'] ? '#' . $id : ''); + link_for($post, false, false, $thread) . (!$post['op'] ? '#' . $id : ''); if (!$post['op'] && isset($_SERVER['HTTP_REFERER'])) { $regex = array( 'board' => str_replace('%s', '(\w{1,8})', preg_quote($config['board_path'], '/')), 'page' => str_replace('%d', '(\d+)', preg_quote($config['file_page'], '/')), - 'page50' => str_replace('%d', '(\d+)', preg_quote($config['file_page50'], '/')), + 'page50' => '(' . str_replace('%d', '(\d+)', preg_quote($config['file_page50'], '/')) . '|' . + str_replace(array('%d', '%s'), array('(\d+)', '[a-z0-9-]+'), preg_quote($config['file_page50_slug'], '/')) . ')', 'res' => preg_quote($config['dir']['res'], '/'), ); if (preg_match('/\/' . $regex['board'] . $regex['res'] . $regex['page50'] . '([?&].*)?$/', $_SERVER['HTTP_REFERER'])) { $redirect = $root . $board['dir'] . $config['dir']['res'] . - sprintf($config['file_page50'], $post['op'] ? $id:$post['thread']) . (!$post['op'] ? '#' . $id : ''); + link_for($post, true, false, $thread) . (!$post['op'] ? '#' . $id : ''); } } } else { $redirect = $root . $board['dir'] . $config['file_index']; } + + buildThread($post['op'] ? $id : $post['thread']); if ($config['syslog']) _syslog(LOG_INFO, 'New post: /' . $board['dir'] . $config['dir']['res'] . - sprintf($config['file_page'], $post['op'] ? $id : $post['thread']) . (!$post['op'] ? '#' . $id : '')); + link_for($post) . (!$post['op'] ? '#' . $id : '')); if (!$post['mod']) header('X-Associated-Content: "' . $redirect . '"'); - if ($post['op']) - rebuildThemes('post-thread', $board['uri']); - else - rebuildThemes('post', $board['uri']); - if (!isset($_POST['json_response'])) { header('Location: ' . $redirect, true, $config['redirect_http']); } else { @@ -878,6 +900,26 @@ if (isset($_POST['delete'])) { 'id' => $id )); } + + if ($config['try_smarter'] && $post['op']) + $build_pages = range(1, $config['max_pages']); + + if ($post['op']) + clean(); + + event('post-after', $post); + + buildIndex(); + + // We are already done, let's continue our heavy-lifting work in the background (if we run off FastCGI) + if (function_exists('fastcgi_finish_request')) + @fastcgi_finish_request(); + + if ($post['op']) + rebuildThemes('post-thread', $board['uri']); + else + rebuildThemes('post', $board['uri']); + } elseif (isset($_POST['appeal'])) { if (!isset($_POST['ban_id'])) error($config['error']['bot']); diff --git a/search.php b/search.php index 394aa3ff..71f4ae5e 100644 --- a/search.php +++ b/search.php @@ -15,7 +15,7 @@ $boards = listBoards(TRUE); } - $body = Element('search_form.html', Array('boards' => $boards, 'board' => isset($_GET['board']) ? $_GET['board'] : false, 'search' => isset($_GET['search']) ? str_replace('"', '"', utf8tohtml($_GET['search'])) : false)); + $body = Element('search_form.html', Array('boards' => $boards, 'b' => isset($_GET['board']) ? $_GET['board'] : false, 'search' => isset($_GET['search']) ? str_replace('"', '"', utf8tohtml($_GET['search'])) : false)); if(isset($_GET['search']) && !empty($_GET['search']) && isset($_GET['board']) && in_array($_GET['board'], $boards)) { $phrase = $_GET['search']; diff --git a/smart_build.php b/smart_build.php new file mode 100644 index 00000000..31d8110a --- /dev/null +++ b/smart_build.php @@ -0,0 +1,216 @@ + $config['max_pages']) return false; + $config['try_smarter'] = true; + $build_pages = array($page); + buildIndex("skip"); + return true; +} + +function sb_api_board($b, $page = 0) { $page = (int)$page; + return sb_board($b, $page + 1); +} + +function sb_thread($b, $thread, $slugcheck = false) { global $config; $thread = (int)$thread; + if ($thread < 1) return false; + + if (!preg_match('/^'.$config['board_regex'].'$/u', $b)) return false; + + if (Cache::get("thread_exists_".$b."_".$thread) == "no") return false; + + $query = prepare(sprintf("SELECT MAX(`id`) AS `max` FROM ``posts_%s``", $b)); + if (!$query->execute()) return false; + + $s = $query->fetch(PDO::FETCH_ASSOC); + $max = $s['max']; + + if ($thread > $max) return false; + + $query = prepare(sprintf("SELECT `id` FROM ``posts_%s`` WHERE `id` = :id AND `thread` IS NULL", $b)); + $query->bindValue(':id', $thread); + + if (!$query->execute() || !$query->fetch(PDO::FETCH_ASSOC) ) { + Cache::set("thread_exists_".$b."_".$thread, "no"); + return false; + } + + if ($slugcheck && $config['slugify']) { + global $request; + + $link = link_for(array("id" => $thread), $slugcheck === 50, array("uri" => $b)); + $link = "/".$b."/".$config['dir']['res'].$link; + + if ($link != $request) { + header("Location: $link", true, 301); + die(); + } + } + + if ($slugcheck == 50) { // Should we really generate +50 page? Maybe there are not enough posts anyway + global $request; + $r = str_replace("+50", "", $request); + $r = substr($r, 1); // Cut the slash + + if (file_exists($r)) return false; + } + + if (!openBoard($b)) return false; + buildThread($thread); + return true; +} + +function sb_thread_slugcheck($b, $thread) { + return sb_thread($b, $thread, true); +} +function sb_thread_slugcheck50($b, $thread) { + return sb_thread($b, $thread, 50); +} + +function sb_api($b) { global $config, $build_pages; + if (!openBoard($b)) return false; + $config['try_smarter'] = true; + $build_pages = array(-1); + buildIndex(); + return true; +} + +function sb_ukko() { + rebuildTheme("ukko", "post-thread"); + return true; +} + +function sb_catalog($b) { + if (!openBoard($b)) return false; + + rebuildTheme("catalog", "post-thread", $b); + return true; +} + +function sb_recent() { + rebuildTheme("recent", "post-thread"); + return true; +} + +function sb_sitemap() { + rebuildTheme("sitemap", "all"); + return true; +} + +$entrypoints = array(); + +$entrypoints['/%b/'] = 'sb_board'; +$entrypoints['/%b/'.$config['file_index']] = 'sb_board'; +$entrypoints['/%b/'.$config['file_page']] = 'sb_board'; +$entrypoints['/%b/%d.json'] = 'sb_api_board'; +if ($config['api']['enabled']) { + $entrypoints['/%b/threads.json'] = 'sb_api'; + $entrypoints['/%b/catalog.json'] = 'sb_api'; +} + +$entrypoints['/%b/'.$config['dir']['res'].$config['file_page']] = 'sb_thread_slugcheck'; +$entrypoints['/%b/'.$config['dir']['res'].$config['file_page50']] = 'sb_thread_slugcheck50'; +if ($config['slugify']) { + $entrypoints['/%b/'.$config['dir']['res'].$config['file_page_slug']] = 'sb_thread_slugcheck'; + $entrypoints['/%b/'.$config['dir']['res'].$config['file_page50_slug']] = 'sb_thread_slugcheck50'; +} +if ($config['api']['enabled']) { + $entrypoints['/%b/'.$config['dir']['res'].'%d.json'] = 'sb_thread'; +} + +$entrypoints['/*/'] = 'sb_ukko'; +$entrypoints['/*/index.html'] = 'sb_ukko'; +$entrypoints['/recent.html'] = 'sb_recent'; +$entrypoints['/%b/catalog.html'] = 'sb_catalog'; +$entrypoints['/sitemap.xml'] = 'sb_sitemap'; + +$reached = false; + +$request = $_SERVER['REQUEST_URI']; +list($request) = explode('?', $request); + +foreach ($entrypoints as $id => $fun) { + $id = '@^' . preg_quote($id, '@') . '$@u'; + + $id = str_replace('%b', '('.$config['board_regex'].')', $id); + $id = str_replace('%d', '([0-9]+)', $id); + $id = str_replace('%s', '[a-zA-Z0-9-]+', $id); + + $matches = null; + + if (preg_match ($id, $request, $matches)) { + array_shift($matches); + + $reached = call_user_func_array($fun, $matches); + + break; + } +} + +function die_404() { global $config; + if (!$config['page_404']) { + header("HTTP/1.1 404 Not Found"); + header("Status: 404 Not Found"); + echo "

404 Not Found

Page doesn't exist


vichan
"; + } + else { + header("Location: ".$config['page_404']); + } + header("X-Accel-Expires: 120"); + die(); +} + +if ($reached) { + if ($request[strlen($request)-1] == '/') { + $request .= 'index.html'; + } + $request = '.'.$request; + + if (!file_exists($request)) { + die_404(); + } + + header("HTTP/1.1 200 OK"); + header("Status: 200 OK"); + if (preg_match('/\.json$/', $request)) { + header("Content-Type", "application/json"); + } + elseif (preg_match('/\.js$/', $request)) { + header("Content-Type", "text/javascript; charset=utf-8"); + } + elseif (preg_match('/\.xml$/', $request)) { + header("Content-Type", "application/xml"); + } + else { + header("Content-Type", "text/html; charset=utf-8"); + } + header("Cache-Control: public, nocache, no-cache, max-age=0, must-revalidate"); + header("Expires: Fri, 22 Feb 1991 06:00:00 GMT"); + header("Last-Modified: ".date('r', filemtime($request))); + + //if (isset ($_SERVER['HTTP_ACCEPT_ENCODING']) && preg_match('/gzip/', $_SERVER['HTTP_ACCEPT_ENCODING']) && file_exists($request.".gz")) { + // header("Content-Encoding: gzip"); + // $file = fopen($request.".gz", 'r'); + //} + //else { + $file = fopen($request, 'r'); + //} + fpassthru($file); + fclose($file); +} +else { + die_404(); +} diff --git a/stylesheets/burichan.css b/stylesheets/burichan.css index f1bbd8e6..6b1de235 100644 --- a/stylesheets/burichan.css +++ b/stylesheets/burichan.css @@ -36,7 +36,7 @@ div.banner { font-weight: normal; } -p.intro span.name { +.intro span.name { font-family: serif; font-size: 12px; } diff --git a/stylesheets/caffe.css b/stylesheets/caffe.css index 7e2c5879..7ba7bd1c 100644 --- a/stylesheets/caffe.css +++ b/stylesheets/caffe.css @@ -353,7 +353,7 @@ width: 100%; #attention_bar:hover { background-color: rgba(88, 53, 41, 0.3); } -p.intro a.email span.name { +.intro a.email span.name { color: #8e6152; } a.post_no:hover { @@ -382,7 +382,7 @@ font-size: 9pt; } /* options.js */ -#options_div { +#options_div, #alert_div { background: #a47a6b url('img/caffe_reply.png') repeat center; border: solid 1px #a47a6b; -moz-border-radius: 5px; diff --git a/stylesheets/catalog.css b/stylesheets/catalog.css deleted file mode 100644 index 29ff4cbf..00000000 --- a/stylesheets/catalog.css +++ /dev/null @@ -1,75 +0,0 @@ -img { - float:none!important; - margin: auto; - margin-bottom: 12px; - /*max-height: 150px; - max-width: 200px;*/ - box-shadow: 0 0 4px rgba(0, 0, 0, 0.55); - border: 2px solid rgba(153, 153, 153, 0); -} - -/* -img:hover { - border: 2px solid rgba(153, 153, 153, 0.27); -} -*/ - -div.threads{ - text-align: center; - margin-left: -20px; -} - -div.thread { - display: inline-block; - vertical-align: top; - margin-bottom:25px; - margin-left: 20px; - margin-right: 15px; - text-align:center; - font-weight:normal; - width:205px; - overflow:hidden; - position: relative; - font-size:11px; - padding: 15px; - background: rgba(182, 182, 182, 0.12); - border: 2px solid rgba(111, 111, 111, 0.34); - max-height:300px; -} - -div.thread:hover { - background: #D6DAF0; - border-color: #B7C5D9; -} - -div.grid-size-small { - width: 200px; - max-width: 200px; - max-height: 350px; -} - -div.grid-size-large { - width: 300px; - max-width: 300px; - max-height: 450px; -} - -img.thread-image { - height: auto; - max-width: 100%; -} - -@media (max-width: 420px) { - ul#Grid { - padding-left: 18px; - } - div.thread { - width: auto; - margin-left: 0; - margin-right: 0; - - } - div.threads { - overflow: hidden; - } -} \ No newline at end of file diff --git a/stylesheets/confraria.css b/stylesheets/confraria.css index 8769c6bb..3b60aaa6 100644 --- a/stylesheets/confraria.css +++ b/stylesheets/confraria.css @@ -55,11 +55,11 @@ form table tr th { padding: 0px 5px; } -p.intro span.name { +.intro span.name { color: #C5C8C6; } -p.intro span.subject { +.intro span.subject { color: #CC1105; font-weight: bold; } @@ -90,11 +90,11 @@ div.post.reply.highlighted { background: #4A4C4F; } -p.intro a.email span.name { +.intro a.email span.name { color: rgb(129, 162, 190); } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: rgb(95, 137, 172); } diff --git a/stylesheets/dark.css b/stylesheets/dark.css index e9b6515d..3b7680f5 100644 --- a/stylesheets/dark.css +++ b/stylesheets/dark.css @@ -40,8 +40,7 @@ div.title p { font-size: 10px; } -a:link, a:visited, p.intro a.email span.name -{ +a:link, a:visited, .intro a.email span.name { color: #CCCCCC; text-decoration: none; font-family: sans-serif; @@ -108,25 +107,21 @@ div.post.reply div.body a:link:hover, div.post.reply div.body a:visited:hover { color: #32DD72; } -p.intro span.subject -{ +.intro span.subject { font-size: 12px; font-family: sans-serif; color: #446655; font-weight: 800; } -p.intro span.name -{ +.intro span.name { color: #32DD72; font-weight: 800; } -p.intro a.capcode, p.intro a.nametag -{ +.intro a.capcode, p.intro a.nametag { color: magenta; margin-left: 0; } -p.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name -{ +.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name { color: #32ddaf; } input[type="text"], textarea, select @@ -241,6 +236,7 @@ div.ban h2 font-size: 12pt; border-bottom: 1px solid #555; } + div.ban h2:not(:nth-child(1)) { border-top: 1px solid #555; @@ -251,6 +247,16 @@ table.modlog tr th color: #AAA; } +.desktop-style div.boardlist:not(.bottom) { + text-shadow: black 1px 1px 1px, black -1px -1px 1px, black -1px 1px 1px, black 1px -1px 1px; + background-color: #666666; +} + + +.desktop-style div.boardlist:not(.bottom):hover, .desktop-style div.boardlist:not(.bottom).cb-menu { + background-color: rgba(30%, 30%, 30%, 0.65); +} + div.report { color: #666; @@ -275,9 +281,8 @@ div.report } /* options.js */ -#options_div -{ - background: #333333; +#options_div, #alert_div { + background: #333333; } .options_tab_icon { @@ -288,3 +293,6 @@ div.report color: #FFFFFF; } +#quick-reply table { + background: none repeat scroll 0% 0% #333 !important; +} diff --git a/stylesheets/dark_roach.css b/stylesheets/dark_roach.css index 1831fd91..89e050d4 100644 --- a/stylesheets/dark_roach.css +++ b/stylesheets/dark_roach.css @@ -20,7 +20,7 @@ a, a:visited { text-decoration: none; color: #9999CC; } -a:hover, p.intro a.post_no:hover { +a:hover, .intro a.post_no:hover { color: #996699 } a.post_no { @@ -28,19 +28,19 @@ a.post_no { margin: 0; padding: 0; } -p.intro a.post_no { +.intro a.post_no { color: inherit; } -p.intro a.post_no, p.intro a.email { +.intro a.post_no, p.intro a.email { margin: 0; } -p.intro a.email span.name { +.intro a.email span.name { color: #666699; } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: #663366; } -p.intro label { +.intro label { display: inline; } h2 { @@ -163,7 +163,7 @@ div.post.op { div.post.op hr { border-color: #000000; } -p.intro { +.intro { margin: 0.5em 0; padding: 0; padding-bottom: 0.2em; @@ -172,19 +172,19 @@ input.delete { float: left; margin: 1px 6px 0 0; } -p.intro span.subject { +.intro span.subject { color: #336699; font-weight: bold; } -p.intro span.name { +.intro span.name { color: #336600; font-weight: bold; } -p.intro span.capcode, p.intro a.capcode, p.intro a.nametag { +.intro span.capcode, p.intro a.capcode, p.intro a.nametag { color: #CC0000; margin-left: 0; } -p.intro a { +.intro a { margin-left: 8px; } div.delete { @@ -456,7 +456,7 @@ table.mod.config-editor input[type="text"] { background-color: #333333; opacity: 0.8; } -p.intro.thread-hidden { +.intro.thread-hidden { margin: 0px; padding: 0px; } @@ -471,7 +471,7 @@ input[type="submit"]:hover } /* options.js */ -#options_div { +#options_div, #alert_div { background: #333333; } .options_tab_icon { diff --git a/stylesheets/favela.css b/stylesheets/favela.css index 6c9f6d58..52d24c76 100644 --- a/stylesheets/favela.css +++ b/stylesheets/favela.css @@ -46,7 +46,7 @@ form table tr th { color: #FFF; } -p.intro span.name { +.intro span.name { font-family: serif; } @@ -81,7 +81,7 @@ div[id^="thread_"].highlighted { background: #B5FFDD; } -p.intro a.email span.name { +.intro a.email span.name { color: #345456; } diff --git a/stylesheets/ferus.css b/stylesheets/ferus.css index b6d48415..cdb724c1 100644 --- a/stylesheets/ferus.css +++ b/stylesheets/ferus.css @@ -27,8 +27,8 @@ text-align: center; div.title p { font-size: 13px; } -a:link, a:visited, p.intro a.email span.name { - color: #B332E6; +a:link, a:visited, .intro a.email span.name { + color: #16C816; text-decoration: underline; font-family: monospace; } @@ -66,22 +66,22 @@ div.post.reply div.body a:link, div.post.reply div.body a:visited { div.post.reply div.body a:link:hover, div.post.reply div.body a:visited:hover { color: #00ff00; } -p.intro span.subject { +.intro span.subject { font-size: 12px; font-family: monospace; color: #00ff00; font-weight: 800; } -p.intro span.name { - color: #00ff00; +.intro span.name { + color: #008200; font-weight: 900; } -p.intro a.capcode, p.intro a.nametag { - color: #00ff00; +.intro a.capcode, p.intro a.nametag { + color: magenta; margin-left: 0; } -p.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name { - color: #00ff00; +.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name { + color: #00CC64; font-family: monospace; } input[type="text"], textarea, select { diff --git a/stylesheets/futaba+vichan.css b/stylesheets/futaba+vichan.css index 607cf49c..16dff61b 100644 --- a/stylesheets/futaba+vichan.css +++ b/stylesheets/futaba+vichan.css @@ -15,7 +15,7 @@ div.title p { div.pages { font-size: 13px !important; } -a:link, a:visited, p.intro a.email span.name { +a:link, a:visited, .intro a.email span.name { color: #0000ff; font-size: inherit; text-decoration: inherit; @@ -41,7 +41,7 @@ div.post.reply.highlighted { div.post.reply div.body a { color: navy; } -p.intro span.subject { +.intro span.subject { color: #d00; } form table tr th { @@ -83,25 +83,19 @@ div.boardlist a { table.modlog tr th { background: #EA8; } -div.boardlist { - background-color: rgba(90%,90%,90%,0.2); +.desktop-style div.boardlist:nth-child(1), .desktop-style div.boardlist:nth-child(1):hover { + background-color: #f0e0d6; } div.boardlist .sub { background: none; } -div.boardlist.bottom { - background-color:transparent; -} .desktop-style div.boardlist:nth-child(1) { text-shadow: #fff 1px 1px 1px, #fff -1px -1px 1px; } -.desktop-style div.boardlist:nth-child(1):hover, .desktop-style div.boardlist:nth-child(1).cb-menu { - background-color: rgba(90%, 90%, 90%, 0.55); -} /* options.js */ -#options_div { +#options_div, #alert_div { background: rgb(240, 224, 214); } .options_tab_icon { @@ -116,3 +110,8 @@ div.boardlist.bottom { border-color: #d9bfb7; border-width: 1px 0px 0px 1px; } + +.dropzone { + background-color: white; + border: 1px solid #a9a9a9; +} diff --git a/stylesheets/futaba-light.css b/stylesheets/futaba-light.css index ecc5da83..19166adf 100644 --- a/stylesheets/futaba-light.css +++ b/stylesheets/futaba-light.css @@ -15,7 +15,7 @@ div.title p { div.pages { font-size: 13px !important; } -a:link, a:visited, p.intro a.email span.name { +a:link, a:visited, .intro a.email span.name { color: #A32615; font-size: inherit; text-decoration: inherit; @@ -42,7 +42,7 @@ div.post.reply.highlighted { div.post.reply div.body a { color: rgb(190, 79, 43); } -p.intro span.subject { +.intro span.subject { color: #AA4848; } form table tr th { @@ -98,7 +98,7 @@ table.modlog tr th { } /* options.js */ -#options_div { +#options_div, #alert_div { background: rgb(240, 224, 214); } diff --git a/stylesheets/futaba.css b/stylesheets/futaba.css index c9cefb85..2b4fc1d2 100644 --- a/stylesheets/futaba.css +++ b/stylesheets/futaba.css @@ -10,7 +10,7 @@ div.title h1 { div.title p { font-size: 10px; } -a:link, a:visited, p.intro a.email span.name { +a:link, a:visited, .intro a.email span.name { color: #0000ff; } a:link:hover { @@ -30,7 +30,7 @@ div.post.reply.highlighted { div.post.reply div.body a { color: navy; } -p.intro span.subject { +.intro span.subject { color: #d00; } form table tr th { @@ -86,7 +86,7 @@ table.modlog tr th { } /* options.js */ -#options_div { +#options_div, #alert_div { background: rgb(240, 224, 214); } .options_tab_icon { diff --git a/stylesheets/gentoochan.css b/stylesheets/gentoochan.css index b5075136..ae7ef2f3 100644 --- a/stylesheets/gentoochan.css +++ b/stylesheets/gentoochan.css @@ -2,7 +2,7 @@ body { background: #0E0E0E url(data:image/gif;base64,R0lGODlhGAAMAKEEAOXl5ebm5vDw8PHx8SH+EUNyZWF0ZWQgd2l0aCBHSU1QACwAAAAAGAAMAAACRpQiY6cLa146MyY1EJQKjG81lNGRUPOIkgMJHtquBgIO7xwvpbrpduUSuXq8ntEC0bBEylYitdDAdM1ViaobkgKgZwyDLAAAOw==) repeat 0 0!important; color: #000; } -a:link, a:visited, p.intro a.email span.name { +a:link, a:visited, .intro a.email span.name { -webkit-transition: all ease-in 0.3s; -moz-transition: all ease-in 0.3s; color: rgba(0, 0, 0, 0.6); @@ -33,7 +33,7 @@ div.post.reply.highlighted { div.post.reply p.body a { color: navy; } -p.intro span.subject { +.intro span.subject { color: #000; } form table tr th { diff --git a/stylesheets/jungle.css b/stylesheets/jungle.css index f08aa685..7691a680 100644 --- a/stylesheets/jungle.css +++ b/stylesheets/jungle.css @@ -74,7 +74,7 @@ box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35); div.post.reply div.body a { color: #00E; } -p.intro span.subject { +.intro span.subject { color: #d00; } form table tr th { @@ -129,7 +129,7 @@ table.modlog tr th { background: #EA8; } -p.intro span.name { +.intro span.name { color: maroon; font-weight: 600; } diff --git a/stylesheets/longtable/longtable.css b/stylesheets/longtable/longtable.css new file mode 100644 index 00000000..09d9a0ab --- /dev/null +++ b/stylesheets/longtable/longtable.css @@ -0,0 +1,31 @@ +.longtable { + display: block; + position: relative; + box-sizing: border-box; +} +.longtable > tbody { + display: block; + box-sizing: border-box; +} +.longtable > tbody > tr { + display: block; + box-sizing: border-box; + clear: left; + width: 100%; +} +.longtable > tbody > tr > td { + display: block; + box-sizing: border-box; + float: left; + padding: 0; +} +.longtable > tbody > tr > th { + display: block; + box-sizing: border-box; + float: left; + padding: 0; +} +.longtable > tbody > tr > th.sortable { + cursor: pointer; +} + diff --git a/stylesheets/luna.css b/stylesheets/luna.css index 7439f5ca..e2fd6528 100644 --- a/stylesheets/luna.css +++ b/stylesheets/luna.css @@ -22,7 +22,7 @@ a, a:selected { text-decoration: bold; color: #ffffff; } -a:hover, p.intro a.post_no:hover { +a:hover, .intro a.post_no:hover { color: #ffffff; } a.post_no { @@ -30,19 +30,19 @@ a.post_no { margin: 0; padding: 0; } -p.intro a.post_no { +.intro a.post_no { color: inherit; } -p.intro a.post_no, p.intro a.email { +.intro a.post_no, p.intro a.email { margin: 0; } -p.intro a.email span.name { +.intro a.email span.name { color: #0091ff; } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: #ffffff; } -p.intro label { +.intro label { display: inline; } h2 { @@ -165,7 +165,7 @@ div.post.op { div.post.op hr { border-color: #040934; } -p.intro { +.intro { margin: 0.5em 0; padding: 0; padding-bottom: 0.2em; @@ -174,19 +174,19 @@ input.delete { float: left; margin: 1px 6px 0 0; } -p.intro span.subject { +.intro span.subject { color: #CCCCEE; font-weight: bold; } -p.intro span.name { +.intro span.name { color: #BBBBDD; font-weight: bold; } -p.intro span.capcode, p.intro a.capcode, p.intro a.nametag { +.intro span.capcode, p.intro a.capcode, p.intro a.nametag { color: #CCCCEE; margin-left: 0; } -p.intro a { +.intro a { margin-left: 8px; } div.delete { diff --git a/stylesheets/miku.css b/stylesheets/miku.css index 6ee16aec..fc723406 100644 --- a/stylesheets/miku.css +++ b/stylesheets/miku.css @@ -25,11 +25,11 @@ a.post_no { color: #000033; } -p.intro a.email span.name { +.intro a.email span.name { color: #0093AB; } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: #DD0000; } @@ -49,12 +49,12 @@ div.post.op hr { border-color: #B7C9D5; } -p.intro span.subject { +.intro span.subject { color: #117743; font-weight: 800; } -p.intro span.name { +.intro span.name { color: #117743; font-weight: 800; } diff --git a/stylesheets/mod/ban-list.css b/stylesheets/mod/ban-list.css new file mode 100644 index 00000000..6115b4b9 --- /dev/null +++ b/stylesheets/mod/ban-list.css @@ -0,0 +1,61 @@ +#banlist { + clear: left; +} +#banlist th { + text-align: center; +} +#banlist th, #banlist td { + margin: 2px; + padding: 2px; + overflow: hidden; +} +#banlist td:hover { + overflow: visible; + height: auto !important; + background-color: white; + z-index: 1; + position: relative; + border: 1px solid black; + padding: 1px; +} +.banlist-opts { +} +.banlist-opts .checkboxes { + float: left; + width: 50%; +} +.banlist-opts .checkboxes label { + display: block; + color: black; +} +.banlist-opts .buttons { + float: left; + width: 50%; +} +.banlist-opts .buttons * { + display: inline-block; + width: 49%; + font-size: 18pt; +} + +tr.tblhead { + display: block; + box-sizing: border-box; + clear: left; + width: 100%; +} +tr.tblhead > th { + display: block; + box-sizing: border-box; + float: left; + padding: 0; + color: black; +} +tr.tblhead > th.sortable { + cursor: pointer; +} + + +body { + min-width: 980px; +} diff --git a/stylesheets/nigrachan.css b/stylesheets/nigrachan.css index 6d0a94fa..28ab3eb3 100644 --- a/stylesheets/nigrachan.css +++ b/stylesheets/nigrachan.css @@ -52,7 +52,7 @@ input[type="text"], input[type="password"], textarea, input[type="submit"], inpu border: 1px solid #202020; } -p.intro span.name { +.intro span.name { font-size: 11pt; color: #505050; font-weight: bold; @@ -88,16 +88,16 @@ div.post.reply.highlighted { background: #111111; } -p.intro a.email span.name { +.intro a.email span.name { color: #FFFFFF; } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: #A0A0A0; text-decoration: underline; } -p.intro span.subject { +.intro span.subject { color: #606060; } diff --git a/stylesheets/notsuba.css b/stylesheets/notsuba.css index ef9e1057..8ecb6b21 100644 --- a/stylesheets/notsuba.css +++ b/stylesheets/notsuba.css @@ -20,11 +20,11 @@ a.post_no { color: #000033; } -p.intro a.email span.name { +.intro a.email span.name { color: #608673; } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: #DD0000; } @@ -44,12 +44,12 @@ div.post.op hr { border-color: #608673; } -p.intro span.subject { +.intro span.subject { color: #8a2e2e; font-weight: 800; } -p.intro span.name { +.intro span.name { color: #117743; font-weight: 800; } diff --git a/stylesheets/novo_jungle.css b/stylesheets/novo_jungle.css index 70501d0a..8c313723 100644 --- a/stylesheets/novo_jungle.css +++ b/stylesheets/novo_jungle.css @@ -65,7 +65,7 @@ form[name="postcontrols"] { margin: 20px auto; } -p.intro span.name { +.intro span.name { color: #800000; font-weight: 800; } @@ -104,11 +104,11 @@ div.post.reply.highlighted { background-image: url('img/jungle_td_dark.png');; } -p.intro a.email span.name { +.intro a.email span.name { color: #0000EE; } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: #00990B; } diff --git a/stylesheets/photon.css b/stylesheets/photon.css index 310bd098..a487e4dd 100644 --- a/stylesheets/photon.css +++ b/stylesheets/photon.css @@ -325,3 +325,7 @@ form table tr td div { .recaptchatable .recaptcha_image_cell { padding: 0px !important; } + +.desktop-style div.boardlist:not(.bottom) { + background-color: #DDDDDD; +} diff --git a/stylesheets/piwnichan.css b/stylesheets/piwnichan.css index 2c1ea49a..7780226e 100644 --- a/stylesheets/piwnichan.css +++ b/stylesheets/piwnichan.css @@ -41,7 +41,7 @@ a.email span.name { color: #5A8C99 !important; } -p.intro span.capcode, p.intro a.capcode, p.intro a.nametag { +.intro span.capcode, p.intro a.capcode, p.intro a.nametag { color: #6E0877; } @@ -157,7 +157,7 @@ div.banner, .replymode, .catalogmode { font-weight:800; } -p.intro span.subject { +.intro span.subject { color: #4D2C80; font-weight: bold; } diff --git a/stylesheets/ricechan.css b/stylesheets/ricechan.css index 79b6d145..f01fc9bf 100644 --- a/stylesheets/ricechan.css +++ b/stylesheets/ricechan.css @@ -190,7 +190,7 @@ blockquote { .de-refmap { color: #4C505E !important; } -p.intro a.email span.name { +.intro a.email span.name { text-decoration: underline; } .quote { diff --git a/stylesheets/roach.css b/stylesheets/roach.css index 945559be..99aa6125 100644 --- a/stylesheets/roach.css +++ b/stylesheets/roach.css @@ -256,7 +256,7 @@ border-top: 1px solid #835B36 !important; } /* options.js */ -#options_div { +#options_div, #alert_div { background: white; } diff --git a/stylesheets/szalet.css b/stylesheets/szalet.css index e4deb8ee..77a216a6 100644 --- a/stylesheets/szalet.css +++ b/stylesheets/szalet.css @@ -20,7 +20,7 @@ background-repeat: repeat; background-color: #200000; } -p.intro span.capcode, p.intro a.capcode, p.intro a.nametag { +.intro span.capcode, p.intro a.capcode, p.intro a.nametag { color: #26899C; } @@ -154,7 +154,7 @@ div.banner, .replymode, .catalogmode { font-weight:800; } -p.intro span.subject { +.intro span.subject { color: #771018; font-weight: bold; } diff --git a/stylesheets/terminal2.css b/stylesheets/terminal2.css index 03904a1c..6f827f15 100644 --- a/stylesheets/terminal2.css +++ b/stylesheets/terminal2.css @@ -16,7 +16,7 @@ div.title, h1 { div.title p { font-size: 10px; } -a:link, a:visited, p.intro a.email span.name { +a:link, a:visited, .intro a.email span.name { color: #00FF00; text-decoration: underline; font-family: sans-serif; @@ -62,21 +62,21 @@ div.post.reply div.body a:link, div.post.reply div.body a:visited { div.post.reply div.body a:link:hover, div.post.reply div.body a:visited:hover { color: #00FF00; } -p.intro span.subject { +.intro span.subject { font-size: 12px; font-family: sans-serif; color: #446655; font-weight: 800; } -p.intro span.name { +.intro span.name { color: #00FF00; font-weight: 800; } -p.intro a.capcode, p.intro a.nametag { +.intro a.capcode, p.intro a.nametag { color: #00FF00; margin-left: 0; } -p.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name { +.intro a.email, p.intro a.email span.name, p.intro a.email:hover, p.intro a.email:hover span.name { color: #00FF00; } input[type="text"], textarea, select { diff --git a/stylesheets/testorange.css b/stylesheets/testorange.css index cd2161b6..44ebd697 100644 --- a/stylesheets/testorange.css +++ b/stylesheets/testorange.css @@ -202,7 +202,7 @@ div.boardlist.bottom { background-color: rgba(0%, 0%, 0%, 0.45); } -p.intro span.subject { +.intro span.subject { color:#ee8100; } diff --git a/stylesheets/tooltipster/tooltipster.css b/stylesheets/tooltipster/tooltipster.css deleted file mode 100644 index e5c609cc..00000000 --- a/stylesheets/tooltipster/tooltipster.css +++ /dev/null @@ -1,274 +0,0 @@ -/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */ -.tooltipster-default { - border-radius: 5px; - border: 2px solid #000; - background: #4c4c4c; - color: #fff; -} - -/* Use this next selector to style things like font-size and line-height: */ -.tooltipster-default .tooltipster-content { - font-family: Arial, sans-serif; - font-size: 14px; - line-height: 16px; - padding: 8px 10px; - overflow: hidden; -} - -/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */ -.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border { - /* border-color: ... !important; */ -} - - -/* If you're using the icon option, use this next selector to style them */ -.tooltipster-icon { - cursor: help; - margin-left: 4px; -} - - - - - - - - -/* This is the base styling required to make all Tooltipsters work */ -.tooltipster-base { - padding: 0; - font-size: 0; - line-height: 0; - position: absolute; - left: 0; - top: 0; - z-index: 9999999; - pointer-events: none; - width: auto; - overflow: visible; -} -.tooltipster-base .tooltipster-content { - overflow: hidden; -} - - -/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */ -.tooltipster-arrow { - display: block; - text-align: center; - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - z-index: -1; -} -.tooltipster-arrow span, .tooltipster-arrow-border { - display: block; - width: 0; - height: 0; - position: absolute; -} -.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span { - border-left: 8px solid transparent !important; - border-right: 8px solid transparent !important; - border-top: 8px solid; - bottom: -7px; -} -.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border { - border-left: 9px solid transparent !important; - border-right: 9px solid transparent !important; - border-top: 9px solid; - bottom: -7px; -} - -.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span { - border-left: 8px solid transparent !important; - border-right: 8px solid transparent !important; - border-bottom: 8px solid; - top: -7px; -} -.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border { - border-left: 9px solid transparent !important; - border-right: 9px solid transparent !important; - border-bottom: 9px solid; - top: -7px; -} -.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border { - left: 0; - right: 0; - margin: 0 auto; -} -.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span { - left: 6px; -} -.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border { - left: 5px; -} -.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span { - right: 6px; -} -.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border { - right: 5px; -} -.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border { - border-top: 8px solid transparent !important; - border-bottom: 8px solid transparent !important; - border-left: 8px solid; - top: 50%; - margin-top: -7px; - right: -7px; -} -.tooltipster-arrow-left .tooltipster-arrow-border { - border-top: 9px solid transparent !important; - border-bottom: 9px solid transparent !important; - border-left: 9px solid; - margin-top: -8px; -} -.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border { - border-top: 8px solid transparent !important; - border-bottom: 8px solid transparent !important; - border-right: 8px solid; - top: 50%; - margin-top: -7px; - left: -7px; -} -.tooltipster-arrow-right .tooltipster-arrow-border { - border-top: 9px solid transparent !important; - border-bottom: 9px solid transparent !important; - border-right: 9px solid; - margin-top: -8px; -} - - -/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */ - -.tooltipster-fade { - opacity: 0; - -webkit-transition-property: opacity; - -moz-transition-property: opacity; - -o-transition-property: opacity; - -ms-transition-property: opacity; - transition-property: opacity; -} -.tooltipster-fade-show { - opacity: 1; -} - -.tooltipster-grow { - -webkit-transform: scale(0,0); - -moz-transform: scale(0,0); - -o-transform: scale(0,0); - -ms-transform: scale(0,0); - transform: scale(0,0); - -webkit-transition-property: -webkit-transform; - -moz-transition-property: -moz-transform; - -o-transition-property: -o-transform; - -ms-transition-property: -ms-transform; - transition-property: transform; - -webkit-backface-visibility: hidden; -} -.tooltipster-grow-show { - -webkit-transform: scale(1,1); - -moz-transform: scale(1,1); - -o-transform: scale(1,1); - -ms-transform: scale(1,1); - transform: scale(1,1); - -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); -} - -.tooltipster-swing { - opacity: 0; - -webkit-transform: rotateZ(4deg); - -moz-transform: rotateZ(4deg); - -o-transform: rotateZ(4deg); - -ms-transform: rotateZ(4deg); - transform: rotateZ(4deg); - -webkit-transition-property: -webkit-transform, opacity; - -moz-transition-property: -moz-transform; - -o-transition-property: -o-transform; - -ms-transition-property: -ms-transform; - transition-property: transform; -} -.tooltipster-swing-show { - opacity: 1; - -webkit-transform: rotateZ(0deg); - -moz-transform: rotateZ(0deg); - -o-transform: rotateZ(0deg); - -ms-transform: rotateZ(0deg); - transform: rotateZ(0deg); - -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1); - -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); - -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); - -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); - -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); - transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4); -} - -.tooltipster-fall { - top: 0; - -webkit-transition-property: top; - -moz-transition-property: top; - -o-transition-property: top; - -ms-transition-property: top; - transition-property: top; - -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); -} -.tooltipster-fall-show { -} -.tooltipster-fall.tooltipster-dying { - -webkit-transition-property: all; - -moz-transition-property: all; - -o-transition-property: all; - -ms-transition-property: all; - transition-property: all; - top: 0px !important; - opacity: 0; -} - -.tooltipster-slide { - left: -40px; - -webkit-transition-property: left; - -moz-transition-property: left; - -o-transition-property: left; - -ms-transition-property: left; - transition-property: left; - -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1); - -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); - transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15); -} -.tooltipster-slide.tooltipster-slide-show { -} -.tooltipster-slide.tooltipster-dying { - -webkit-transition-property: all; - -moz-transition-property: all; - -o-transition-property: all; - -ms-transition-property: all; - transition-property: all; - left: 0px !important; - opacity: 0; -} - - -/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */ -.tooltipster-content-changing { - opacity: 0.5; - -webkit-transform: scale(1.1, 1.1); - -moz-transform: scale(1.1, 1.1); - -o-transform: scale(1.1, 1.1); - -ms-transform: scale(1.1, 1.1); - transform: scale(1.1, 1.1); -} diff --git a/stylesheets/v8ch.css b/stylesheets/v8ch.css new file mode 100644 index 00000000..eafed531 --- /dev/null +++ b/stylesheets/v8ch.css @@ -0,0 +1,191 @@ +@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro); + +body{ + background: #eee !important; + font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif !important; +} + +a{ + text-decoration: none; +} + +.boardlist{ + width: 100% !important; + position: fixed !important; + z-index: 99999 !important; + top: 0 !important; + left: 0 !important; + color: #222 !important; + background: #fff !important; + padding: 1em !important; + box-sizing: border-box !important; + margin-top: 0 !important; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important; +} + +img.banner, +img.board_image{ + border: none !important; +} + +.board_image, +.board_image + header{ + margin-top: 3.75em !important; + margin-bottom: 1em !important; + float: left !important; +} + +.board_image + header{ + margin-left: 1em !important; +} + +header, +header h1, +header .subtitle{ + text-align: left !important; +} + +.board_image + header + .banner{ + width: 100% !important; + float: left !important; + margin-top: 0 !important; + margin-left: 0 !important; + padding: 0.5em 0 !important; + background-color: #666 !important; +} + +form[name=post]{ + box-sizing: border-box !important; + position: fixed !important; + bottom: 0 !important; + right: 0 !important; + background: #fff !important; + margin-bottom: 0 !important; + padding: 1em !important; + box-shadow: 0 0 5px rgba(0, 0, 0, 0.3) !important; +} + +form[name=post] input[type="text"], +form[name=post] textarea{ + width: 100% !important; + padding: 0.5em !important; + box-sizing: border-box !important; +} + +form table tr th{ + color: #fff !important; + background: #222 !important; +} + +#expand-all-images, +#shrink-all-images, +#treeview{ + right: 1em !important; + position: absolute !important; +} + +#expand-all-images{ + margin-top: 4em !important; +} + +#treeview{ + margin-top: 5em !important; +} + +#shrink-all-images{ + margin-top: 6em !important; +} + +#expand-all-images + hr, +#shrink-all-images + hr{ + opacity: 0 !important; + margin: 0 !important; +} + +#treeview + hr{ + opacity: 0 !important; + clear: both !important; +} + +#options_handler{ + margin-top: 3em !important; +} + +[id^=thread]{ + background: #f8f8f8 !important; + margin-bottom: 1em !important; + padding: 1em 1em 0 1em !important; + border: none !important; + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important; +} + +[id^=thread] hr{ + display: none !important; +} + +[id^=thread] div.post.reply { + margin: 0.5em 1em !important; + padding: 0.5em !important; + color: #222 !important; + background: #fff !important; + border: none !important; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important; +} + +[id^=thread] div.post.reply.highlighted { + background: #fec !important; +} + +.intro.thread-hidden{ + padding-bottom: 1em !important; +} + +#vechan-reply, +#update_thread{ + float: right; + margin-right: 0.25em !important; + cursor: pointer !important; +} + +#update_thread{ + padding-left: 0 !important; +} + +#update_secs{ + color: #900 !important; +} + +.theme-catalog header{ + margin-top: 4em !important; +} + +.theme-catalog div.threads{ + text-align: left !important; +} + +.theme-catalog div.thread{ + color: #222 !important; + word-break: break-all !important; + background: #fff !important; + border: none !important; + box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important; +} + +.boardlist.bottom, +.sub[data-description='1'], +.sub[data-description='2'], +.sub[data-description='3'], +#quick-reply{ + display: none !important; +} + +#favorite-star{ + text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3) !important; +} + +pre.prettyprint.prettyprinted{ + display: block !important; + overflow-x: scroll !important; +} + +/* If you want to make a redistributable style, be sure to have a Yotsuba B theme selected. */ diff --git a/stylesheets/wasabi.css b/stylesheets/wasabi.css index f898d731..87a81bdd 100644 --- a/stylesheets/wasabi.css +++ b/stylesheets/wasabi.css @@ -27,16 +27,16 @@ a.post_no { margin: 0; padding: 0; } -p.intro a.post_no, p.intro a.email { +.intro a.post_no, p.intro a.email { margin: 0; } -p.intro a.email span.name { +.intro a.email span.name { color: #34345C; } -p.intro a.email:hover span.name { +.intro a.email:hover span.name { color: #ff0000; } -p.intro label { +.intro label { display: inline; } h2 { @@ -155,7 +155,7 @@ div.post.op { div.post.op hr { border-color: #D9BFB7; } -p.intro { +.intro { margin: 0.5em 0; padding: 0; padding-bottom: 0.2em; @@ -164,19 +164,19 @@ input.delete { float: left; margin: 1px 6px 0 0; } -p.intro span.subject { +.intro span.subject { color: #0F0C5D; font-weight: bold; } -p.intro span.name { +.intro span.name { color: #117743; font-weight: bold; } -p.intro a.capcode, p.intro a.nametag { +.intro a.capcode, p.intro a.nametag { color: #F00000; margin-left: 0; } -p.intro a { +.intro a { margin-left: 8px; } div.delete { diff --git a/stylesheets/yotsuba.css b/stylesheets/yotsuba.css index ef3389f3..4ec557b9 100644 --- a/stylesheets/yotsuba.css +++ b/stylesheets/yotsuba.css @@ -2,7 +2,7 @@ body { background: #ffe url('img/fade-yotsuba.png') repeat-x 50% 0%; color: #800000; } -a:link, a:visited, p.intro a.email span.name { +a:link, a:visited, .intro a.email span.name { color: #0000ff; } a:link:hover { @@ -22,7 +22,7 @@ div.post.reply.highlighted { div.post.reply div.body a { color: navy; } -p.intro span.subject { +.intro span.subject { color: #d00; } form table tr th { @@ -71,6 +71,10 @@ table.modlog tr th { } /* options.js */ -#options_div { +#options_div, #alert_div { background: #f0e0d6; } + +.desktop-style div.boardlist:nth-child(1) { + background-color: #F0E0D6; +} diff --git a/templates/fileboard.html b/templates/fileboard.html new file mode 100644 index 00000000..a970cecb --- /dev/null +++ b/templates/fileboard.html @@ -0,0 +1,15 @@ + + + + {{ body }} +
  + {% trans %}No.{% endtrans %} + {% trans %}Name{% endtrans %} + {% trans %}File{% endtrans %} + {% trans %}Tag{% endtrans %} + {% trans %}Subject{% endtrans %} + {% trans %}Size{% endtrans %} + {% trans %}Date{% endtrans %} + {% trans %}Replies{% endtrans %} +   +
diff --git a/templates/generic_page.html b/templates/generic_page.html index 0fe1f9c5..965cbc2c 100644 --- a/templates/generic_page.html +++ b/templates/generic_page.html @@ -39,7 +39,7 @@

- Tinyboard + vichan {{ config.version }} -
Tinyboard Copyright © 2010-2014 Tinyboard Development Group -
vichan Copyright © 2012-2014 vichan-devel

+
vichan Copyright © 2012-2015 vichan-devel

{% for footer in config.footer %}

{{ footer }}

{% endfor %} - + diff --git a/templates/main.js b/templates/main.js index 6ad999ba..3e44ed2d 100755 --- a/templates/main.js +++ b/templates/main.js @@ -22,6 +22,76 @@ function fmt(s,a) { return s.replace(/\{([0-9]+)\}/g, function(x) { return a[x[1]]; }); } +function until($timestamp) { + var $difference = $timestamp - Date.now()/1000|0, $num; + switch(true){ + case ($difference < 60): + return "" + $difference + ' ' + _('second(s)'); + case ($difference < 3600): //60*60 = 3600 + return "" + ($num = Math.round($difference/(60))) + ' ' + _('minute(s)'); + case ($difference < 86400): //60*60*24 = 86400 + return "" + ($num = Math.round($difference/(3600))) + ' ' + _('hour(s)'); + case ($difference < 604800): //60*60*24*7 = 604800 + return "" + ($num = Math.round($difference/(86400))) + ' ' + _('day(s)'); + case ($difference < 31536000): //60*60*24*365 = 31536000 + return "" + ($num = Math.round($difference/(604800))) + ' ' + _('week(s)'); + default: + return "" + ($num = Math.round($difference/(31536000))) + ' ' + _('year(s)'); + } +} + +function ago($timestamp) { + var $difference = (Date.now()/1000|0) - $timestamp, $num; + switch(true){ + case ($difference < 60) : + return "" + $difference + ' ' + _('second(s)'); + case ($difference < 3600): //60*60 = 3600 + return "" + ($num = Math.round($difference/(60))) + ' ' + _('minute(s)'); + case ($difference < 86400): //60*60*24 = 86400 + return "" + ($num = Math.round($difference/(3600))) + ' ' + _('hour(s)'); + case ($difference < 604800): //60*60*24*7 = 604800 + return "" + ($num = Math.round($difference/(86400))) + ' ' + _('day(s)'); + case ($difference < 31536000): //60*60*24*365 = 31536000 + return "" + ($num = Math.round($difference/(604800))) + ' ' + _('week(s)'); + default: + return "" + ($num = Math.round($difference/(31536000))) + ' ' + _('year(s)'); + } +} + +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') + }; + + +function alert(a) { + var handler, div; + var close = function() { + handler.fadeOut(400, function() { handler.remove(); }); + return false; + }; + + handler = $("
").hide().appendTo('body'); + + $("
").click(close).appendTo(handler); + + div = $("
").appendTo(handler); + $("
") + .click(close).appendTo(div); + + $("
").html(a).appendTo(div); + + $("").click(close).appendTo(div); + + handler.fadeIn(400); +} + var saved = {}; @@ -94,6 +164,7 @@ function changeStyle(styleName, link) { {% endraw %} {% if config.stylesheets_board %} {# This is such an unacceptable mess. There needs to be an easier way. #} + {# Needs fix for slugify #} var matches = document.URL.match(/\/(\w+)\/($|{{ config.dir.res|replace({'/': '\\/'}) }}{{ config.file_page|replace({'%d': '\\d+', '.': '\\.'}) }}|{{ config.file_index|replace({'.': '\\.'}) }}|{{ config.file_page|replace({'%d': '\\d+', '.': '\\.'}) }})/); {% raw %} if (matches) { @@ -172,6 +243,7 @@ function highlightReply(id) { var post = document.getElementById('reply_'+id); if (post) post.className += ' highlighted'; + window.location.hash = id; } return true; } @@ -200,7 +272,7 @@ function dopost(form) { saved[document.location] = form.elements['body'].value; sessionStorage.body = JSON.stringify(saved); - return form.elements['body'].value != "" || form.elements['file'].value != "" || (form.elements.file_url && form.elements['file_url'].value != ""); + return form.elements['body'].value != "" || (form.elements['file'] && form.elements['file'].value != "") || (form.elements.file_url && form.elements['file_url'].value != ""); } function citeReply(id, with_link) { @@ -225,6 +297,15 @@ function citeReply(id, with_link) { textarea.value += '>>' + id + '\n'; } if (typeof $ != 'undefined') { + var select = document.getSelection().toString(); + if (select) { + var body = $('#reply_' + id + ', #op_' + id).find('div.body'); // TODO: support for OPs + var index = body.text().indexOf(select.replace('\n', '')); // for some reason this only works like this + if (index > -1) { + textarea.value += '>' + select + '\n'; + } + } + $(window).trigger('cite', [id, with_link]); $(textarea).change(); } diff --git a/templates/mod/ban_list.html b/templates/mod/ban_list.html index 97c02029..0c67f269 100644 --- a/templates/mod/ban_list.html +++ b/templates/mod/ban_list.html @@ -1,104 +1,41 @@ -{% if bans|count == 0 %} -

({% trans 'There are no active bans.' %})

-{% else %} -
- - - - - - - - - - - - - {% for ban in bans %} - - - - - - - - - - - {% endfor %} + + + + + + + + + + + {% if token %} + + {% endif %} +
+
+ {% if mod and mod.boards[0] != '*' %} + + {% endif %} + +
+
+ + {% if mod %} + + {% endif %} +
+ +
+
+ +
{% trans 'IP address/mask' %}{% trans 'Reason' %}{% trans 'Board' %}{% trans 'Set' %}{% trans 'Duration' %}{% trans 'Expires' %}{% trans 'Seen' %}{% trans 'Staff' %}
- - {% if ban.single_addr %} - {{ ban.mask }} - {% else %} - {{ ban.mask }} - {% endif %} - - {% if ban.reason %} - {{ ban.reason }} - {% else %} - - - {% endif %} - - {% if ban.board %} - {{ config.board_abbreviation|sprintf(ban.board) }} - {% else %} - {% trans 'all boards' %} - {% endif %} - - - {{ ban.created|ago }} ago - - - {% if ban.expires == 0 %} - - - {% else %} - {{ (ban.expires - ban.created + time()) | until }} - {% endif %} - - {% if ban.expires == 0 %} - {% trans 'never' %} - {% else %} - {{ ban.expires|date(config.post_date) }} - {% if ban.expires > time() %} - (in {{ ban.expires|until }}) - {% endif %} - {% endif %} - - {% if ban.seen %} - {% trans 'Yes' %} - {% else %} - {% trans 'No' %} - {% endif %} - - {% if ban.username %} - {% if mod|hasPermission(config.mod.view_banstaff) %} - {{ ban.username|e }} - {% else %} - {% if mod|hasPermission(config.mod.view_banquestionmark) %} - ? - {% else %} - - {% endif %} - {% endif %} - {% elseif ban.creator == -1 %} - system - {% else %} - {% trans 'deleted?' %} - {% endif %} -
+ + -

- -

+{% if token_json %} + +{% else %} + {% endif %} - -{% if count > bans|count %} -

- {% for i in range(0, (count - 1) / config.mod.modlog_page) %} - [{{ i + 1 }}] - {% endfor %} -

-{% endif %} - diff --git a/templates/mod/dashboard.html b/templates/mod/dashboard.html index 2c370a11..7e25555b 100644 --- a/templates/mod/dashboard.html +++ b/templates/mod/dashboard.html @@ -155,9 +155,9 @@ Update
  • - A newer version of Tinyboard + A newer version of vichan (v{{ newer_release.massive }}.{{ newer_release.major }}.{{ newer_release.minor }}) is available! - See http://tinyboard.org/ for upgrade instructions. + See https://engine.vichan.net/ for upgrade instructions.
diff --git a/templates/mod/debug/recent_posts.html b/templates/mod/debug/recent_posts.html index e4eb4f3a..ce4cffc4 100644 --- a/templates/mod/debug/recent_posts.html +++ b/templates/mod/debug/recent_posts.html @@ -63,7 +63,7 @@ {% else %} {% set thread = post.id %} {% endif %} - + {{ post.id }} diff --git a/templates/mod/search_results.html b/templates/mod/search_results.html index 0d3c2a10..186ee5db 100644 --- a/templates/mod/search_results.html +++ b/templates/mod/search_results.html @@ -195,7 +195,7 @@ {% else %} {% set thread = post.id %} {% endif %} - + {{ post.id }} @@ -265,4 +265,4 @@ [{{ i + 1 }}] {% endfor %}

-{% endif %} \ No newline at end of file +{% endif %} diff --git a/templates/page.html b/templates/page.html index eb2501e1..cb35d76a 100644 --- a/templates/page.html +++ b/templates/page.html @@ -25,7 +25,7 @@

- Tinyboard + vichan {{ config.version }} -
Tinyboard Copyright © 2010-2014 Tinyboard Development Group -
vichan Copyright © 2012-2014 vichan-devel

+
vichan Copyright © 2012-2015 vichan-devel

diff --git a/templates/post/image_identification.html b/templates/post/image_identification.html index eaef2259..ff25ff95 100644 --- a/templates/post/image_identification.html +++ b/templates/post/image_identification.html @@ -8,7 +8,7 @@ Exif {% endif %} {% if config.image_identification_google %} - Google + Google {% endif %} {% if config.image_identification_iqdb %} iqdb diff --git a/templates/post/name.html b/templates/post/name.html index 009b234d..13c676c7 100644 --- a/templates/post/name.html +++ b/templates/post/name.html @@ -1,5 +1,5 @@ {% set capcode = post.capcode|capcode %} -{% if post.email|length > 0 %} +{% if post.email|length > 0 and (config.hide_sage!=true or post.email!='sage') %} {# start email #}
{% endif %} {% include 'post/fileinfo.html' %} -
1%}style='clear:both'{%endif%}>

+

1%}style='clear:both'{%endif%}>

{% include 'post/poster_id.html' %}  - No. - {{ post.id }} + No. + {{ post.id }} {% if post.sticky %} {% if config.font_awesome %} @@ -39,14 +39,14 @@ {% endif %} {% endif %} {% if index %} - [{% trans %}Reply{% endtrans %}] + [{% trans %}Reply{% endtrans %}] {% endif %} {% if isnoko50 %} - [{% trans %}View All{% endtrans %}] + [{% trans %}View All{% endtrans %}] {% endif %} {% if hasnoko50 and not isnoko50 %} {% set lastcount = config.noko50_count %} - [{% trans %}Last 1 Post{% plural lastcount %}Last {{ count }} Posts{% endtrans %}] + [{% trans %}Last 1 Post{% plural lastcount %}Last {{ count }} Posts{% endtrans %}] {% endif %} {% include 'post/post_controls.html' %}

diff --git a/templates/post_thread_fileboard.html b/templates/post_thread_fileboard.html new file mode 100644 index 00000000..1a11ff79 --- /dev/null +++ b/templates/post_thread_fileboard.html @@ -0,0 +1,42 @@ +{% filter remove_whitespace %} +{# tabs and new lines will be ignored #} + +{# we are intentionally breaking the thread_ID convention: the jses need to handle this case differently #} + + + +{{ post.id }} +{% include 'post/name.html' %} + {% include 'post/flag.html' %} +[{{ post.files[0].filename|e|bidi_cleanup }}] +{% if post.modifiers['tag'] %}[{{ post.modifiers['tag']|e }}]{% endif %} +{% include 'post/subject.html' %} + {% if post.sticky %} + {% if config.font_awesome %} + + {% else %} + Sticky + {% endif %} + {% endif %} + {% if post.locked %} + {% if config.font_awesome %} + + {% else %} + Locked + {% endif %} + {% endif %} + {% if post.bumplocked and (config.mod.view_bumplock < 0 or (post.mod and post.mod|hasPermission(config.mod.view_bumplock, board.uri))) %} + {% if config.font_awesome %} + + {% else %} + Bumplocked + {% endif %} + {% endif %} +{{ post.files[0].size|filesize }} +{% include 'post/time.html' %} +{{ post.omitted }} +{% include 'post/post_controls.html' %} + [{% trans %}Reply{% endtrans %}] + + +{% endfilter %} diff --git a/templates/posts.sql b/templates/posts.sql index 9a47c6ad..6b2249ef 100755 --- a/templates/posts.sql +++ b/templates/posts.sql @@ -19,6 +19,7 @@ CREATE TABLE IF NOT EXISTS ``posts_{{ board }}`` ( `locked` int(1) NOT NULL, `sage` int(1) NOT NULL, `embed` text, + `slug` varchar(256) DEFAULT NULL, UNIQUE KEY `id` (`id`), KEY `thread_id` (`thread`,`id`), KEY `filehash` (`filehash`(40)), diff --git a/templates/themes/basic/index.html b/templates/themes/basic/index.html index 7bccdf4c..3e83f919 100644 --- a/templates/themes/basic/index.html +++ b/templates/themes/basic/index.html @@ -44,7 +44,7 @@

- Tinyboard + vichan {{ config.version }} -
Tinyboard Copyright © 2010-2014 Tinyboard Development Group -
vichan Copyright © 2012-2014 vichan-devel

+
vichan Copyright © 2012-2015 vichan-devel

diff --git a/templates/themes/catalog/catalog.html b/templates/themes/catalog/catalog.html index 12b3cd98..92969b00 100644 --- a/templates/themes/catalog/catalog.html +++ b/templates/themes/catalog/catalog.html @@ -50,45 +50,53 @@ data-bump="{{ post.bump }}" data-time="{{ post.time }}" > -
- - {% if post.youtube %} - - -
- R: {{ post.reply_count }} / I: {{ post.image_count }} - {% if post.subject %} -

- - {{ post.subject|e }} - -

- {% else %} -
- {% endif %} - - {{ post.body }} -
-
- - {% endfor %} - -
+
+ + {% if post.youtube %} + + +
+ R: {{ post.reply_count }} / I: {{ post.image_count }} + {% if post.subject %} +

+ + {{ post.subject|e }} + +

+ {% else %} +
+ {% endif %} + {{ post.body }} +
+
+ + {% endfor %} + +
+

- Tinyboard + vichan {{ config.version }} - -
Tinyboard Copyright © 2010-2014 Tinyboard Development Group -
vichan Copyright © 2012-2014 vichan-devel

+
Tinyboard Copyright © 2010-2014 Tinyboard Development Group +
vichan Copyright © 2012-2015 vichan-devel

- + + + {% endraw %} {% endfilter %} diff --git a/templates/themes/catalog/theme.php b/templates/themes/catalog/theme.php index 357870e4..34b28e48 100644 --- a/templates/themes/catalog/theme.php +++ b/templates/themes/catalog/theme.php @@ -16,11 +16,22 @@ if ($action == 'all') { foreach ($boards as $board) { $b = new Catalog(); - $b->build($settings, $board); + if ($config['smart_build']) { + file_unlink($config['dir']['home'] . $board . '/catalog.html'); + } + else { + $b->build($settings, $board); + } } } elseif ($action == 'post-thread' || ($settings['update_on_posts'] && $action == 'post') || ($settings['update_on_posts'] && $action == 'post-delete') && in_array($board, $boards)) { $b = new Catalog(); - $b->build($settings, $board); + + if ($config['smart_build']) { + file_unlink($config['dir']['home'] . $board . '/catalog.html'); + } + else { + $b->build($settings, $board); + } } } @@ -28,8 +39,12 @@ class Catalog { public function build($settings, $board_name) { global $config, $board; - - openBoard($board_name); + + if ($board['uri'] != $board_name) { + if (!openBoard($board_name)) { + error(sprintf(_("Board %s doesn't exist"), $board_name)); + } + } $recent_images = array(); $recent_posts = array(); @@ -42,35 +57,37 @@ $board_name, $board_name, $board_name, $board_name, $board_name)) or error(db_error()); while ($post = $query->fetch(PDO::FETCH_ASSOC)) { - $post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], ($post['thread'] ? $post['thread'] : $post['id'])); + $post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . link_for($post); $post['board_name'] = $board['name']; if ($post['embed'] && preg_match('/^https?:\/\/(\w+\.)?(?:youtube\.com\/watch\?v=|youtu\.be\/)([a-zA-Z0-9\-_]{10,11})(&.+)?$/i', $post['embed'], $matches)) { $post['youtube'] = $matches[2]; } - if (isset($post['files'])) { + if (isset($post['files']) && $post['files']) { $files = json_decode($post['files']); - if ($files[0]->file == 'deleted') { - if (count($files) > 1) { - foreach ($files as $file) { - if (($file == $files[0]) || ($file->file == 'deleted')) continue; - $post['file'] = $config['uri_thumb'] . $file->thumb; - } + if ($files[0]) { + if ($files[0]->file == 'deleted') { + if (count($files) > 1) { + foreach ($files as $file) { + if (($file == $files[0]) || ($file->file == 'deleted')) continue; + $post['file'] = $config['uri_thumb'] . $file->thumb; + } - if (empty($post['file'])) $post['file'] = $config['image_deleted']; + if (empty($post['file'])) $post['file'] = $config['image_deleted']; + } + else { + $post['file'] = $config['image_deleted']; + } + } + else if($files[0]->thumb == 'spoiler') { + $post['file'] = '/' . $config['spoiler_image']; } else { - $post['file'] = $config['image_deleted']; + $post['file'] = $config['uri_thumb'] . $files[0]->thumb; } } - else if($files[0]->thumb == 'spoiler') { - $post['file'] = '/' . $config['spoiler_image']; - } - else { - $post['file'] = $config['uri_thumb'] . $files[0]->thumb; - } } if (empty($post['image_count'])) $post['image_count'] = 0; diff --git a/templates/themes/categories/news.html b/templates/themes/categories/news.html index e75f9dea..95b330b6 100644 --- a/templates/themes/categories/news.html +++ b/templates/themes/categories/news.html @@ -35,7 +35,7 @@

- Tinyboard + vichan {{ config.version }} -
Tinyboard Copyright © 2010-2014 Tinyboard Development Group -
vichan Copyright © 2012-2014 vichan-devel

+
vichan Copyright © 2012-2015 vichan-devel

diff --git a/templates/themes/frameset/news.html b/templates/themes/frameset/news.html index 17290305..9f779b74 100644 --- a/templates/themes/frameset/news.html +++ b/templates/themes/frameset/news.html @@ -34,7 +34,7 @@

- Tinyboard + vichan {{ config.version }} -
Tinyboard Copyright © 2010-2014 Tinyboard Development Group -
vichan Copyright © 2012-2014 vichan-devel

+
vichan Copyright © 2012-2015 vichan-devel

diff --git a/templates/themes/public_banlist/info.php b/templates/themes/public_banlist/info.php new file mode 100644 index 00000000..006ac38e --- /dev/null +++ b/templates/themes/public_banlist/info.php @@ -0,0 +1,33 @@ + 'JSON feed file', + 'name' => 'file_json', + 'type' => 'text', + 'default' => 'bans.json', + 'comment' => '(eg. "bans.json")' + ); + + $theme['config'][] = Array( + 'title' => 'Main HTML file', + 'name' => 'file_bans', + 'type' => 'text', + 'default' => 'bans.html', + 'comment' => '(eg. "bans.html")' + ); + + // Unique function name for building everything + $theme['build_function'] = 'pbanlist_build'; +?> diff --git a/templates/themes/public_banlist/theme.php b/templates/themes/public_banlist/theme.php new file mode 100644 index 00000000..f2b65839 --- /dev/null +++ b/templates/themes/public_banlist/theme.php @@ -0,0 +1,56 @@ + $config, + 'mod' => false, + 'hide_dashboard_link' => true, + 'title' => _("Ban list"), + 'subtitle' => "", + 'nojavascript' => true, + 'body' => Element('mod/ban_list.html', array( + 'mod' => false, + 'boards' => "[]", + 'token' => false, + 'token_json' => false, + 'uri_json' => $config['dir']['home'] . $settings['file_json'], + )) + )); + } + }; + +?> diff --git a/templates/themes/recent/recent.html b/templates/themes/recent/recent.html index 03fe9ecb..e1743ad8 100644 --- a/templates/themes/recent/recent.html +++ b/templates/themes/recent/recent.html @@ -61,7 +61,7 @@

- Tinyboard + vichan {{ config.version }} -
Tinyboard Copyright © 2010-2014 Tinyboard Development Group -
vichan Copyright © 2012-2014 vichan-devel

+
vichan Copyright © 2012-2015 vichan-devel

diff --git a/templates/themes/recent/theme.php b/templates/themes/recent/theme.php index ad6f99e4..f44e2529 100644 --- a/templates/themes/recent/theme.php +++ b/templates/themes/recent/theme.php @@ -24,8 +24,14 @@ $this->excluded = explode(' ', $settings['exclude']); - if ($action == 'all' || $action == 'post' || $action == 'post-thread' || $action == 'post-delete') - file_write($config['dir']['home'] . $settings['html'], $this->homepage($settings)); + if ($action == 'all' || $action == 'post' || $action == 'post-thread' || $action == 'post-delete') { + if ($config['smart_build']) { + file_unlink($config['dir']['home'] . $settings['html']); + } + else { + file_write($config['dir']['home'] . $settings['html'], $this->homepage($settings)); + } + } } // Build news page @@ -62,7 +68,7 @@ // board settings won't be available in the template file, so generate links now $post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] - . sprintf($config['file_page'], ($post['thread'] ? $post['thread'] : $post['id'])) . '#' . $post['id']; + . link_for($post) . '#' . $post['id']; if ($files) { if ($files[0]->thumb == 'spoiler') { @@ -92,7 +98,7 @@ while ($post = $query->fetch(PDO::FETCH_ASSOC)) { openBoard($post['board']); - $post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . sprintf($config['file_page'], ($post['thread'] ? $post['thread'] : $post['id'])) . '#' . $post['id']; + $post['link'] = $config['root'] . $board['dir'] . $config['dir']['res'] . link_for($post) . '#' . $post['id']; if ($post['body'] != "") $post['snippet'] = pm_snippet($post['body'], 30); else @@ -124,15 +130,21 @@ $query = query($query) or error(db_error()); $stats['unique_posters'] = number_format($query->fetchColumn()); - /*$query = 'SELECT SUM(`filesize`) FROM ('; + // Active content + $query = 'SELECT DISTINCT(`files`) FROM ('; foreach ($boards as &$_board) { if (in_array($_board['uri'], $this->excluded)) continue; - $query .= sprintf("SELECT `filesize` FROM ``posts_%s`` UNION ALL ", $_board['uri']); + $query .= sprintf("SELECT `files` FROM ``posts_%s`` UNION ALL ", $_board['uri']); } - $query = preg_replace('/UNION ALL $/', ') AS `posts_all`', $query); + $query = preg_replace('/UNION ALL $/', ' WHERE `num_files` > 0) AS `posts_all`', $query); $query = query($query) or error(db_error()); - $stats['active_content'] = $query->fetchColumn();*/ + $files = $query->fetchAll(); + $stats['active_content'] = 0; + foreach ($files as &$file) { + preg_match_all('/"size":([0-9]*)/', $file[0], $matches); + $stats['active_content'] += array_sum($matches[1]); + } return Element('themes/recent/recent.html', Array( 'settings' => $settings, diff --git a/templates/themes/sitemap/sitemap.xml b/templates/themes/sitemap/sitemap.xml index 733da607..95dfdd26 100644 --- a/templates/themes/sitemap/sitemap.xml +++ b/templates/themes/sitemap/sitemap.xml @@ -9,11 +9,11 @@ {% for board, thread_list in threads %} {% for thread in thread_list %} - {{ settings.url ~ (config.board_path | format(board)) ~ config.dir.res ~ (config.file_page | format(thread.thread_id)) }} + {{ settings.url ~ (config.board_path | format(board)) ~ config.dir.res ~ link_for(thread) }} {{ thread.lastmod | date('%Y-%m-%dT%H:%M:%S') }}{{ timezone() }} {{ settings.changefreq }} {% endfor %} {% endfor %} -{% endfilter %} \ No newline at end of file +{% endfilter %} diff --git a/templates/themes/sitemap/theme.php b/templates/themes/sitemap/theme.php index 3e048dd5..52779d53 100644 --- a/templates/themes/sitemap/theme.php +++ b/templates/themes/sitemap/theme.php @@ -10,30 +10,37 @@ // - boards (board list changed) // - post (a post has been made) // - thread (a thread has been made) + + if ($action != 'all') { + if ($action != 'post-thread' && $action != 'post-delete') + return; - if ($action != 'post-thread' && $action != 'post-delete') - return; - - if (isset($settings['regen_time']) && $settings['regen_time'] > 0) { - if ($last_gen = @filemtime($settings['path'])) { - if (time() - $last_gen < (int)$settings['regen_time']) - return; // Too soon + if (isset($settings['regen_time']) && $settings['regen_time'] > 0) { + if ($last_gen = @filemtime($settings['path'])) { + if (time() - $last_gen < (int)$settings['regen_time']) + return; // Too soon + } } } + + if ($config['smart_build']) { + file_unlink($settings['path']); + } + else { + $boards = explode(' ', $settings['boards']); - $boards = explode(' ', $settings['boards']); - - $threads = array(); + $threads = array(); - foreach ($boards as $board) { - $query = query(sprintf("SELECT `id` AS `thread_id`, (SELECT `time` FROM ``posts_%s`` WHERE `thread` = `thread_id` OR `id` = `thread_id` ORDER BY `time` DESC LIMIT 1) AS `lastmod` FROM ``posts_%s`` WHERE `thread` IS NULL", $board, $board)) or error(db_error()); - $threads[$board] = $query->fetchAll(PDO::FETCH_ASSOC); - } + foreach ($boards as $board) { + $query = query(sprintf("SELECT `id`, `id` AS `thread_id`, `slug`, (SELECT `time` FROM ``posts_%s`` WHERE `thread` = `thread_id` OR `id` = `thread_id` ORDER BY `time` DESC LIMIT 1) AS `lastmod` FROM ``posts_%s`` WHERE `thread` IS NULL", $board, $board)) or error(db_error()); + $threads[$board] = $query->fetchAll(PDO::FETCH_ASSOC); + } - file_write($settings['path'], Element('themes/sitemap/sitemap.xml', Array( - 'settings' => $settings, - 'config' => $config, - 'threads' => $threads, - 'boards' => $boards, - ))); + file_write($settings['path'], Element('themes/sitemap/sitemap.xml', Array( + 'settings' => $settings, + 'config' => $config, + 'threads' => $threads, + 'boards' => $boards, + ))); + } } diff --git a/templates/themes/ukko/info.php b/templates/themes/ukko/info.php index 45a687fc..9a0a53e6 100644 --- a/templates/themes/ukko/info.php +++ b/templates/themes/ukko/info.php @@ -49,6 +49,7 @@ function ukko_install($settings) { if (!file_exists($settings['uri'])) @mkdir($settings['uri'], 0777) or error("Couldn't create " . $settings['uri'] . ". Check permissions.", true); + file_write($settings['uri'] . '/ukko.js', Element('themes/ukko/ukko.js', array())); } } diff --git a/templates/themes/ukko/theme.php b/templates/themes/ukko/theme.php index b2624ed7..d6fc303c 100644 --- a/templates/themes/ukko/theme.php +++ b/templates/themes/ukko/theme.php @@ -2,11 +2,21 @@ require 'info.php'; function ukko_build($action, $settings) { + global $config; + $ukko = new ukko(); $ukko->settings = $settings; - - file_write($settings['uri'] . '/index.html', $ukko->build()); - file_write($settings['uri'] . '/ukko.js', Element('themes/ukko/ukko.js', array())); + + if (! ($action == 'all' || $action == 'post' || $action == 'post-thread' || $action == 'post-delete')) { + return; + } + + if ($config['smart_build']) { + file_unlink($settings['uri'] . '/index.html'); + } + else { + file_write($settings['uri'] . '/index.html', $ukko->build()); + } } class ukko { diff --git a/templates/thread.html b/templates/thread.html index e533883d..cf087a65 100644 --- a/templates/thread.html +++ b/templates/thread.html @@ -48,12 +48,12 @@
{% include 'badges.html' %} -

- - Tinyboard + vichan + lainchan {{ config.version }} -
- Tinyboard Copyright © 2010-2014 Tinyboard Development Group
- vichan Copyright © 2012-2014 vichan-devel
- lainchan Copyright © 2014-2015 lainchan Administration -

+

- Tinyboard + + vichan + + lainchan {{ config.version }} - +
Tinyboard Copyright © 2010-2014 Tinyboard Development Group +
vichan Copyright © 2012-2015 vichan-devel +
lainchan Copyright © 2014-2015 lainchan Administration

{% for footer in config.footer %}

{{ footer }}

{% endfor %}
diff --git a/tmp/cache/.gitkeep b/tmp/cache/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tmp/locks/.gitkeep b/tmp/locks/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/tools/rebuild.php b/tools/rebuild.php index 3501f8f6..289523a1 100755 --- a/tools/rebuild.php +++ b/tools/rebuild.php @@ -21,11 +21,14 @@ require dirname(__FILE__) . '/inc/cli.php'; +require_once("inc/bans.php"); + $start = microtime(true); // parse command line $opts = getopt('qfb:', Array('board:', 'quick', 'full', 'quiet')); $options = Array(); +$global_locale = $config['locale']; $options['board'] = isset($opts['board']) ? $opts['board'] : (isset($opts['b']) ? $opts['b'] : false); $options['quiet'] = isset($opts['q']) || isset($opts['quiet']); @@ -59,6 +62,8 @@ foreach($boards as &$board) { if(!$options['quiet']) echo "Opening board /{$board['uri']}/...\n"; + // Reset locale to global locale + $config['locale'] = $global_locale; openBoard($board['uri']); $config['try_smarter'] = false; diff --git a/tools/rebuild2.php b/tools/rebuild2.php new file mode 100755 index 00000000..2945460c --- /dev/null +++ b/tools/rebuild2.php @@ -0,0 +1,140 @@ +#!/usr/bin/php +clearCacheFiles(); +} + +if($options['themes']) { + echo "Regenerating theme files...\n"; + rebuildThemes('all'); +} + +if($options['js']) { + echo "Generating Javascript file...\n"; + buildJavascript(); +} + +$main_js = $config['file_script']; + +$boards = listBoards(); +//$boards = array(array('uri'=>'test'), array('uri'=>'tester'), array('uri'=>'testing')); +$boards_m = array_chunk($boards, floor(sizeof($boards)/$options['processes'])); + +function doboard($board) { + global $global_locale, $config, $main_js, $options; + $config['mask_db_error'] = false; + if (!$options['api']) $config['api']['enabled'] = false; + + echo "Opening board /{$board['uri']}/...\n"; + // Reset locale to global locale + $config['locale'] = $global_locale; + init_locale($config['locale'], 'error'); + openBoard($board['uri']); + $config['try_smarter'] = false; + + if($config['file_script'] != $main_js && $options['js']) { + // different javascript file + echo "(/{$board['uri']}/) Generating Javascript file...\n"; + buildJavascript(); + } + + + if ($options['indexes']) { + echo "(/{$board['uri']}/) Creating index pages...\n"; + buildIndex(); + } + + if($options['postmarkup']) { + $query = query(sprintf("SELECT `id` FROM ``posts_%s``", $board['uri'])) or error(db_error()); + while($post = $query->fetch()) { + echo "(/{$board['uri']}/) Rebuilding #{$post['id']}...\n"; + rebuildPost($post['id']); + } + } + + if ($options['threads']) { + $query = query(sprintf("SELECT `id` FROM ``posts_%s`` WHERE `thread` IS NULL", $board['uri'])) or error(db_error()); + while($post = $query->fetch()) { + echo "(/{$board['uri']}/) Rebuilding #{$post['id']}...\n"; + @buildThread($post['id']); + } + } +} + +$children = array(); +foreach ($boards_m as $i => $bb) { + $pid = pcntl_fork(); + + if ($pid == -1) { + die('Fork failed?'); + } else if ($pid) { + echo "Started PID #$pid...\n"; + $children[] = $pid; + } else { + unset($pdo); + $i = 0; + $total = sizeof($bb); + sql_open(); + foreach ($bb as $i => $b) { + $i++; + doboard($b); + echo "I'm on board $i/$total\n"; + } + break; + } +} + + +printf("Complete! Took %g seconds\n", microtime(true) - $start); + +unset($board); + +foreach ($children as $child) { + pcntl_waitpid($child, $status); + unset($children[$child]); +} + +//modLog('Rebuilt everything using tools/rebuild.php'); diff --git a/tools/stats.php b/tools/stats.php index 0f05d6a8..cec8d2ab 100755 --- a/tools/stats.php +++ b/tools/stats.php @@ -2,11 +2,12 @@ fetch()) { printf("%10s || ", $f['uri']); - foreach ($variants as list($term, $time)) { + foreach ($variants as $iter) { + list($term, $time) = $iter; $qq = query(sprintf("SELECT COUNT(*) as count FROM ``posts_%s`` WHERE time > %d", $f['uri'], time()-$time)); $c = $qq->fetch()['count'];