From 778ca28a3c978bcf30e775c1ca841130c4c09f91 Mon Sep 17 00:00:00 2001 From: 8chan Date: Sat, 19 Jul 2014 18:41:48 +0000 Subject: [PATCH 01/42] Fix 55ch cancer; can now see next page of posts, ?/recent uses templating system --- inc/mod/pages.php | 33 +++++++++++++-------------------- templates/mod/recent_posts.html | 12 ++++++++++-- 2 files changed, 23 insertions(+), 22 deletions(-) diff --git a/inc/mod/pages.php b/inc/mod/pages.php index 801ad9eb..292d36a2 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -2236,6 +2236,7 @@ function mod_recent_posts($lim) { error($config['error']['noaccess']); $limit = (is_numeric($lim))? $lim : 25; + $last_time = (isset($_GET['last']) && is_numeric($_GET['last'])) ? $_GET['last'] : 0; $mod_boards = array(); $boards = listBoards(); @@ -2256,37 +2257,29 @@ function mod_recent_posts($lim) { $query .= sprintf('SELECT *, %s AS `board` FROM ``posts_%s`` UNION ALL ', $pdo->quote($board['uri']), $board['uri']); } // Remove the last "UNION ALL" seperator and complete the query - $query = preg_replace('/UNION ALL $/', ') AS `all_posts` ORDER BY `time` DESC LIMIT ' . $limit, $query); - $query = query($query) or error(db_error()); + $query = preg_replace('/UNION ALL $/', ') AS `all_posts` WHERE (`time` < :last_time OR NOT :last_time) ORDER BY `time` DESC LIMIT ' . $limit, $query); + $query = prepare($query); + $query->bindValue(':last_time', $last_time); + $query->execute() or error(db_error($query)); $posts = $query->fetchAll(PDO::FETCH_ASSOC); - $body = '

Viewing last '.$limit.' posts

-

View 25 | 50 | 100

- Erase local data'; - foreach ($posts as $post) { + foreach ($posts as &$post) { openBoard($post['board']); if (!$post['thread']) { // Still need to fix this: $po = new Thread($post, '?/', $mod, false); - $string = $po->build(true); - $string = '

/'.$post['board'].'/'.$post['id'].'
' . $string; + $post['built'] = $po->build(true); } else { $po = new Post($post, '?/', $mod); - $string = $po->build(true); - $string = '

/'.$post['board'].'/'.$post['id'].'
' . $string; + $post['built'] = $po->build(true); } - $body .= $string . '
'; + $last_time = $post['time']; } - echo Element('page.html', array( - 'config' => $config, - 'mod' => $mod, - 'hide_dashboard_link' => true, - 'title' => _('Recent posts'), - 'subtitle' => '', - 'nojavascript' => false, - 'is_recent_posts' => true, - 'body' => $body + echo mod_page(_('Recent posts'), 'mod/recent_posts.html', array( + 'posts' => $posts, + 'limit' => $limit, + 'last_time' => $last_time ) ); diff --git a/templates/mod/recent_posts.html b/templates/mod/recent_posts.html index 4a2f9baa..7e38881b 100644 --- a/templates/mod/recent_posts.html +++ b/templates/mod/recent_posts.html @@ -1,6 +1,14 @@ -{% if posts|count %} +{% if not posts|count %}

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

{% else %} - +

Viewing last {{ limit|e }} posts

+

View 25 | 50 | 100

+ Erase local data
+ {% for post in posts %} +

/{{ post.board }}/{{ post.id }}
+ {{ post.built }} +
+ {% endfor %} {% endif %} +Next {{ limit }} posts From cc9ae12ec9d416c0b5c8a0aaba2b8b9bd1b6075e Mon Sep 17 00:00:00 2001 From: Fredrick Brennan Date: Sat, 19 Jul 2014 18:47:34 +0000 Subject: [PATCH 02/42] Forgot some |e --- templates/mod/recent_posts.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/mod/recent_posts.html b/templates/mod/recent_posts.html index 7e38881b..7ed80f21 100644 --- a/templates/mod/recent_posts.html +++ b/templates/mod/recent_posts.html @@ -11,4 +11,4 @@ {% endfor %} {% endif %} -Next {{ limit }} posts +Next {{ limit }} posts From 64e2cce67772e238e081966fdf5ec686312c0fd4 Mon Sep 17 00:00:00 2001 From: 8chan Date: Mon, 21 Jul 2014 16:54:51 +0000 Subject: [PATCH 03/42] Fix post linking bug in ?/recent --- templates/mod/recent_posts.html | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/templates/mod/recent_posts.html b/templates/mod/recent_posts.html index 7ed80f21..b9c2c0cc 100644 --- a/templates/mod/recent_posts.html +++ b/templates/mod/recent_posts.html @@ -6,7 +6,12 @@

View 25 | 50 | 100

Erase local data {% for post in posts %} -

/{{ post.board }}/{{ post.id }}
+ {% if not post.thread %} + {% set thread = post.id %} + {% else %} + {% set thread = post.thread %} + {% endif %} +

/{{ post.board }}/{{ post.id }}
{{ post.built }}
{% endfor %} From 5e8bbdc9f62468b85625805172840e8f0cfecdd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20=C5=81abanowski?= Date: Mon, 28 Jul 2014 04:05:47 +0200 Subject: [PATCH 04/42] filters: add option to log a message body in ip notes --- inc/filters.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/inc/filters.php b/inc/filters.php index f694d2b1..fd442fd9 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -9,6 +9,7 @@ defined('TINYBOARD') or exit; class Filter { public $flood_check; private $condition; + private $post; public function __construct(array $arr) { foreach ($arr as $key => $value) @@ -17,6 +18,8 @@ class Filter { public function match(array $post, $condition, $match) { $condition = strtolower($condition); + + $this->post = $post; switch($condition) { case 'custom': @@ -125,8 +128,18 @@ class Filter { $this->expires = isset($this->expires) ? $this->expires : false; $this->reject = isset($this->reject) ? $this->reject : true; $this->all_boards = isset($this->all_boards) ? $this->all_boards : false; + $this->add_note = isset($this->add_note) ? $this->add_note : false; Bans::new_ban($_SERVER['REMOTE_ADDR'], $this->reason, $this->expires, $this->all_boards ? false : $board['uri'], -1); + + if ($this->add_note) { + $query = prepare('INSERT INTO ``ip_notes`` VALUES (NULL, :ip, :mod, :time, :body)'); + $query->bindValue(':ip', $_SERVER['REMOTE_ADDR']); + $query->bindValue(':mod', -1); + $query->bindValue(':time', time()); + $query->bindValue(':body', "Autoban message: ".$this->post['body']); + $query->execute() or error(db_error($query)); + } if ($this->reject) { if (isset($this->message)) From bb096954c7aab60248aaacbed91284109c88dc62 Mon Sep 17 00:00:00 2001 From: czaks Date: Mon, 28 Jul 2014 04:09:01 +0200 Subject: [PATCH 05/42] allow the previous not only for ban action, but also for reject action, or a nul one --- inc/filters.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/inc/filters.php b/inc/filters.php index fd442fd9..0117853f 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -117,6 +117,16 @@ class Filter { public function action() { global $board; + + $this->add_note = isset($this->add_note) ? $this->add_note : false; + if ($this->add_note) { + $query = prepare('INSERT INTO ``ip_notes`` VALUES (NULL, :ip, :mod, :time, :body)'); + $query->bindValue(':ip', $_SERVER['REMOTE_ADDR']); + $query->bindValue(':mod', -1); + $query->bindValue(':time', time()); + $query->bindValue(':body', "Autoban message: ".$this->post['body']); + $query->execute() or error(db_error($query)); + } switch($this->action) { case 'reject': @@ -128,19 +138,9 @@ class Filter { $this->expires = isset($this->expires) ? $this->expires : false; $this->reject = isset($this->reject) ? $this->reject : true; $this->all_boards = isset($this->all_boards) ? $this->all_boards : false; - $this->add_note = isset($this->add_note) ? $this->add_note : false; Bans::new_ban($_SERVER['REMOTE_ADDR'], $this->reason, $this->expires, $this->all_boards ? false : $board['uri'], -1); - if ($this->add_note) { - $query = prepare('INSERT INTO ``ip_notes`` VALUES (NULL, :ip, :mod, :time, :body)'); - $query->bindValue(':ip', $_SERVER['REMOTE_ADDR']); - $query->bindValue(':mod', -1); - $query->bindValue(':time', time()); - $query->bindValue(':body', "Autoban message: ".$this->post['body']); - $query->execute() or error(db_error($query)); - } - if ($this->reject) { if (isset($this->message)) error($message); From f7da99e2b872a5bca5e1f915700d9aa6ff107722 Mon Sep 17 00:00:00 2001 From: czaks Date: Mon, 28 Jul 2014 04:12:19 +0200 Subject: [PATCH 06/42] actually allow for a log-only filter --- inc/filters.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/inc/filters.php b/inc/filters.php index 0117853f..5071353a 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -16,10 +16,10 @@ class Filter { $this->$key = $value; } - public function match(array $post, $condition, $match) { + public function match($condition, $match) { $condition = strtolower($condition); - $this->post = $post; + $post = &$this->post; switch($condition) { case 'custom': @@ -127,8 +127,7 @@ class Filter { $query->bindValue(':body', "Autoban message: ".$this->post['body']); $query->execute() or error(db_error($query)); } - - switch($this->action) { + if (isset ($this->action)) switch($this->action) { case 'reject': error(isset($this->message) ? $this->message : 'Posting throttled by filter.'); case 'ban': @@ -156,13 +155,14 @@ class Filter { } public function check(array $post) { + $this->post = $post; foreach ($this->condition as $condition => $value) { if ($condition[0] == '!') { $NOT = true; $condition = substr($condition, 1); } else $NOT = false; - if ($this->match($post, $condition, $value) == $NOT) + if ($this->match($condition, $value) == $NOT) return false; } return true; From e38a0c9f433eac24928db086c69392d503bb86cf Mon Sep 17 00:00:00 2001 From: czaks Date: Mon, 28 Jul 2014 04:15:09 +0200 Subject: [PATCH 07/42] sorta document the changes in config.php --- inc/config.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inc/config.php b/inc/config.php index 26346072..23e23a97 100644 --- a/inc/config.php +++ b/inc/config.php @@ -372,7 +372,8 @@ // 'message' => 'Go away, spammer.' // ); - // Example: Same as above, but issuing a 3-hour ban instead of just reject the post. + // Example: Same as above, but issuing a 3-hour ban instead of just reject the post and + // add an IP note with the message body // $config['filters'][] = array( // 'condition' => array( // 'name' => '/^surgeon$/', @@ -380,6 +381,7 @@ // 'OP' => false // ), // 'action' => 'ban', + // 'add_note' => true, // 'expires' => 60 * 60 * 3, // 3 hours // 'reason' => 'Go away, spammer.' // ); From f9dce59f1f636e69641033d64aee699e9af5fed1 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 21:35:00 +0200 Subject: [PATCH 08/42] enhance filters; make them work on multiimage --- inc/filters.php | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/inc/filters.php b/inc/filters.php index 5071353a..22843f10 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -97,19 +97,35 @@ class Filter { case 'filehash': return $match === $post['filehash']; case 'filename': - if (!$post['has_file']) + if (!$post['files']) return false; - return preg_match($match, $post['filename']); + + foreach ($post['files'] as $file) { + if (preg_match($match, $file['filename'])) { + return true; + } + } + return false; case 'extension': - if (!$post['has_file']) + if (!$post['files']) return false; - return preg_match($match, $post['body']); + + foreach ($post['files'] as $file) { + if (preg_match($match, $file['extension'])) { + return true; + } + } + return false; case 'ip': return preg_match($match, $_SERVER['REMOTE_ADDR']); case 'op': return $post['op'] == $match; case 'has_file': return $post['has_file'] == $match; + case 'board': + return $post['board'] == $match; + case 'password': + return $post['password'] == $match; default: error('Unknown filter condition: ' . $condition); } From 5d19d2660db65401d7f1ec3b9d08c54c9c3ec1f6 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Sat, 12 Jul 2014 19:59:39 +0200 Subject: [PATCH 09/42] Fix is_writable check for templates/cache --- inc/template.php | 2 +- install.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/template.php b/inc/template.php index c10ac454..48b2b1bb 100644 --- a/inc/template.php +++ b/inc/template.php @@ -23,7 +23,7 @@ function load_twig() { $loader->setPaths($config['dir']['template']); $twig = new Twig_Environment($loader, array( 'autoescape' => false, - 'cache' => is_writable('templates') && (!is_dir('templates/cache') || is_writable('templates/cache')) ? + 'cache' => is_writable('templates') || (is_dir('templates/cache') && is_writable('templates/cache')) ? "{$config['dir']['template']}/cache" : false, 'debug' => $config['debug'] )); diff --git a/install.php b/install.php index db2e7885..d5ccc7c5 100644 --- a/install.php +++ b/install.php @@ -721,7 +721,7 @@ if ($step == 0) { array( 'category' => 'File permissions', 'name' => getcwd() . '/templates/cache', - 'result' => is_writable('templates') && (!is_dir('templates/cache') || is_writable('templates/cache')), + 'result' => is_writable('templates') || (is_dir('templates/cache') && is_writable('templates/cache')), 'required' => true, 'message' => 'You must give vichan permission to create (and write to) the templates/cache directory or performance will be drastically reduced.' ), From 48927d0eb389e92457e475186c996555f5b6605e Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sat, 26 Jul 2014 21:57:48 +0200 Subject: [PATCH 10/42] Fix save-user_flag.js Conflicts: js/save-user_flag.js --- js/save-user_flag.js | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/js/save-user_flag.js b/js/save-user_flag.js index 120dfa08..d588a424 100644 --- a/js/save-user_flag.js +++ b/js/save-user_flag.js @@ -1,8 +1,14 @@ -onready(function(){ - var flagStorage = "flag_"+window.location.pathname.split('/')[1]; +function user_flag() { + var flagStorage = "flag_" + document.getElementsByName('board')[0].value; var item = window.localStorage.getItem(flagStorage); $('select[name=user_flag]').val(item); $('select[name=user_flag]').change(function() { window.localStorage.setItem(flagStorage, $(this).val()); }); -}); \ No newline at end of file + $(window).on('quick-reply', function() { + $('form#quick-reply select[name="user_flag"]').val($('select[name="user_flag"]').val()); + }); +} +if (active_page == 'thread' || active_page == 'index') { + $(document).ready(user_flag); +} From 172ad2d3083c278a86b5b684d76fc217556adb09 Mon Sep 17 00:00:00 2001 From: kaf Date: Fri, 8 Aug 2014 21:43:18 +0200 Subject: [PATCH 11/42] update fr_FR locale --- inc/locale/fr_FR/LC_MESSAGES/javascript.js | 2 +- inc/locale/fr_FR/LC_MESSAGES/javascript.po | 6 +++--- inc/locale/fr_FR/LC_MESSAGES/tinyboard.po | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/inc/locale/fr_FR/LC_MESSAGES/javascript.js b/inc/locale/fr_FR/LC_MESSAGES/javascript.js index d79a8532..edb778dd 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":"\u00c9tendre les vid\u00e9os","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":"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 diff --git a/inc/locale/fr_FR/LC_MESSAGES/javascript.po b/inc/locale/fr_FR/LC_MESSAGES/javascript.po index 0ed08b65..91a58a77 100644 --- a/inc/locale/fr_FR/LC_MESSAGES/javascript.po +++ b/inc/locale/fr_FR/LC_MESSAGES/javascript.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:56+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-06-22 00:07+0000\n" +"Last-Translator: kaf \n" "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -564,7 +564,7 @@ msgstr "Paramètres Webm" #: ../../../../js/webm-settings.js:44 msgid "Expand videos inline" -msgstr "Étendre les vidéos" +msgstr "Lire les vidéos sur passage de la souris." #: ../../../../js/webm-settings.js:45 msgid "Play videos on hover" diff --git a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po index 0aab05c7..a63832aa 100644 --- a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po @@ -4,7 +4,6 @@ # # Translators: # kaf , 2014 -# CHAFIK , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" From 7f265d0d2a0c9efc9707f01d1f1b7c51ed8ba7b9 Mon Sep 17 00:00:00 2001 From: kennyl Date: Fri, 8 Aug 2014 21:43:49 +0200 Subject: [PATCH 12/42] update zh_TW locale --- inc/locale/zh_TW/LC_MESSAGES/javascript.js | 2 +- inc/locale/zh_TW/LC_MESSAGES/javascript.po | 246 ++++++------ inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo | Bin 10677 -> 22806 bytes inc/locale/zh_TW/LC_MESSAGES/tinyboard.po | 429 +++++++++++---------- 4 files changed, 339 insertions(+), 338 deletions(-) diff --git a/inc/locale/zh_TW/LC_MESSAGES/javascript.js b/inc/locale/zh_TW/LC_MESSAGES/javascript.js index e4e2cd8e..fbbc1309 100644 --- a/inc/locale/zh_TW/LC_MESSAGES/javascript.js +++ b/inc/locale/zh_TW/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = []; \ No newline at end of file +l10n = {"Style: ":"\u69cb\u5f0f\uff1a","File":"\u6a94\u6848","hide":"\u96b1\u85cf","show":"\u986f\u793a","Show locked threads":"\u986f\u793a\u9396\u5b9a\u7684\u8a0e\u8ad6\u4e32","Hide locked threads":"\u96b1\u85cf\u9396\u5b9a\u7684\u8a0e\u8ad6\u4e32","URL":"\u7db2\u5740","Select":"\u9078\u64c7","Remote":"\u9060\u7aef","Embed":"\u5d4c\u5165","Oekaki":"Oekaki","hidden":"\u96b1\u85cf","Show images":"\u986f\u793a\u5716\u7247","Hide images":"\u96b1\u85cf\u5716\u7247","Password":"\u5bc6\u78bc","Delete file only":"\u53ea\u522a\u9664\u6a94\u6848","Delete":"\u522a\u9664","Reason":"\u7406\u7531","Report":"\u5831\u544a","Click reply to view.":"\u9ede\u64ca\u56de\u8986\u4ee5\u986f\u793a","Click to expand":"\u9ede\u64ca\u4ee5\u5c55\u958b","Hide expanded replies":"\u96b1\u85cf\u5c55\u958b\u7684\u56de\u8986","Brush size":"\u7b46\u5237\u5927\u5c0f","Set text":"\u9078\u64c7\u6587\u5b57","Clear":"\u6e05\u9664","Save":"\u5132\u5b58","Load":"\u8f09\u5165","Toggle eraser":"\u5207\u63db\u6a61\u76ae\u64e6","Get color":"\u53d6\u5f97\u984f\u8272","Fill":"\u586b\u6eff","Use oekaki instead of file?":"\u4f7f\u7528 oekaki \u800c\u4e0d\u662f\u6a94\u6848\uff1f","Edit in oekaki":"\u5728 oekaki \u4e2d\u7de8\u8f2f","Enter some text":"\u8f38\u5165\u6587\u5b57","Enter font or leave empty":"\u8f38\u5165\u5b57\u578b\u6216\u7559\u767d","Forced anonymity":"\u5f37\u5236\u533f\u540d","enabled":"\u555f\u7528","disabled":"\u505c\u7528","Sun":"\u65e5","Mon":"\u4e00","Tue":"\u4e8c","Wed":"\u4e09","Thu":"\u56db","Fri":"\u4e94","Sat":"\u516d","Catalog":"\u578b\u9304","Submit":"\u9001\u51fa","Quick reply":"\u5feb\u901f\u56de\u8986","Posting mode: Replying to >>{0}<\/small>":"\u8cbc\u6587\u6a21\u5f0f\uff1a\u56de\u8986\u7d66 >>{0}<\/small>","Return":"\u8fd4\u56de","Expand all images":"\u5c55\u958b\u6240\u6709\u5716\u7247","Hello!":"\u54c8\u56c9\uff01","{0} users":"{0} \u4f4d\u7528\u6236","(hide threads from this board)":"\uff08\u5728\u6b64\u7248\u96b1\u85cf\u8a0e\u8ad6\u4e32\uff09","(show threads from this board)":"\uff08\u5728\u6b64\u7248\u986f\u793a\u8a0e\u8ad6\u4e32\uff09","No more threads to display":"\u6c92\u6709\u53ef\u986f\u793a\u7684\u8a0e\u8ad6\u4e32","Loading...":"\u8f09\u5165\u4e2d\u2026\u2026","Save as original filename":"\u4ee5\u539f\u59cb\u6a94\u540d\u5132\u5b58","Reported post(s).":"\u88ab\u56de\u5831\u7684\u8cbc\u6587\u3002","An unknown error occured!":"\u672a\u77e5\u7684\u932f\u8aa4\u767c\u751f\uff01","Something went wrong... An unknown error occured!":"\u51fa\u932f\u4e86\u2026\u2026\u3002\u672a\u77e5\u7684\u932f\u8aa4\u767c\u751f\uff01","Working...":"\u5de5\u4f5c\u4e2d\u2026\u2026","Posting... (#%)":"\u8cbc\u6587\u4e2d\u2026\u2026 (#%)","Posted...":"\u5df2\u8cbc\u6587\u2026\u2026","An unknown error occured when posting!":"\u8cbc\u6587\u6642\u767c\u751f\u672a\u77e5\u7684\u932f\u8aa4\uff01","Posting...":"\u8cbc\u6587\u4e2d\u2026\u2026","Upload URL":"\u4e0a\u50b3\u7db2\u5740","Spoiler Image":"Spoiler \u5716\u7247","Comment":"\u56de\u8986","Quick Reply":"\u5feb\u901f\u56de\u8986","Stop watching this thread":"\u505c\u6b62\u76e3\u8996\u672c\u8a0e\u8ad6\u4e32","Watch this thread":"\u76e3\u8996\u672c\u8a0e\u8ad6\u4e32","Unpin this board":"\u89e3\u9664\u91d8\u9078\u672c\u7248","Pin this board":"\u91d8\u9078\u672c\u7248","Stop watching this board":"\u505c\u6b62\u76e3\u8996\u672c\u7248","Watch this board":"\u76e3\u8996\u672c\u7248","Click on any image on this site to load it into oekaki applet":"\u9ede\u9078\u672c\u7ad9\u7684\u5716\u7247\uff0c\u628a\u5b83\u8f09\u5165\u65bc oekaki applet","Sunday":"\u9031\u65e5","Monday":"\u9031\u4e00","Tuesday":"\u9031\u4e8c","Wednesday":"\u9031\u4e09","Thursday":"\u9031\u56db","Friday":"\u9031\u4e94","Saturday":"\u9031\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\u6708","Dec":"\u5341\u4e8c\u6708","AM":"\u4e0a\u5348","PM":"\u4e0b\u5348","am":"\u4e0a\u5348","pm":"\u4e0b\u5348","Your browser does not support HTML5 video.":"\u60a8\u7684\u700f\u89bd\u5668\u4e0d\u652f\u63f4 HTML5 \u5f71\u7247\u3002","[play once]":"[\u64ad\u653e\u4e00\u6b21]","[loop]":"[\u5faa\u74b0\u64ad\u653e]","WebM Settings":"WebM \u8a2d\u5b9a","Expand videos inline":"\u884c\u5167\u5c55\u958b\u5f71\u7247","Play videos on hover":"\u6ed1\u9f20\u6ed1\u904e\u6642\u64ad\u653e\u5f71\u7247","Default volume":"\u9810\u8a2d\u97f3\u91cf","Tree view":"\u6a39\u72c0\u6aa2\u8996","Shrink all images":"\u7e2e\u5c0f\u6240\u6709\u5716\u7247","Animate GIFs":"\u64ad\u653e GIF \u52d5\u756b","Unanimate GIFs":"\u505c\u6b62 GIF \u52d5\u756b"}; \ No newline at end of file diff --git a/inc/locale/zh_TW/LC_MESSAGES/javascript.po b/inc/locale/zh_TW/LC_MESSAGES/javascript.po index d53965c7..0b438773 100644 --- a/inc/locale/zh_TW/LC_MESSAGES/javascript.po +++ b/inc/locale/zh_TW/LC_MESSAGES/javascript.po @@ -8,8 +8,8 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:56+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-06-30 10:52+0000\n" +"Last-Translator: jdh8 \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,23 +19,23 @@ msgstr "" #: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 msgid "Style: " -msgstr "" +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 "" +msgstr "檔案" #: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 msgid "hide" -msgstr "" +msgstr "隱藏" #: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 #: ../../../../js/hide-images.js:63 msgid "show" -msgstr "" +msgstr "顯示" #: ../../../../js/toggle-locked-threads.js:39 #: ../../../../js/toggle-locked-threads.js:54 @@ -44,7 +44,7 @@ msgstr "" #: ../../../../js/toggle-locked-threads.js:41 #: ../../../../js/toggle-locked-threads.js:56 msgid "Show locked threads" -msgstr "" +msgstr "顯示鎖定的討論串" #: ../../../../js/toggle-locked-threads.js:39 #: ../../../../js/toggle-locked-threads.js:54 @@ -53,131 +53,131 @@ msgstr "" #: ../../../../js/toggle-locked-threads.js:41 #: ../../../../js/toggle-locked-threads.js:56 msgid "Hide locked threads" -msgstr "" +msgstr "隱藏鎖定的討論串" #: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 #: ../../../../js/upload-selection.js:53 msgid "URL" -msgstr "" +msgstr "網址" #: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 #: ../../../../js/upload-selection.js:68 msgid "Select" -msgstr "" +msgstr "選擇" #: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 #: ../../../../js/upload-selection.js:71 msgid "Remote" -msgstr "" +msgstr "遠端" #: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 #: ../../../../js/upload-selection.js:74 msgid "Embed" -msgstr "" +msgstr "嵌入" #: ../../../../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 msgid "hidden" -msgstr "" +msgstr "隱藏" #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 msgid "Show images" -msgstr "" +msgstr "顯示圖片" #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 msgid "Hide images" -msgstr "" +msgstr "隱藏圖片" #: ../../../../js/quick-post-controls.js:27 #: ../../../../js/quick-post-controls.js:29 msgid "Password" -msgstr "" +msgstr "密碼" #: ../../../../js/quick-post-controls.js:29 #: ../../../../js/quick-post-controls.js:31 msgid "Delete file only" -msgstr "" +msgstr "只刪除檔案" #: ../../../../js/quick-post-controls.js:31 #: ../../../../js/quick-post-controls.js:33 msgid "Delete" -msgstr "" +msgstr "刪除" #: ../../../../js/quick-post-controls.js:35 #: ../../../../js/quick-post-controls.js:37 msgid "Reason" -msgstr "" +msgstr "理由" #: ../../../../js/quick-post-controls.js:37 #: ../../../../js/quick-post-controls.js:39 msgid "Report" -msgstr "" +msgstr "報告" #: ../../../../js/expand.js:20 ../../../../js/expand.js:22 msgid "Click reply to view." -msgstr "" +msgstr "點擊回覆以顯示" #: ../../../../js/expand.js:20 ../../../../js/expand.js:22 msgid "Click to expand" -msgstr "" +msgstr "點擊以展開" #: ../../../../js/expand.js:44 ../../../../js/expand.js:46 msgid "Hide expanded replies" -msgstr "" +msgstr "隱藏展開的回覆" #: ../../../../js/oekaki.js:10 msgid "Brush size" -msgstr "" +msgstr "筆刷大小" #: ../../../../js/oekaki.js:10 msgid "Set text" -msgstr "" +msgstr "選擇文字" #: ../../../../js/oekaki.js:10 msgid "Clear" -msgstr "" +msgstr "清除" #: ../../../../js/oekaki.js:10 msgid "Save" -msgstr "" +msgstr "儲存" #: ../../../../js/oekaki.js:10 msgid "Load" -msgstr "" +msgstr "載入" #: ../../../../js/oekaki.js:11 msgid "Toggle eraser" -msgstr "" +msgstr "切換橡皮擦" #: ../../../../js/oekaki.js:11 msgid "Get color" -msgstr "" +msgstr "取得顏色" #: ../../../../js/oekaki.js:11 msgid "Fill" -msgstr "" +msgstr "填滿" #: ../../../../js/oekaki.js:12 msgid "Use oekaki instead of file?" -msgstr "" +msgstr "使用 oekaki 而不是檔案?" #: ../../../../js/oekaki.js:21 msgid "Edit in oekaki" -msgstr "" +msgstr "在 oekaki 中編輯" #: ../../../../js/oekaki.js:152 msgid "Enter some text" -msgstr "" +msgstr "輸入文字" #: ../../../../js/oekaki.js:153 msgid "Enter font or leave empty" -msgstr "" +msgstr "輸入字型或留白" #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 #: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60 @@ -185,191 +185,191 @@ msgstr "" #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 #: ../../../../js/forced-anon.js:71 msgid "Forced anonymity" -msgstr "" +msgstr "強制匿名" #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 msgid "enabled" -msgstr "" +msgstr "啟用" #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 msgid "disabled" -msgstr "" +msgstr "停用" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:30 msgid "Sun" -msgstr "" +msgstr "日" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:30 msgid "Mon" -msgstr "" +msgstr "一" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:30 msgid "Tue" -msgstr "" +msgstr "二" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:30 msgid "Wed" -msgstr "" +msgstr "三" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:30 msgid "Thu" -msgstr "" +msgstr "四" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:30 msgid "Fri" -msgstr "" +msgstr "五" #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:30 msgid "Sat" -msgstr "" +msgstr "六" #: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 #: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 #: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 msgid "Catalog" -msgstr "" +msgstr "型錄" #: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 #: ../../../../js/quick-reply-old.js:23 msgid "Submit" -msgstr "" +msgstr "送出" #: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 #: ../../../../js/quick-reply-old.js:33 msgid "Quick reply" -msgstr "" +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 "" +msgstr "貼文模式:回覆給 >>{0}" #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 #: ../../../../js/quick-reply-old.js:35 msgid "Return" -msgstr "" +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 "" +msgstr "展開所有圖片" #: ../../../../templates/main.js:6 msgid "Hello!" -msgstr "" +msgstr "哈囉!" #: ../../../../templates/main.js:18 #, python-brace-format msgid "{0} users" -msgstr "" +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 msgid "(hide threads from this board)" -msgstr "" +msgstr "(在此版隱藏討論串)" #: ../../../../templates/themes/ukko/ukko.js:32 #: ../../../../templates/themes/ukko/ukko.js:44 #: ../../../../templates/themes/ukko/ukko.js:33 #: ../../../../templates/themes/ukko/ukko.js:45 msgid "(show threads from this board)" -msgstr "" +msgstr "(在此版顯示討論串)" #: ../../../../templates/themes/ukko/ukko.js:57 #: ../../../../templates/themes/ukko/ukko.js:58 msgid "No more threads to display" -msgstr "" +msgstr "沒有可顯示的討論串" #: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:80 msgid "Loading..." -msgstr "" +msgstr "載入中……" #: ../../../../js/download-original.js:32 #: ../../../../js/download-original.js:33 msgid "Save as original filename" -msgstr "" +msgstr "以原始檔名儲存" #: ../../../../js/ajax-post-controls.js:43 msgid "Reported post(s)." -msgstr "" +msgstr "被回報的貼文。" #: ../../../../js/ajax-post-controls.js:53 msgid "An unknown error occured!" -msgstr "" +msgstr "未知的錯誤發生!" #: ../../../../js/ajax-post-controls.js:60 msgid "Something went wrong... An unknown error occured!" -msgstr "" +msgstr "出錯了……。未知的錯誤發生!" #: ../../../../js/ajax-post-controls.js:68 msgid "Working..." -msgstr "" +msgstr "工作中……" #: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 msgid "Posting... (#%)" -msgstr "" +msgstr "貼文中…… (#%)" #: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 msgid "Posted..." -msgstr "" +msgstr "已貼文……" #: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 msgid "An unknown error occured when posting!" -msgstr "" +msgstr "貼文時發生未知的錯誤!" #: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 msgid "Posting..." -msgstr "" +msgstr "貼文中……" #: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 #: ../../../../js/quick-reply.js:225 msgid "Upload URL" -msgstr "" +msgstr "上傳網址" #: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 #: ../../../../js/quick-reply.js:268 msgid "Spoiler Image" -msgstr "" +msgstr "Spoiler 圖片" #: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 #: ../../../../js/quick-reply.js:279 msgid "Comment" -msgstr "" +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 msgid "Quick Reply" -msgstr "" +msgstr "快速回覆" #: ../../../../js/watch.js:249 ../../../../js/watch.js:250 #: ../../../../js/watch.js:288 ../../../../js/watch.js:289 #: ../../../../js/watch.js:330 ../../../../js/watch.js:331 msgid "Stop watching this thread" -msgstr "" +msgstr "停止監視本討論串" #: ../../../../js/watch.js:249 ../../../../js/watch.js:250 #: ../../../../js/watch.js:288 ../../../../js/watch.js:289 #: ../../../../js/watch.js:330 ../../../../js/watch.js:331 msgid "Watch this thread" -msgstr "" +msgstr "監視本討論串" #: ../../../../js/watch.js:260 ../../../../js/watch.js:261 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299 @@ -377,7 +377,7 @@ msgstr "" #: ../../../../js/watch.js:341 ../../../../js/watch.js:342 #: ../../../../js/watch.js:350 msgid "Unpin this board" -msgstr "" +msgstr "解除釘選本版" #: ../../../../js/watch.js:260 ../../../../js/watch.js:261 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299 @@ -385,7 +385,7 @@ msgstr "" #: ../../../../js/watch.js:341 ../../../../js/watch.js:342 #: ../../../../js/watch.js:350 msgid "Pin this board" -msgstr "" +msgstr "釘選本版" #: ../../../../js/watch.js:262 ../../../../js/watch.js:267 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301 @@ -393,7 +393,7 @@ msgstr "" #: ../../../../js/watch.js:343 ../../../../js/watch.js:348 #: ../../../../js/watch.js:349 msgid "Stop watching this board" -msgstr "" +msgstr "停止監視本版" #: ../../../../js/watch.js:262 ../../../../js/watch.js:267 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301 @@ -401,190 +401,190 @@ msgstr "" #: ../../../../js/watch.js:343 ../../../../js/watch.js:348 #: ../../../../js/watch.js:349 msgid "Watch this board" -msgstr "" +msgstr "監視本版" #: ../../../../js/wpaint.js:113 msgid "Click on any image on this site to load it into oekaki applet" -msgstr "" +msgstr "點選本站的圖片,把它載入於 oekaki applet" #: ../../../../js/local-time.js:29 msgid "Sunday" -msgstr "" +msgstr "週日" #: ../../../../js/local-time.js:29 msgid "Monday" -msgstr "" +msgstr "週一" #: ../../../../js/local-time.js:29 msgid "Tuesday" -msgstr "" +msgstr "週二" #: ../../../../js/local-time.js:29 msgid "Wednesday" -msgstr "" +msgstr "週三" #: ../../../../js/local-time.js:29 msgid "Thursday" -msgstr "" +msgstr "週四" #: ../../../../js/local-time.js:29 msgid "Friday" -msgstr "" +msgstr "週五" #: ../../../../js/local-time.js:29 msgid "Saturday" -msgstr "" +msgstr "週六" #: ../../../../js/local-time.js:31 msgid "January" -msgstr "" +msgstr "一月" #: ../../../../js/local-time.js:31 msgid "February" -msgstr "" +msgstr "二月" #: ../../../../js/local-time.js:31 msgid "March" -msgstr "" +msgstr "三月" #: ../../../../js/local-time.js:31 msgid "April" -msgstr "" +msgstr "四月" #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 msgid "May" -msgstr "" +msgstr "五月" #: ../../../../js/local-time.js:31 msgid "June" -msgstr "" +msgstr "六月" #: ../../../../js/local-time.js:31 msgid "July" -msgstr "" +msgstr "七月" #: ../../../../js/local-time.js:31 msgid "August" -msgstr "" +msgstr "八月" #: ../../../../js/local-time.js:31 msgid "September" -msgstr "" +msgstr "九月" #: ../../../../js/local-time.js:31 msgid "October" -msgstr "" +msgstr "十月" #: ../../../../js/local-time.js:31 msgid "November" -msgstr "" +msgstr "十一月" #: ../../../../js/local-time.js:31 msgid "December" -msgstr "" +msgstr "十二月" #: ../../../../js/local-time.js:32 msgid "Jan" -msgstr "" +msgstr "一月" #: ../../../../js/local-time.js:32 msgid "Feb" -msgstr "" +msgstr "二月" #: ../../../../js/local-time.js:32 msgid "Mar" -msgstr "" +msgstr "三月" #: ../../../../js/local-time.js:32 msgid "Apr" -msgstr "" +msgstr "四月" #: ../../../../js/local-time.js:32 msgid "Jun" -msgstr "" +msgstr "六月" #: ../../../../js/local-time.js:32 msgid "Jul" -msgstr "" +msgstr "七月" #: ../../../../js/local-time.js:32 msgid "Aug" -msgstr "" +msgstr "八月" #: ../../../../js/local-time.js:32 msgid "Sep" -msgstr "" +msgstr "九月" #: ../../../../js/local-time.js:32 msgid "Oct" -msgstr "" +msgstr "十月" #: ../../../../js/local-time.js:32 msgid "Nov" -msgstr "" +msgstr "十一月" #: ../../../../js/local-time.js:32 msgid "Dec" -msgstr "" +msgstr "十二月" #: ../../../../js/local-time.js:33 msgid "AM" -msgstr "" +msgstr "上午" #: ../../../../js/local-time.js:34 msgid "PM" -msgstr "" +msgstr "下午" #: ../../../../js/local-time.js:35 msgid "am" -msgstr "" +msgstr "上午" #: ../../../../js/local-time.js:36 msgid "pm" -msgstr "" +msgstr "下午" #: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 msgid "Your browser does not support HTML5 video." -msgstr "" +msgstr "您的瀏覽器不支援 HTML5 影片。" #: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 #: ../../../../js/expand-video.js:193 msgid "[play once]" -msgstr "" +msgstr "[播放一次]" #: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 #: ../../../../js/expand-video.js:194 msgid "[loop]" -msgstr "" +msgstr "[循環播放]" #: ../../../../js/webm-settings.js:42 msgid "WebM Settings" -msgstr "" +msgstr "WebM 設定" #: ../../../../js/webm-settings.js:44 msgid "Expand videos inline" -msgstr "" +msgstr "行內展開影片" #: ../../../../js/webm-settings.js:45 msgid "Play videos on hover" -msgstr "" +msgstr "滑鼠滑過時播放影片" #: ../../../../js/webm-settings.js:46 msgid "Default volume" -msgstr "" +msgstr "預設音量" #: ../../../../js/treeview.js:18 msgid "Tree view" -msgstr "" +msgstr "樹狀檢視" #: ../../../../js/expand-all-images.js:32 msgid "Shrink all images" -msgstr "" +msgstr "縮小所有圖片" #: ../../../../js/no-animated-gif.js:33 msgid "Animate GIFs" -msgstr "" +msgstr "播放 GIF 動畫" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 msgid "Unanimate GIFs" -msgstr "" +msgstr "停止 GIF 動畫" diff --git a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo index 76f28af1ef2dc0de79bc2eff3c499b4061450398..2c19a73f9977c19b411491601abd2df0d0aaf49d 100644 GIT binary patch literal 22806 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 diff --git a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po index ceb3e88c..407bf57e 100644 --- a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po +++ b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# kennyl , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:57+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-07-06 09:06+0000\n" +"Last-Translator: kennyl \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -106,7 +107,7 @@ msgstr "被封禁!" #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 #: ../../../../inc/functions.php:1244 ../../../../inc/functions.php:1228 msgid "Previous" -msgstr "上一個" +msgstr "上一頁" #. There is no next page. #: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153 @@ -119,7 +120,7 @@ msgstr "上一個" #: ../../../../inc/functions.php:1258 ../../../../inc/functions.php:1233 #: ../../../../inc/functions.php:1242 msgid "Next" -msgstr "下一個" +msgstr "下一頁" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 #: ../../../../inc/display.php:108 ../../../../inc/display.php:112 @@ -185,7 +186,7 @@ msgstr "您確定要刪除這個檔案?" #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 #: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" -msgstr "" +msgstr "Spoiler 檔" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 @@ -193,13 +194,13 @@ 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 "您確定要 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 "" +msgstr "移動回覆到另一版" #: ../../../../inc/display.php:388 ../../../../inc/display.php:512 #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 @@ -259,25 +260,25 @@ msgstr "您確定要跨版刪除此 IP 位址發出的所有貼文?" #: ../../../../inc/display.php:515 ../../../../inc/display.php:519 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:96 msgid "Make thread not sticky" -msgstr "撕下討論串" +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 "黏住討論串" +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 "取消 SAGE 討論串" +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 "SAGE 討論串" +msgstr "禁止推文" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 #: ../../../../inc/display.php:528 ../../../../inc/display.php:532 @@ -341,7 +342,7 @@ msgstr "所有本頁上的商標、著作權、留言、圖片分別為當事人 #. Error messages #: ../../../../inc/config.php:866 msgid "Lurk some more before posting." -msgstr "" +msgstr "先多潛潛水,再來貼文吧!" #. * ==================== #. * Error messages @@ -640,7 +641,7 @@ msgstr "無效的用戶名或密碼。" #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1033 msgid "You are not a mod…" -msgstr "您不是仲裁者…" +msgstr "您不是版務…" #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 @@ -716,7 +717,7 @@ msgstr "頁面不存在。" #: ../../../../inc/config.php:1043 #, php-format msgid "That mod already exists!" -msgstr "仲裁者 已存在!" +msgstr "版務 已存在!" #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 @@ -853,7 +854,7 @@ msgstr "封禁名單" #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 msgid "Move reply" -msgstr "" +msgstr "移動回覆" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 @@ -979,23 +980,23 @@ msgstr "資料庫錯誤:" #: ../../../../banned.php:4 msgid "Banned?" -msgstr "" +msgstr "被封禁?" #: ../../../../banned.php:5 msgid "You are not banned." -msgstr "" +msgstr "您未被封禁。" #. line 6 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 msgid "Go back" -msgstr "" +msgstr "回去" #. line 13 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 msgid "Error information" -msgstr "" +msgstr "錯誤資訊" #. line 2 #. line 3 @@ -1003,7 +1004,7 @@ msgstr "" #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:27 msgid "Delete Post" -msgstr "" +msgstr "刪除貼文" #. line 3 #. line 84 @@ -1041,7 +1042,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 msgid "File" -msgstr "" +msgstr "檔案" #. line 132 #. line 14 @@ -1076,7 +1077,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:33 msgid "Password" -msgstr "" +msgstr "密碼" #. line 8 #. line 108 @@ -1153,7 +1154,7 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 msgid "Reason" -msgstr "" +msgstr "理由" #. line 10 #. line 12 @@ -1161,7 +1162,7 @@ msgstr "" #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:52 msgid "Report" -msgstr "" +msgstr "回報" #: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 #: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 @@ -1174,7 +1175,7 @@ msgstr "" #: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 #: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:129 msgid "Return to dashboard" -msgstr "" +msgstr "返回控制台" #. line 39 #. line 33 @@ -1182,7 +1183,7 @@ msgstr "" #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 msgid "Posting mode: Reply" -msgstr "" +msgstr "貼文模式:回覆" #: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 #: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 @@ -1191,12 +1192,12 @@ msgstr "" #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 #: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 msgid "Return" -msgstr "" +msgstr "返回" #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 msgid "(No news to show.)" -msgstr "" +msgstr "(沒有新聞可以顯示。)" #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 @@ -1204,7 +1205,7 @@ msgstr "" #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 msgid "no subject" -msgstr "" +msgstr "沒有主題" #. line 44 #. line 56 @@ -1216,7 +1217,7 @@ msgstr "" #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 msgid "by" -msgstr "" +msgstr "由" #. line 50 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 @@ -1224,7 +1225,7 @@ msgstr "" #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 msgid "at" -msgstr "" +msgstr "於" #. line 28 #. line 26 @@ -1233,12 +1234,12 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 msgid "1 reply" msgid_plural "%count% replies" -msgstr[0] "" +msgstr[0] "%count% 則回覆" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 msgid "File:" -msgstr "" +msgstr "檔案:" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 @@ -1251,7 +1252,7 @@ msgstr "" #: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 #: ../../../../templates/cache/f4/a7/ad2833eb0c0460ae8ae508f0d0846fd7a06aafcf8ef126ae76721e92f42a.php:82 msgid "Spoiler Image" -msgstr "" +msgstr "Spoiler 圖片" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 @@ -1261,7 +1262,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:216 msgid "Reply" -msgstr "" +msgstr "回覆" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 @@ -1271,7 +1272,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 msgid "View All" -msgstr "" +msgstr "顯示全部" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 @@ -1282,7 +1283,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 msgid "Last 1 Post" msgid_plural "Last %count% Posts" -msgstr[0] "" +msgstr[0] "最新的 %count% 則貼文" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 @@ -1293,7 +1294,7 @@ msgstr[0] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 msgid "1 post" msgid_plural "%count% posts" -msgstr[0] "" +msgstr[0] "%count% 則貼文" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 @@ -1304,7 +1305,7 @@ msgstr[0] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 msgid "and" -msgstr "" +msgstr "與" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 @@ -1315,7 +1316,7 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 msgid "1 image reply" msgid_plural "%count% image replies" -msgstr[0] "" +msgstr[0] "%count% 則含圖回覆" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 @@ -1325,7 +1326,7 @@ msgstr[0] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 msgid "omitted. Click reply to view." -msgstr "" +msgstr "已省略。點擊回覆以查看" #. line 7 #. line 14 @@ -1361,7 +1362,7 @@ msgstr "" #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:33 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 msgid "Name" -msgstr "" +msgstr "名稱" #. line 15 #. line 24 @@ -1380,7 +1381,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47 msgid "Email" -msgstr "" +msgstr "Email" #. line 23 #. line 46 @@ -1415,13 +1416,13 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:150 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:61 msgid "Subject" -msgstr "" +msgstr "主題" #. line 27 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 msgid "Update" -msgstr "" +msgstr "更新" #. line 32 #. line 57 @@ -1440,28 +1441,28 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79 msgid "Comment" -msgstr "" +msgstr "回覆" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 msgid "Currently editing raw HTML." -msgstr "" +msgstr "正在編輯 HTML" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 msgid "Edit markup instead?" -msgstr "" +msgstr "要編輯標記?" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 msgid "Edit raw HTML instead?" -msgstr "" +msgstr "要編輯 HTML?" #. line 73 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 msgid "Verification" -msgstr "" +msgstr "驗證" #. line 90 #. line 103 @@ -1469,7 +1470,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 msgid "Or URL" -msgstr "" +msgstr "或網址" #. line 100 #. line 113 @@ -1477,7 +1478,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 msgid "Embed" -msgstr "" +msgstr "嵌入" #. line 112 #. line 111 @@ -1487,7 +1488,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 msgid "Flags" -msgstr "" +msgstr "旗標" #. line 116 #. line 117 @@ -1527,7 +1528,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 msgid "Sticky" -msgstr "" +msgstr "黏性" #. line 120 #. line 121 @@ -1567,7 +1568,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 msgid "Lock" -msgstr "" +msgstr "鎖定" #. line 124 #. line 125 @@ -1607,7 +1608,7 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 msgid "Raw HTML" -msgstr "" +msgstr "HTML" #. line 137 #. line 136 @@ -1619,30 +1620,30 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 msgid "(For file deletion.)" -msgstr "" +msgstr "(用來刪除檔案。)" #: ../../../../search.php:5 msgid "Post search is disabled" -msgstr "" +msgstr "貼文搜尋已停用" #: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:29 ../../../../search.php:35 msgid "Wait a while before searching again, please." -msgstr "" +msgstr "請先等一下再搜尋。" #: ../../../../search.php:131 ../../../../search.php:135 msgid "Query too broad." -msgstr "" +msgstr "查詢條件過寬" #: ../../../../search.php:152 ../../../../search.php:156 #, php-format msgid "%d result in" msgid_plural "%d results in" -msgstr[0] "" +msgstr[0] "%d 項結果在" #: ../../../../search.php:163 ../../../../search.php:167 msgid "No results." -msgstr "" +msgstr "沒有結果。" #. line 115 #. line 16 @@ -1701,7 +1702,7 @@ msgstr "" #: ../../../../search.php:172 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:343 msgid "Search" -msgstr "" +msgstr "搜尋" #: ../../../../inc/mod/pages.php:939 msgid "Ban appeal not found!" @@ -1731,7 +1732,7 @@ msgstr "除錯:APC" msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " -msgstr "" +msgstr "您的程式碼有 PHP 語法錯誤。請回去更正。PHP 說:" #. line 2 #. line 6 @@ -1750,60 +1751,60 @@ msgstr "" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 msgid "Boards" -msgstr "" +msgstr "討論版" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 msgid "edit" -msgstr "" +msgstr "編輯" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 msgid "Create new board" -msgstr "" +msgstr "建立新版" #. line 32 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 msgid "Messages" -msgstr "" +msgstr "訊息" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 msgid "View all noticeboard entries" -msgstr "" +msgstr "顯示所有公佈項目" #. line 76 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 msgid "Administration" -msgstr "" +msgstr "管理" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 msgid "Change password" -msgstr "" +msgstr "改變密碼" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 msgid "Configuration" -msgstr "" +msgstr "設定" #. line 127 #. line 130 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 msgid "Other" -msgstr "" +msgstr "其他" #. line 139 #. line 142 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 msgid "Debug" -msgstr "" +msgstr "除錯" #. line 141 #. line 144 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 msgid "Anti-spam" -msgstr "" +msgstr "反垃圾" #. line 142 #. line 145 @@ -1812,30 +1813,30 @@ msgstr "" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 msgid "Recent posts" -msgstr "" +msgstr "最新貼文" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 msgid "SQL" -msgstr "" +msgstr "SQL" #. line 164 #. line 167 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 msgid "User account" -msgstr "" +msgstr "用戶帳號" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 msgid "Logout" -msgstr "" +msgstr "登出" #. line 3 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 msgid "New post" -msgstr "" +msgstr "新貼文" #. line 16 #. line 28 @@ -1845,17 +1846,17 @@ msgstr "" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" -msgstr "" +msgstr "內文" #. line 21 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 msgid "Post to noticeboard" -msgstr "" +msgstr "貼到公佈欄" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 msgid "delete" -msgstr "" +msgstr "刪除" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 @@ -1870,12 +1871,12 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 msgid "deleted?" -msgstr "" +msgstr "已刪除?" #. line 33 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 msgid "Post news entry" -msgstr "" +msgstr "張貼新聞" #. line 24 #. line 63 @@ -1966,7 +1967,7 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 msgid "Staff" -msgstr "" +msgstr "職員" #. line 25 #. line 68 @@ -1998,7 +1999,7 @@ msgstr "" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 msgid "Note" -msgstr "" +msgstr "筆記" #. line 26 #. line 22 @@ -2017,23 +2018,23 @@ msgstr "" #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 msgid "Date" -msgstr "" +msgstr "日期" #. line 25 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 msgid "Actions" -msgstr "" +msgstr "行動" #. line 49 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 msgid "remove" -msgstr "" +msgstr "移除" #. line 76 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 msgid "New note" -msgstr "" +msgstr "新筆記" #. line 94 #. line 7 @@ -2058,22 +2059,22 @@ msgstr "" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" -msgstr "" +msgstr "狀態" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 msgid "Expired" -msgstr "" +msgstr "到期日" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 msgid "Active" -msgstr "" +msgstr "作用中" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 msgid "no reason" -msgstr "" +msgstr "沒有理由" #. line 118 #. line 184 @@ -2160,7 +2161,7 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 msgid "Board" -msgstr "" +msgstr "討論版" #. line 71 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 @@ -2171,7 +2172,7 @@ msgstr "" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 msgid "all boards" -msgstr "" +msgstr "所有版" #. line 128 #. line 11 @@ -2209,7 +2210,7 @@ msgstr "" #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 msgid "Set" -msgstr "" +msgstr "設定" #. line 132 #. line 13 @@ -2247,7 +2248,7 @@ msgstr "" #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 msgid "Expires" -msgstr "" +msgstr "到期" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 @@ -2255,7 +2256,7 @@ msgstr "" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 msgid "never" -msgstr "" +msgstr "從未" #. line 142 #. line 14 @@ -2293,26 +2294,26 @@ msgstr "" #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 msgid "Seen" -msgstr "" +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 "" +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 "" +msgstr "否" #. line 163 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 msgid "Remove ban" -msgstr "" +msgstr "解除封禁" #. line 183 #. line 5 @@ -2337,7 +2338,7 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 msgid "Time" -msgstr "" +msgstr "時間" #. line 185 #. line 89 @@ -2377,15 +2378,15 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 msgid "Action" -msgstr "" +msgstr "行動" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 msgid "(or subnet)" -msgstr "" +msgstr "(或子網)" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 msgid "hidden" -msgstr "" +msgstr "隱藏" #. line 41 #. line 27 @@ -2397,22 +2398,22 @@ msgstr "" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 msgid "Message" -msgstr "" +msgstr "訊息" #. line 46 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 msgid "public; attached to post" -msgstr "" +msgstr "公開的;附於貼文" #. line 58 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 msgid "Length" -msgstr "" +msgstr "長度" #. line 88 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 msgid "New Ban" -msgstr "" +msgstr "新封禁" #. line 2 #. line 5 @@ -2435,30 +2436,30 @@ msgstr "" #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" -msgstr "" +msgstr "字詞:" #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 msgid "Posts" -msgstr "" +msgstr "貼文" #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 msgid "IP address notes" -msgstr "" +msgstr "IP 位址筆記" #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 msgid "Bans" -msgstr "" +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 "" +msgstr "(搜尋是大小寫不分且基於關鍵字。要搜尋確切字詞,請用 \"引號\"。用 (*) 作為通配符。)" #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 msgid "There are no active bans." -msgstr "" +msgstr "沒有作用中的封禁。" #. line 8 #. line 47 @@ -2471,7 +2472,7 @@ msgstr "" #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 msgid "IP address/mask" -msgstr "" +msgstr "IP 位址/遞罩" #. line 12 #. line 51 @@ -2484,12 +2485,12 @@ msgstr "" #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 msgid "Duration" -msgstr "" +msgstr "期間" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 msgid "Unban selected" -msgstr "" +msgstr "選取解除封禁" #. line 6 #. line 4 @@ -2509,26 +2510,26 @@ msgstr "" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 msgid "Username" -msgstr "" +msgstr "用戶名" #. line 23 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 msgid "Continue" -msgstr "" +msgstr "繼續" #. line 80 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 msgid "Appeal time" -msgstr "" +msgstr "申訴時間" #. line 84 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 msgid "Appeal reason" -msgstr "" +msgstr "申訴理由" #: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 msgid "There are no reports." -msgstr "" +msgstr "沒有回報。" #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 #: ../../../../post.php:894 @@ -2566,71 +2567,71 @@ msgstr "縮放圖形失敗!" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 msgid "You were banned! ;_;" -msgstr "" +msgstr "您已被封禁!;_;" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 msgid "You are banned! ;_;" -msgstr "" +msgstr "您已被封禁!;_;" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 msgid "You were banned from" -msgstr "" +msgstr "您於被封禁於" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 msgid "You have been banned from" -msgstr "" +msgstr "您於被封禁於" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 msgid "for the following reason:" -msgstr "" +msgstr "因為:" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 msgid "for an unspecified reason." -msgstr "" +msgstr "為了未指定的理由。" #. line 32 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 msgid "Your ban was filed on" -msgstr "" +msgstr "您的封禁建檔於" #. line 51 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 msgid "has since expired. Refresh the page to continue." -msgstr "" +msgstr "已經過期。重整頁面已繼續。" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 msgid "expires" -msgstr "" +msgstr "到期" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 msgid "from now, which is on" -msgstr "" +msgstr "從今以後,它是在" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 msgid "will not expire" -msgstr "" +msgstr "不會到期" #. line 78 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 msgid "Your IP address is" -msgstr "" +msgstr "您的 IP 位址是" #. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 msgid "You were banned for the following post on" -msgstr "" +msgstr "您由於以下貼文被封禁" #. line 95 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You submitted an appeal for this ban on" -msgstr "" +msgstr "您送出這個封禁申訴於" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 msgid "It is still pending" -msgstr "" +msgstr "仍在佇列中" #. line 101 #. line 112 @@ -2655,20 +2656,20 @@ msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 msgid "You appealed this ban on" -msgstr "" +msgstr "您申訴這個封禁於" #. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 msgid "and it was denied. You may not appeal this ban again." -msgstr "" +msgstr "且已被拒絕。您不能再申訴這個封禁。" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." -msgstr "" +msgstr "您已達封禁申訴的最大數量。您不能再申訴這個封禁。" #. line 114 #. line 121 @@ -2693,7 +2694,7 @@ msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 msgid "and it was denied." -msgstr "" +msgstr "且已被拒絕。" #. line 116 #. line 123 @@ -2718,18 +2719,18 @@ msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 msgid "You may appeal this ban again. Please enter your reasoning below." -msgstr "" +msgstr "您可以再申訴這個封禁。請在以下輸入您的理由。" #. line 119 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 msgid "You last appealed this ban on" -msgstr "" +msgstr "您最近申訴這個封禁於" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 msgid "You may appeal this ban. Please enter your reasoning below." -msgstr "" +msgstr "您可以再申訴這個封禁。請在以下輸入您的理由。" #. line 4 #. line 16 @@ -2751,64 +2752,64 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 msgid "IP address" -msgstr "" +msgstr "IP 位址" #. line 3 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 msgid "ID" -msgstr "" +msgstr "ID" #. line 5 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 msgid "Type" -msgstr "" +msgstr "類型" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 msgid "Last action" -msgstr "" +msgstr "最近行動" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 msgid "Unknown" -msgstr "" +msgstr "未知" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 msgid "none" -msgstr "" +msgstr "沒有" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 msgid "Promote" -msgstr "" +msgstr "升級" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 msgid "Demote" -msgstr "" +msgstr "降級" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 msgid "Are you sure you want to demote yourself?" -msgstr "" +msgstr "您確定要降級自己?" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 msgid "log" -msgstr "" +msgstr "記錄" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 msgid "PM" -msgstr "" +msgstr "私訊" #. line 6 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 msgid "Thread ID" -msgstr "" +msgstr "討論串 ID" #. line 14 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 msgid "Leave shadow thread" -msgstr "" +msgstr "離開影中的討論串" #. line 18 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 msgid "locks thread; replies to it with a link." -msgstr "" +msgstr "鎖定討論串;以鏈結回覆。" #. line 22 #. line 13 @@ -2817,12 +2818,12 @@ msgstr "" #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" -msgstr "" +msgstr "目標版" #. line 8 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 msgid "Select board" -msgstr "" +msgstr "選擇版" #. line 17 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 @@ -2834,136 +2835,136 @@ 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 "" +msgstr "搜尋是大小寫不分且基於關鍵字。要搜尋確切字詞,請用 \"引號\"。用 (*) 作為通配符。

您可以在您的搜尋中套用以下過濾器:id, thread, subject, 以及 name. 要套用過濾器,直接加入您的搜尋字串中,像是 name:Anonymoussubject:\"某討論串\"。過濾器中不能使用通配符。" #. line 2 #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 msgid "Are you sure you want to do that?" -msgstr "" +msgstr "您確定要這麼做?" #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 msgid "Click to proceed to" -msgstr "" +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 "" +msgstr "您可能是因為停用 JavaScript 才看見這個訊息。這是預防 CRSF 攻擊的必要措施。" #. line 7 #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 msgid "Report date" -msgstr "" +msgstr "回報日期" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 msgid "Reported by" -msgstr "" +msgstr "回報由" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 msgid "Discard abuse report" -msgstr "" +msgstr "丟棄濫用回報" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 msgid "Discard all abuse reports by this IP address" -msgstr "" +msgstr "丟棄來自此 IP 位址的濫用回報" #. line 4 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 msgid "From" -msgstr "" +msgstr "由" #. line 34 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 msgid "Delete forever" -msgstr "" +msgstr "永久刪除" #. line 39 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 msgid "Reply with quote" -msgstr "" +msgstr "以引言回覆" #. line 18 #: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 msgid "Send message" -msgstr "" +msgstr "傳送訊息" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 msgid "There are no themes available." -msgstr "" +msgstr "沒有可用的佈景。" #. line 11 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 msgid "Version" -msgstr "" +msgstr "版本" #. line 15 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 msgid "Description" -msgstr "" +msgstr "描述" #. line 19 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 msgid "Thumbnail" -msgstr "" +msgstr "縮圖" #. line 27 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 msgid "Use theme" -msgstr "" +msgstr "使用佈景" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 msgid "Reconfigure" -msgstr "" +msgstr "重新設定" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 msgid "Install" -msgstr "" +msgstr "安裝" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 msgid "Uninstall" -msgstr "" +msgstr "解除安裝" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 msgid "new; optional" -msgstr "" +msgstr "新;可選" #. line 32 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 msgid "Group" -msgstr "" +msgstr "群組" #. line 56 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 msgid "All boards" -msgstr "" +msgstr "所有版" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 msgid "Create user" -msgstr "" +msgstr "建立用戶" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 msgid "Save changes" -msgstr "" +msgstr "儲存變更" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 msgid "Delete user" -msgstr "" +msgstr "刪除用戶" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 msgid "View more logs for this user." -msgstr "" +msgstr "檢視更多此用戶的記錄。" #. line 84 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 msgid "Flag" -msgstr "" +msgstr "旗標" #. line 87 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" -msgstr "" +msgstr "沒有" #. When moving a thread to another board and choosing to keep a "shadow #. thread", an automated post (with @@ -2973,22 +2974,22 @@ msgstr "" #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 #, php-format msgid "Moved to %s." -msgstr "" +msgstr "移動到 %s" #: ../../../../templates/themes/recent/theme.php:50 msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "無法建造 RecentPosts 佈景,因為沒有可取用的版。" #: ../../../../inc/config.php:997 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "您試圖上傳太多圖片!" #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Spoiler 檔" #. line 26 #. line 35 @@ -2997,7 +2998,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 msgid "Bump order" -msgstr "" +msgstr "Bump 順序" #. line 27 #. line 36 @@ -3006,7 +3007,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "最新回覆" #. line 28 #. line 37 @@ -3015,7 +3016,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 msgid "Creation date" -msgstr "" +msgstr "建立日期" #. line 29 #. line 38 @@ -3024,7 +3025,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 msgid "Reply count" -msgstr "" +msgstr "回覆數量" #. line 30 #. line 39 @@ -3033,58 +3034,58 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 msgid "Random" -msgstr "" +msgstr "隨機" #. line 33 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Sort by" -msgstr "" +msgstr "排序依" #. line 42 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 msgid "Image size" -msgstr "" +msgstr "圖片大小" #. line 44 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 msgid "Small" -msgstr "" +msgstr "小" #. line 45 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 msgid "Large" -msgstr "" +msgstr "大" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "貼文 ID" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "目標討論串" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "不允許刪除貼文!" #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "未知的檔案大小決定方法。" #: ../../../../post.php:519 msgid "Invalid flag selection!" -msgstr "" +msgstr "無效的旗標選擇!" #: ../../../../post.php:631 msgid "exiftool failed!" -msgstr "" +msgstr "exiftool 失敗!" #: ../../../../post.php:641 msgid "Could not auto-orient image!" -msgstr "" +msgstr "無法自動旋轉圖片!" #: ../../../../post.php:695 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "無法獲取 EXIF 後設資料!" From ae659d91a1fd0084615b3fa7bf21b2b266016746 Mon Sep 17 00:00:00 2001 From: copypaste Date: Fri, 8 Aug 2014 21:44:56 +0200 Subject: [PATCH 13/42] update eo locale --- inc/locale/eo/LC_MESSAGES/javascript.po | 17 +++++----- inc/locale/eo/LC_MESSAGES/tinyboard.po | 43 +++++++++++++------------ 2 files changed, 31 insertions(+), 29 deletions(-) diff --git a/inc/locale/eo/LC_MESSAGES/javascript.po b/inc/locale/eo/LC_MESSAGES/javascript.po index 45fbf730..10f3e78a 100644 --- a/inc/locale/eo/LC_MESSAGES/javascript.po +++ b/inc/locale/eo/LC_MESSAGES/javascript.po @@ -3,14 +3,15 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# copypaste , 2014 # Nenia Ulo , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:56+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-07-19 14:58+0000\n" +"Last-Translator: copypaste \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -325,7 +326,7 @@ msgstr "Laborado..." #: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 msgid "Posting... (#%)" -msgstr "Afiŝando... (#%)" +msgstr "Afiŝanta... (#%)" #: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 msgid "Posted..." @@ -333,11 +334,11 @@ msgstr "Afiŝita..." #: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 msgid "An unknown error occured when posting!" -msgstr "Nekonata eraro okazis dum afiŝando!" +msgstr "Nekonata eraro okazis dum la afiŝado!" #: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 msgid "Posting..." -msgstr "Afiŝando..." +msgstr "Afiŝanta..." #: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 #: ../../../../js/quick-reply.js:225 @@ -580,12 +581,12 @@ msgstr "Arba vido" #: ../../../../js/expand-all-images.js:32 msgid "Shrink all images" -msgstr "" +msgstr "Malgrandigi ĉiujn bildojn" #: ../../../../js/no-animated-gif.js:33 msgid "Animate GIFs" -msgstr "" +msgstr "Movigu GIF-miniaturojn" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 msgid "Unanimate GIFs" -msgstr "" +msgstr "Haltigu GIF-miniaturojn" diff --git a/inc/locale/eo/LC_MESSAGES/tinyboard.po b/inc/locale/eo/LC_MESSAGES/tinyboard.po index bc950e31..209a675a 100644 --- a/inc/locale/eo/LC_MESSAGES/tinyboard.po +++ b/inc/locale/eo/LC_MESSAGES/tinyboard.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# copypaste , 2014 # MartenŜadoko , 2014 # Nenia Ulo , 2014 # Vespero , 2014 @@ -11,8 +12,8 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:57+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-07-19 15:11+0000\n" +"Last-Translator: copypaste \n" "Language-Team: Esperanto (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/eo/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2997,12 +2998,12 @@ msgstr "Maleblas konstrui la RecentPosts temo, ĉar ne estas tabuloj por trovi." #: ../../../../inc/config.php:997 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "Vi klopodis alŝuti tro da dosieroj! " #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Cenzuri dosieron" #. line 26 #. line 35 @@ -3011,7 +3012,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 msgid "Bump order" -msgstr "" +msgstr "Altiga ordo" #. line 27 #. line 36 @@ -3020,7 +3021,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "Lasta respondo" #. line 28 #. line 37 @@ -3029,7 +3030,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 msgid "Creation date" -msgstr "" +msgstr "Tago de kreo" #. line 29 #. line 38 @@ -3038,7 +3039,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 msgid "Reply count" -msgstr "" +msgstr "Nombro da respondoj" #. line 30 #. line 39 @@ -3047,58 +3048,58 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 msgid "Random" -msgstr "" +msgstr "Hazarda" #. line 33 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Sort by" -msgstr "" +msgstr "Ordi por" #. line 42 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 msgid "Image size" -msgstr "" +msgstr "Bilda grandeco" #. line 44 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 msgid "Small" -msgstr "" +msgstr "Malgranda" #. line 45 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 msgid "Large" -msgstr "" +msgstr "Granda" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "Identigilo de afiŝo" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "Cela fadeno" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "Forviŝi afiŝojn estas malpermesita!" #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "Nerekonita metodo de dosiergranda mezurado." #: ../../../../post.php:519 msgid "Invalid flag selection!" -msgstr "" +msgstr "Nevalida flaga elekto!" #: ../../../../post.php:631 msgid "exiftool failed!" -msgstr "" +msgstr "exiftool malsukcesis!" #: ../../../../post.php:641 msgid "Could not auto-orient image!" -msgstr "" +msgstr "Malsukcesis aŭtomate turni la bildon!" #: ../../../../post.php:695 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "Malsukcesis forviŝi la EXIFajn datumojn!" From e498a1e7ec3e807a69b65c3470d31f7b2e229902 Mon Sep 17 00:00:00 2001 From: Adverso Date: Fri, 8 Aug 2014 21:45:39 +0200 Subject: [PATCH 14/42] update es_ES locale --- inc/locale/es_ES/LC_MESSAGES/javascript.js | 2 +- inc/locale/es_ES/LC_MESSAGES/javascript.po | 21 +++---- inc/locale/es_ES/LC_MESSAGES/tinyboard.mo | Bin 23254 -> 24542 bytes inc/locale/es_ES/LC_MESSAGES/tinyboard.po | 63 +++++++++++---------- 4 files changed, 44 insertions(+), 42 deletions(-) diff --git a/inc/locale/es_ES/LC_MESSAGES/javascript.js b/inc/locale/es_ES/LC_MESSAGES/javascript.js index 236e84d0..cb518909 100644 --- a/inc/locale/es_ES/LC_MESSAGES/javascript.js +++ b/inc/locale/es_ES/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"Estilo: ","File":"Archivo","hide":"ocultar","show":"mostrar","Show locked threads":"Mostrar hilos bloqueados","Hide locked threads":"Ocultar hilos bloqueados","URL":"URL","Select":"Seleccionar","Remote":"Remoto","Embed":"Incrustar","Oekaki":"Oekaki","hidden":"oculto","Show images":"Mostrar imagenes","Hide images":"Ocultar imagenes","Password":"Contrase\u00f1a","Delete file only":"Eliminar s\u00f3lo archivo","Delete":"Eliminar","Reason":"Raz\u00f3n","Report":"Reportar","Click reply to view.":"Click responder para ver.","Click to expand":"Click para expandir","Hide expanded replies":"Ocultar respuestas expandidas","Brush size":"Tama\u00f1o brush","Set text":"Establecer texto","Clear":"Limpiar","Save":"Guardar","Load":"Cargar","Toggle eraser":"Borrar marca","Get color":"Seleccionar color","Fill":"Llenar","Use oekaki instead of file?":"Usar oekaki en vez del archivo?","Edit in oekaki":"Editar en oekaki","Enter some text":"Pon alg\u00fan texto","Enter font or leave empty":"Pon una fuente o dejalo vac\u00edo","Forced anonymity":"Forzar anonimato","enabled":"activado","disabled":"desactivado","Sun":"Dom","Mon":"Lun","Tue":"Mar","Wed":"Mie","Thu":"Jue","Fri":"Vie","Sat":"S\u00e1","Catalog":"Cat\u00e1logo","Submit":"Enviar","Quick reply":"Respuesta r\u00e1pida","Posting mode: Replying to >>{0}<\/small>":"Respondiendo a >>{0}<\/small>","Return":"Volver","Expand all images":"Expandir todas las im\u00e1genes","Hello!":"Hola!","{0} users":"{0} usuarios","(hide threads from this board)":"(ocultar hilos de este tabl\u00f3n)","(show threads from this board)":"(mostrar hilos de este tabl\u00f3n)","No more threads to display":"No hay m\u00e1s hilos para mostrar","Loading...":"Cargando...","Save as original filename":"Guardar con el nombre original del archivo","Reported post(s).":"Post(s) reportados.","An unknown error occured!":"Ocurri\u00f3 un error desconocido!","Something went wrong... An unknown error occured!":"Algo fue mal... Ocurri\u00f3 un error desconocido!","Working...":"Trabajando...","Posting... (#%)":"Posteando... (#%)","Posted...":"Posteado...","An unknown error occured when posting!":"Ocurri\u00f3 un error desconocido mientras posteabas!","Posting...":"Posteando...","Upload URL":"Subir URL","Spoiler Image":"Imagen Spoiler","Comment":"Comentario","Quick Reply":"Respuesta r\u00e1pida","Stop watching this thread":"Para de ver este hilo","Watch this thread":"Ver este hilo","Unpin this board":"Desmarcar este hilo","Pin this board":"Marcar este hilo","Stop watching this board":"Para de ver este hilo","Watch this board":"Ver este hilo","Click on any image on this site to load it into oekaki applet":"Click en cualquier sitio para cargar el oekaki applet","Sunday":"Domingo","Monday":"Lunes","Tuesday":"Martes","Wednesday":"Mi\u00e9rcoles","Thursday":"Jueves","Friday":"Viernes","Saturday":"S\u00e1bado","January":"Enero","February":"Febrero","March":"Marzo","April":"Abril","May":"Mayo","June":"Junio","July":"Julio","August":"Agosto","September":"Septiembre","October":"Octubre","November":"Noviembre","December":"Diciembre","Jan":"Ene","Feb":"Feb","Mar":"Mar","Apr":"Abr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dic","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Su navegador no soporta a video de HTML5.","[play once]":"[reproducir una vez]","WebM Settings":"Configuraci\u00f3n de WebM"}; \ No newline at end of file +l10n = {"Style: ":"Estilo: ","File":"Archivo","hide":"ocultar","show":"mostrar","Show locked threads":"Mostrar hilos bloqueados","Hide locked threads":"Ocultar hilos bloqueados","URL":"URL","Select":"Seleccionar","Remote":"Remoto","Embed":"Incrustar","Oekaki":"Oekaki","hidden":"oculto","Show images":"Mostrar imagenes","Hide images":"Ocultar imagenes","Password":"Contrase\u00f1a","Delete file only":"Eliminar s\u00f3lo archivo","Delete":"Eliminar","Reason":"Raz\u00f3n","Report":"Reportar","Click reply to view.":"Click responder para ver.","Click to expand":"Click para expandir","Hide expanded replies":"Ocultar respuestas expandidas","Brush size":"Tama\u00f1o brush","Set text":"Establecer texto","Clear":"Limpiar","Save":"Guardar","Load":"Cargar","Toggle eraser":"Borrar marca","Get color":"Seleccionar color","Fill":"Llenar","Use oekaki instead of file?":"Usar oekaki en vez del archivo?","Edit in oekaki":"Editar en oekaki","Enter some text":"Pon alg\u00fan texto","Enter font or leave empty":"Pon una fuente o dejalo vac\u00edo","Forced anonymity":"Forzar anonimato","enabled":"activado","disabled":"desactivado","Sun":"Dom","Mon":"Lun","Tue":"Mar","Wed":"Mie","Thu":"Jue","Fri":"Vie","Sat":"S\u00e1","Catalog":"Cat\u00e1logo","Submit":"Enviar","Quick reply":"Respuesta r\u00e1pida","Posting mode: Replying to >>{0}<\/small>":"Respondiendo a >>{0}<\/small>","Return":"Volver","Expand all images":"Expandir todas las im\u00e1genes","Hello!":"Hola!","{0} users":"{0} usuarios","(hide threads from this board)":"(ocultar hilos de este tabl\u00f3n)","(show threads from this board)":"(mostrar hilos de este tabl\u00f3n)","No more threads to display":"No hay m\u00e1s hilos para mostrar","Loading...":"Cargando...","Save as original filename":"Guardar con el nombre original del archivo","Reported post(s).":"Post(s) reportados.","An unknown error occured!":"Ocurri\u00f3 un error desconocido!","Something went wrong... An unknown error occured!":"Algo fue mal... Ocurri\u00f3 un error desconocido!","Working...":"Trabajando...","Posting... (#%)":"Posteando... (#%)","Posted...":"Posteado...","An unknown error occured when posting!":"Ocurri\u00f3 un error desconocido mientras posteabas!","Posting...":"Posteando...","Upload URL":"Subir URL","Spoiler Image":"Imagen Spoiler","Comment":"Comentario","Quick Reply":"Respuesta r\u00e1pida","Stop watching this thread":"Para de ver este hilo","Watch this thread":"Ver este hilo","Unpin this board":"Desmarcar este hilo","Pin this board":"Marcar este hilo","Stop watching this board":"Para de ver este hilo","Watch this board":"Ver este hilo","Click on any image on this site to load it into oekaki applet":"Click en cualquier sitio para cargar el oekaki applet","Sunday":"Domingo","Monday":"Lunes","Tuesday":"Martes","Wednesday":"Mi\u00e9rcoles","Thursday":"Jueves","Friday":"Viernes","Saturday":"S\u00e1bado","January":"Enero","February":"Febrero","March":"Marzo","April":"Abril","May":"Mayo","June":"Junio","July":"Julio","August":"Agosto","September":"Septiembre","October":"Octubre","November":"Noviembre","December":"Diciembre","Jan":"Ene","Feb":"Feb","Mar":"Mar","Apr":"Abr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Oct","Nov":"Nov","Dec":"Dic","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Su navegador no soporta a video de HTML5.","[play once]":"[reproducir una vez]","[loop]":"[bucle]","WebM Settings":"Configuraci\u00f3n de WebM","Expand videos inline":"Expandir videos insertos","Play videos on hover":"Reproducir videos en modo flotante","Default volume":"Volumen predeterminado","Tree view":"Vista tipo \u00e1rbol","Shrink all images":"Encoger todas las im\u00e1genes","Animate GIFs":"Animar GIFs","Unanimate GIFs":"No animar GIFs"}; \ No newline at end of file diff --git a/inc/locale/es_ES/LC_MESSAGES/javascript.po b/inc/locale/es_ES/LC_MESSAGES/javascript.po index 58f98a8a..b2517763 100644 --- a/inc/locale/es_ES/LC_MESSAGES/javascript.po +++ b/inc/locale/es_ES/LC_MESSAGES/javascript.po @@ -4,13 +4,14 @@ # # Translators: # copypaste , 2014 +# Adverso , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:56+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-07-13 23:11+0000\n" +"Last-Translator: Adverso \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -556,7 +557,7 @@ msgstr "[reproducir una vez]" #: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 #: ../../../../js/expand-video.js:194 msgid "[loop]" -msgstr "" +msgstr "[bucle]" #: ../../../../js/webm-settings.js:42 msgid "WebM Settings" @@ -564,28 +565,28 @@ msgstr "Configuración de WebM" #: ../../../../js/webm-settings.js:44 msgid "Expand videos inline" -msgstr "" +msgstr "Expandir videos insertos" #: ../../../../js/webm-settings.js:45 msgid "Play videos on hover" -msgstr "" +msgstr "Reproducir videos en modo flotante" #: ../../../../js/webm-settings.js:46 msgid "Default volume" -msgstr "" +msgstr "Volumen predeterminado" #: ../../../../js/treeview.js:18 msgid "Tree view" -msgstr "" +msgstr "Vista tipo árbol" #: ../../../../js/expand-all-images.js:32 msgid "Shrink all images" -msgstr "" +msgstr "Encoger todas las imágenes" #: ../../../../js/no-animated-gif.js:33 msgid "Animate GIFs" -msgstr "" +msgstr "Animar GIFs" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 msgid "Unanimate GIFs" -msgstr "" +msgstr "No animar GIFs" diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo index a678c1aafb6b38ff2bb64984b7c4ff675acc3f4c..a7f901ecbb4c0d8dd2a47af7471a505b843472c2 100644 GIT binary patch delta 8545 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 diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po index 5134e6ec..122c1360 100644 --- a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po +++ b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po @@ -4,14 +4,15 @@ # # Translators: # copypaste , 2014 +# Adverso , 2014 # mgaj , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:57+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-07-13 23:32+0000\n" +"Last-Translator: Adverso \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -169,7 +170,7 @@ msgstr "Ban" #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 #: ../../../../templates/cache/59/eb/57ea544c6cb07c523441e4872c03216560589e8425c0df3a895c17253c4c.php:74 msgid "Ban & Delete" -msgstr "Ban & Eleminar" +msgstr "Ban & eliminar" #. line 4 #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 @@ -186,7 +187,7 @@ msgstr "Eliminar archivo" #: ../../../../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 seguro de eliminar este archivo?" +msgstr "¿Estás seguro de eliminar este archivo?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 @@ -201,13 +202,13 @@ msgstr "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 "Estás seguro de marcar como spoiler este archivo?" +msgstr "¿Estás seguro de marcar como spoiler 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 "Mover respuesta a otro tablón" +msgstr "Mover respuesta a otro foro" #: ../../../../inc/display.php:388 ../../../../inc/display.php:512 #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 @@ -235,7 +236,7 @@ msgstr "Eliminar" #: ../../../../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 seguro de eliminar esto?" +msgstr "¿Estás seguro de eliminar esto?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 #: ../../../../inc/display.php:490 ../../../../inc/display.php:494 @@ -247,7 +248,7 @@ msgstr "Eliminar todos los posts por 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 "Estás seguro de querer eliminar todos los posts por esta dirección IP?" +msgstr "¿Estás seguro de querer eliminar todos los posts de esta dirección IP?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 #: ../../../../inc/display.php:494 ../../../../inc/display.php:498 @@ -261,7 +262,7 @@ msgstr "Eliminar todos los posts por IP en todos los tablones" msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" -msgstr "Estás seguro de eliminar todos los posts de esta dirección IP, en todos los tablones?" +msgstr "¿Estás seguro que quieres eliminar todos los posts de esta dirección IP, en todos los foros?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 #: ../../../../inc/display.php:515 ../../../../inc/display.php:519 @@ -364,14 +365,14 @@ msgstr "Lurkea algo más antes de postear." #: ../../../../inc/config.php:967 ../../../../inc/config.php:983 #: ../../../../inc/config.php:991 msgid "You look like a bot." -msgstr "Pareces un bot." +msgstr "Pareces un bot, chico rudo de internet." #: ../../../../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 msgid "Your browser sent an invalid or no HTTP referer." -msgstr "Tu navegador envió o no una referencia no HTTP." +msgstr "Tu navegador no envió una referencia, o ésta fue inválida." #: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967 @@ -477,7 +478,7 @@ msgstr "Tu respuesta parece automática; Post descartado." #: ../../../../inc/config.php:983 ../../../../inc/config.php:999 #: ../../../../inc/config.php:1008 msgid "Unoriginal content!" -msgstr "Contenido poco original!" +msgstr "Contenido no original!" #: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982 @@ -2996,12 +2997,12 @@ msgstr "No se puede generar el tema de RecentPosts; no hay ningún tablón para #: ../../../../inc/config.php:997 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "¡Has intentado subir demasiadas imágenes!" #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Archivo spoiler" #. line 26 #. line 35 @@ -3010,7 +3011,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 msgid "Bump order" -msgstr "" +msgstr "Orden de reposicionamiento en primer lugar de publicaciones." #. line 27 #. line 36 @@ -3019,7 +3020,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "Última respuesta" #. line 28 #. line 37 @@ -3028,7 +3029,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 msgid "Creation date" -msgstr "" +msgstr "Fecha de creación" #. line 29 #. line 38 @@ -3037,7 +3038,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 msgid "Reply count" -msgstr "" +msgstr "Número de respuestas" #. line 30 #. line 39 @@ -3046,58 +3047,58 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 msgid "Random" -msgstr "" +msgstr "Azar" #. line 33 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Sort by" -msgstr "" +msgstr "Ordenar por" #. line 42 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 msgid "Image size" -msgstr "" +msgstr "Tamaño de imagen" #. line 44 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 msgid "Small" -msgstr "" +msgstr "Pequeño" #. line 45 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 msgid "Large" -msgstr "" +msgstr "Grande" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "Publicar ID" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "Hilo de destino" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "No tiene permitido borrar posts!" #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "Metodo de reconocimiento de archivo no determinado" #: ../../../../post.php:519 msgid "Invalid flag selection!" -msgstr "" +msgstr "¡Marca de selección inválida!" #: ../../../../post.php:631 msgid "exiftool failed!" -msgstr "" +msgstr "¡La herramienta EXIF ha fallado!" #: ../../../../post.php:641 msgid "Could not auto-orient image!" -msgstr "" +msgstr "No se pudo orientar automaticamente la imagen." #: ../../../../post.php:695 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "No se pudieron eliminar los metadatos EXIF" From 3977fd4fadbf5ffa2c9ca3cb1f40af058e29572f Mon Sep 17 00:00:00 2001 From: cicus Date: Fri, 8 Aug 2014 21:46:35 +0200 Subject: [PATCH 15/42] update hu_HU locale --- inc/locale/hu_HU/LC_MESSAGES/javascript.js | 2 +- inc/locale/hu_HU/LC_MESSAGES/javascript.po | 10 ++--- inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo | Bin 24312 -> 25480 bytes inc/locale/hu_HU/LC_MESSAGES/tinyboard.po | 42 ++++++++++----------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/inc/locale/hu_HU/LC_MESSAGES/javascript.js b/inc/locale/hu_HU/LC_MESSAGES/javascript.js index b51de016..7c9cb698 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"}; \ No newline at end of file +l10n = {"Style: ":"St\u00edlus:","File":"F\u00e1jl","hide":"elrejt","show":"mutat","Show locked threads":"Mutassa a lez\u00e1rt sz\u00e1lakat","Hide locked threads":"Rejtse el a lez\u00e1rt sz\u00e1lakat","URL":"URL","Select":"Kiv\u00e1laszt","Remote":"K\u00fcls\u0151 link","Embed":"Be\u00e1gyaz","Oekaki":"Saj\u00e1t rajz","hidden":"rejtett","Show images":"Mutassa a k\u00e9peket","Hide images":"Rejtse el a k\u00e9peket","Password":"Jelsz\u00f3","Delete file only":"Csak a f\u00e1jlt t\u00f6r\u00f6lje","Delete":"T\u00f6rl\u00e9s","Reason":"Ok","Report":"Jelent","Click reply to view.":"Kattints a v\u00e1laszra a megjelen\u00edt\u00e9shez","Click to expand":"Kattints a nagyobb m\u00e9rethez","Hide expanded replies":"Rejtse el a nagy m\u00e9ret\u0171 v\u00e1laszokat","Brush size":"Ecsetm\u00e9ret","Set text":"Sz\u00f6veg megad\u00e1sa","Clear":"T\u00f6r\u00f6l","Save":"Ment\u00e9s","Load":"Bet\u00f6lt\u00e9s","Toggle eraser":"Rad\u00edrt kapcsol","Get color":"Sz\u00ednt kiv\u00e1laszt","Fill":"KIt\u00f6lt","Use oekaki instead of file?":"Szeretn\u00e9d a rajzodat haszn\u00e1lni f\u00e1jl helyett?","Edit in oekaki":"A rajzod szerkeszt\u00e9se","Enter some text":"\u00cdrj be sz\u00f6veget","Enter font or leave empty":"Adj meg bet\u0171t\u00edpust, vagy hagyd \u00fcresen","Forced anonymity":"Er\u0151ltetett anonimit\u00e1s","enabled":"enged\u00e9lyezett","disabled":"tiltott","Sun":"Va","Mon":"H\u00e9","Tue":"Ke","Wed":"Sze","Thu":"Cs\u00fc","Fri":"P\u00e9","Sat":"Szo","Catalog":"Katal\u00f3gus","Submit":"Elk\u00fcld","Quick reply":"Gyors v\u00e1lasz","Posting mode: Replying to >>{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 diff --git a/inc/locale/hu_HU/LC_MESSAGES/javascript.po b/inc/locale/hu_HU/LC_MESSAGES/javascript.po index 3bf0a055..5c0e3b46 100644 --- a/inc/locale/hu_HU/LC_MESSAGES/javascript.po +++ b/inc/locale/hu_HU/LC_MESSAGES/javascript.po @@ -10,8 +10,8 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:56+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-08-04 16:42+0000\n" +"Last-Translator: cicus\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -581,12 +581,12 @@ msgstr "Fa nézet" #: ../../../../js/expand-all-images.js:32 msgid "Shrink all images" -msgstr "" +msgstr "Összes kép eredeti méretűre" #: ../../../../js/no-animated-gif.js:33 msgid "Animate GIFs" -msgstr "" +msgstr "GIF-ek lejátszása" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 msgid "Unanimate GIFs" -msgstr "" +msgstr "Animált GIF-ek leállítása" diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo index 70764a7b76c23c418398f1c14d081d0e3624c28d..748b392f142ceb13167168a1ee5482da2198b9ab 100644 GIT binary patch delta 8250 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 F{{nxhOius+ delta 7161 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\n" +"PO-Revision-Date: 2014-08-04 16:55+0000\n" +"Last-Translator: cicus\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2996,12 +2996,12 @@ msgstr "Nem sikerült a RecentPosts téma létrehozása, mert nem találhatók f #: ../../../../inc/config.php:997 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "Túl sok képet próbáltál feltölteni!" #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Spoiler fájl" #. line 26 #. line 35 @@ -3010,7 +3010,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 msgid "Bump order" -msgstr "" +msgstr "Bump sorrend" #. line 27 #. line 36 @@ -3019,7 +3019,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "Utolsó hozzászólás" #. line 28 #. line 37 @@ -3028,7 +3028,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 msgid "Creation date" -msgstr "" +msgstr "Készítés dátuma" #. line 29 #. line 38 @@ -3037,7 +3037,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 msgid "Reply count" -msgstr "" +msgstr "Válaszok száma" #. line 30 #. line 39 @@ -3046,58 +3046,58 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 msgid "Random" -msgstr "" +msgstr "Véletlenszerű" #. line 33 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Sort by" -msgstr "" +msgstr "Rendezés eszerint:" #. line 42 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 msgid "Image size" -msgstr "" +msgstr "Kép mérete" #. line 44 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 msgid "Small" -msgstr "" +msgstr "Kicsi" #. line 45 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 msgid "Large" -msgstr "" +msgstr "Nagy" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "Hozzászólás ID" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "Cél szál" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "Hozzászólás törlése nem engedélyezett!" #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "Ismeretlen fájl méret meghatározás." #: ../../../../post.php:519 msgid "Invalid flag selection!" -msgstr "" +msgstr "Érvénytelen flag lett kiválasztva!" #: ../../../../post.php:631 msgid "exiftool failed!" -msgstr "" +msgstr "exiftool failed!" #: ../../../../post.php:641 msgid "Could not auto-orient image!" -msgstr "" +msgstr "A képet nem lehetett automatikusan tájolni!" #: ../../../../post.php:695 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "EXIF metaadatok eltávolítása sikertelen!" From da6b25cd6b5f5ed34b3c9dde3f43c34d80112176 Mon Sep 17 00:00:00 2001 From: dubcheck Date: Fri, 8 Aug 2014 21:47:10 +0200 Subject: [PATCH 16/42] update sk_SK locale --- inc/locale/sk_SK/LC_MESSAGES/javascript.js | 2 +- inc/locale/sk_SK/LC_MESSAGES/javascript.po | 10 ++--- inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo | Bin 24101 -> 25274 bytes inc/locale/sk_SK/LC_MESSAGES/tinyboard.po | 42 ++++++++++----------- 4 files changed, 27 insertions(+), 27 deletions(-) diff --git a/inc/locale/sk_SK/LC_MESSAGES/javascript.js b/inc/locale/sk_SK/LC_MESSAGES/javascript.js index 32372761..4967a841 100644 --- a/inc/locale/sk_SK/LC_MESSAGES/javascript.js +++ b/inc/locale/sk_SK/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"\u0160t\u00fdl:","File":"S\u00fabor","hide":"skry\u0165","show":"uk\u00e1za\u0165","Show locked threads":"Zobrazi\u0165 zamknut\u00e9 vl\u00e1kna","Hide locked threads":"Skry\u0165 zamknut\u00e9 vl\u00e1kna","URL":"Adresa","Select":"Vybra\u0165","Remote":"Vzdialen\u00fd","Embed":"Vlo\u017ei\u0165","Oekaki":"Oekaki","hidden":"skryt\u00fd","Show images":"Zobrazi\u0165 obr\u00e1zky","Hide images":"Skry\u0165 obr\u00e1zky","Password":"Heslo","Delete file only":"Odstr\u00e1ni\u0165 iba s\u00fabor","Delete":"Odstr\u00e1ni\u0165","Reason":"D\u00f4vod","Report":"Nahl\u00e1si\u0165","Click reply to view.":"Klikni na Odpove\u010f pre ich zobrazenie.","Click to expand":"Klikni sem pre zobrazenie","Hide expanded replies":"Skry\u0165 zobrazen\u00e9 odpovede","Brush size":"Ve\u013ekos\u0165 \u0161tetca","Set text":"Nastavi\u0165 text","Clear":"Vy\u010disti\u0165","Save":"Ulo\u017ei\u0165","Load":"Na\u010d\u00edta\u0165","Toggle eraser":"Zmeni\u0165 gumu","Get color":"Vybra\u0165 farbu","Fill":"Vyplni\u0165","Use oekaki instead of file?":"Pou\u017ei\u0165 miesto s\u00faboru oekaki?","Edit in oekaki":"Upravi\u0165 v oekaki","Enter some text":"Nap\u00ed\u0161 nejak\u00fd text","Enter font or leave empty":"Vlo\u017e p\u00edsmo alebo nechaj pr\u00e1zdne","Forced anonymity":"Vyn\u00faten\u00e1 anonymita","enabled":"zapnut\u00e1","disabled":"vypnut\u00e1","Sun":"Ne","Mon":"Po","Tue":"Ut","Wed":"St","Thu":"\u0160t","Fri":"Pi","Sat":"So","Catalog":"Katal\u00f3g","Submit":"Odosla\u0165","Quick reply":"R\u00fdchla odpove\u010f","Posting mode: Replying to >>{0}<\/small>":"Re\u017eim prispievania: Odpove\u010f na >>{0}<\/small>","Return":"N\u00e1vrat","Expand all images":"Otvori\u0165 v\u0161etky obr\u00e1zky","Hello!":"Ahoj!","{0} users":"{0} u\u017e\u00edvate\u013eov","(hide threads from this board)":"(skry\u0165 vl\u00e1kna z tejto dosky)","(show threads from this board)":"(zobrazi\u0165 vl\u00e1kna z tejto dosky)","No more threads to display":"\u017diadne \u010fal\u0161ie vl\u00e1kna na zobrazenie","Loading...":"Na\u010d\u00edtanie...","Save as original filename":"Ulo\u017ei\u0165 s p\u00f4vodn\u00fdm n\u00e1zvom","Reported post(s).":"Pr\u00edspevok nahl\u00e1sen\u00fd.","An unknown error occured!":"Nastala nezn\u00e1ma chyba!","Something went wrong... An unknown error occured!":"Stalo sa nie\u010do zl\u00e9... Nastala nezn\u00e1ma chyba!","Working...":"Pracujem...","Posting... (#%)":"Odosielam... (#%)","Posted...":"Odoslan\u00e9...","An unknown error occured when posting!":"Pri odosielan\u00ed nastala nezn\u00e1ma chyba!","Posting...":"Odosielam...","Upload URL":"Adresa s\u00faboru","Spoiler Image":"Skryt\u00fd obr\u00e1zok","Comment":"Koment\u00e1r","Quick Reply":"R\u00fdchla odpove\u010f","Stop watching this thread":"Zastavi\u0165 sledovanie tohto vl\u00e1kna","Watch this thread":"Sledova\u0165 toto vl\u00e1kno","Unpin this board":"Odopn\u00fa\u0165 t\u00fato dosku","Pin this board":"Pripn\u00fa\u0165 t\u00fato dosku","Stop watching this board":"Zastavi\u0165 sledovanie tejto dosky","Watch this board":"Sledova\u0165 t\u00fato dosku","Click on any image on this site to load it into oekaki applet":"Klikni na ak\u00fdko\u013evek obr\u00e1zok na tejto str\u00e1nke pre jeho na\u010d\u00edtanie do Oekaki","Sunday":"Nede\u013ea","Monday":"Pondelok","Tuesday":"Utorok","Wednesday":"Streda","Thursday":"\u0160tvrtok","Friday":"Piatok","Saturday":"Sobota","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"Marec","April":"Apr\u00edl","May":"M\u00e1j","June":"J\u00fan","July":"J\u00fal","August":"August","September":"September","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"J\u00fan","Jul":"J\u00fal","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"Doobeda","PM":"Poobede","am":"doobeda","pm":"poobede","Your browser does not support HTML5 video.":"Tvoj prehliada\u010d nepodporuje HTML5 vide\u00e1.","[play once]":"[hra\u0165 raz]","[loop]":"[slu\u010dka]","WebM Settings":"Nastavenia WebM","Expand videos inline":"Otvori\u0165 vide\u00e1 v riadku","Play videos on hover":"Spusti\u0165 vide\u00e1 pri uk\u00e1zan\u00ed na ne","Default volume":"P\u00f4vodn\u00e1 hlasitos\u0165","Tree view":"Zobrazi\u0165 ako strom"}; \ No newline at end of file +l10n = {"Style: ":"\u0160t\u00fdl:","File":"S\u00fabor","hide":"skry\u0165","show":"uk\u00e1za\u0165","Show locked threads":"Zobrazi\u0165 zamknut\u00e9 vl\u00e1kna","Hide locked threads":"Skry\u0165 zamknut\u00e9 vl\u00e1kna","URL":"Adresa","Select":"Vybra\u0165","Remote":"Vzdialen\u00fd","Embed":"Vlo\u017ei\u0165","Oekaki":"Oekaki","hidden":"skryt\u00fd","Show images":"Zobrazi\u0165 obr\u00e1zky","Hide images":"Skry\u0165 obr\u00e1zky","Password":"Heslo","Delete file only":"Odstr\u00e1ni\u0165 iba s\u00fabor","Delete":"Odstr\u00e1ni\u0165","Reason":"D\u00f4vod","Report":"Nahl\u00e1si\u0165","Click reply to view.":"Klikni na Odpove\u010f pre ich zobrazenie.","Click to expand":"Klikni sem pre zobrazenie","Hide expanded replies":"Skry\u0165 zobrazen\u00e9 odpovede","Brush size":"Ve\u013ekos\u0165 \u0161tetca","Set text":"Nastavi\u0165 text","Clear":"Vy\u010disti\u0165","Save":"Ulo\u017ei\u0165","Load":"Na\u010d\u00edta\u0165","Toggle eraser":"Zmeni\u0165 gumu","Get color":"Vybra\u0165 farbu","Fill":"Vyplni\u0165","Use oekaki instead of file?":"Pou\u017ei\u0165 miesto s\u00faboru oekaki?","Edit in oekaki":"Upravi\u0165 v oekaki","Enter some text":"Nap\u00ed\u0161 nejak\u00fd text","Enter font or leave empty":"Vlo\u017e p\u00edsmo alebo nechaj pr\u00e1zdne","Forced anonymity":"Vyn\u00faten\u00e1 anonymita","enabled":"zapnut\u00e1","disabled":"vypnut\u00e1","Sun":"Ne","Mon":"Po","Tue":"Ut","Wed":"St","Thu":"\u0160t","Fri":"Pi","Sat":"So","Catalog":"Katal\u00f3g","Submit":"Odosla\u0165","Quick reply":"R\u00fdchla odpove\u010f","Posting mode: Replying to >>{0}<\/small>":"Re\u017eim prispievania: Odpove\u010f na >>{0}<\/small>","Return":"N\u00e1vrat","Expand all images":"Otvori\u0165 v\u0161etky obr\u00e1zky","Hello!":"Ahoj!","{0} users":"{0} u\u017e\u00edvate\u013eov","(hide threads from this board)":"(skry\u0165 vl\u00e1kna z tejto dosky)","(show threads from this board)":"(zobrazi\u0165 vl\u00e1kna z tejto dosky)","No more threads to display":"\u017diadne \u010fal\u0161ie vl\u00e1kna na zobrazenie","Loading...":"Na\u010d\u00edtanie...","Save as original filename":"Ulo\u017ei\u0165 s p\u00f4vodn\u00fdm n\u00e1zvom","Reported post(s).":"Pr\u00edspevok nahl\u00e1sen\u00fd.","An unknown error occured!":"Nastala nezn\u00e1ma chyba!","Something went wrong... An unknown error occured!":"Stalo sa nie\u010do zl\u00e9... Nastala nezn\u00e1ma chyba!","Working...":"Pracujem...","Posting... (#%)":"Odosielam... (#%)","Posted...":"Odoslan\u00e9...","An unknown error occured when posting!":"Pri odosielan\u00ed nastala nezn\u00e1ma chyba!","Posting...":"Odosielam...","Upload URL":"Adresa s\u00faboru","Spoiler Image":"Skryt\u00fd obr\u00e1zok","Comment":"Koment\u00e1r","Quick Reply":"R\u00fdchla odpove\u010f","Stop watching this thread":"Zastavi\u0165 sledovanie tohto vl\u00e1kna","Watch this thread":"Sledova\u0165 toto vl\u00e1kno","Unpin this board":"Odopn\u00fa\u0165 t\u00fato dosku","Pin this board":"Pripn\u00fa\u0165 t\u00fato dosku","Stop watching this board":"Zastavi\u0165 sledovanie tejto dosky","Watch this board":"Sledova\u0165 t\u00fato dosku","Click on any image on this site to load it into oekaki applet":"Klikni na ak\u00fdko\u013evek obr\u00e1zok na tejto str\u00e1nke pre jeho na\u010d\u00edtanie do Oekaki","Sunday":"Nede\u013ea","Monday":"Pondelok","Tuesday":"Utorok","Wednesday":"Streda","Thursday":"\u0160tvrtok","Friday":"Piatok","Saturday":"Sobota","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"Marec","April":"Apr\u00edl","May":"M\u00e1j","June":"J\u00fan","July":"J\u00fal","August":"August","September":"September","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"J\u00fan","Jul":"J\u00fal","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"Doobeda","PM":"Poobede","am":"doobeda","pm":"poobede","Your browser does not support HTML5 video.":"Tvoj prehliada\u010d nepodporuje HTML5 vide\u00e1.","[play once]":"[hra\u0165 raz]","[loop]":"[slu\u010dka]","WebM Settings":"Nastavenia WebM","Expand videos inline":"Otvori\u0165 vide\u00e1 v riadku","Play videos on hover":"Spusti\u0165 vide\u00e1 pri uk\u00e1zan\u00ed na ne","Default volume":"P\u00f4vodn\u00e1 hlasitos\u0165","Tree view":"Zobrazi\u0165 ako strom","Shrink all images":"Zmen\u0161i\u0165 v\u0161etky obr\u00e1zky","Animate GIFs":"Animova\u0165 GIFy","Unanimate GIFs":"Neanimova\u0165 GIFy"}; \ No newline at end of file diff --git a/inc/locale/sk_SK/LC_MESSAGES/javascript.po b/inc/locale/sk_SK/LC_MESSAGES/javascript.po index 5a3af5fb..ad3f167a 100644 --- a/inc/locale/sk_SK/LC_MESSAGES/javascript.po +++ b/inc/locale/sk_SK/LC_MESSAGES/javascript.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:56+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-06-21 19:19+0000\n" +"Last-Translator: dubcheck \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -580,12 +580,12 @@ msgstr "Zobraziť ako strom" #: ../../../../js/expand-all-images.js:32 msgid "Shrink all images" -msgstr "" +msgstr "Zmenšiť všetky obrázky" #: ../../../../js/no-animated-gif.js:33 msgid "Animate GIFs" -msgstr "" +msgstr "Animovať GIFy" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 msgid "Unanimate GIFs" -msgstr "" +msgstr "Neanimovať GIFy" diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo index 124a16d64963ab6d7fccffb26700a3c66d2b7b19..491edfb0b218267cf9076f7af05d7e3feef858a1 100644 GIT binary patch delta 8272 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\n" +"PO-Revision-Date: 2014-06-21 19:54+0000\n" +"Last-Translator: dubcheck \n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -3006,12 +3006,12 @@ msgstr "Nieje možné zostaviť tému RecentPosts pretože neexistujú žiadne d #: ../../../../inc/config.php:997 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "Pokúsil si sa odoslať priveľa súborov!" #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Skrytý súbor" #. line 26 #. line 35 @@ -3020,7 +3020,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 msgid "Bump order" -msgstr "" +msgstr "Čerstvosti" #. line 27 #. line 36 @@ -3029,7 +3029,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "Poslednej odpovede" #. line 28 #. line 37 @@ -3038,7 +3038,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 msgid "Creation date" -msgstr "" +msgstr "Dátumu vytvorenia" #. line 29 #. line 38 @@ -3047,7 +3047,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 msgid "Reply count" -msgstr "" +msgstr "Počtu odpovedí" #. line 30 #. line 39 @@ -3056,58 +3056,58 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 msgid "Random" -msgstr "" +msgstr "Náhody" #. line 33 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Sort by" -msgstr "" +msgstr "Zoradiť podľa" #. line 42 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 msgid "Image size" -msgstr "" +msgstr "Veľkosť obrázkov" #. line 44 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 msgid "Small" -msgstr "" +msgstr "Malá" #. line 45 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 msgid "Large" -msgstr "" +msgstr "Veľká" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "ID príspevku" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "Cieľové vlákno" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "Mazanie príspevku nie je povolené!" #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "Neznámy spôsob získania veľkosti súboru." #: ../../../../post.php:519 msgid "Invalid flag selection!" -msgstr "" +msgstr "Vybral si neplatnú vlajku!" #: ../../../../post.php:631 msgid "exiftool failed!" -msgstr "" +msgstr "exiftool zlyhal!" #: ../../../../post.php:641 msgid "Could not auto-orient image!" -msgstr "" +msgstr "Nebolo možné automaticky otočiť obrázok!" #: ../../../../post.php:695 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "Nebolo možné odstrániť EXIF metadáta!" From 89229cdb201be85d19c46d96edccfc8270b17637 Mon Sep 17 00:00:00 2001 From: Alrahambra Date: Fri, 8 Aug 2014 21:48:02 +0200 Subject: [PATCH 17/42] update fi_FI locale --- inc/locale/fi_FI/LC_MESSAGES/javascript.js | 2 +- inc/locale/fi_FI/LC_MESSAGES/javascript.po | 12 +- inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo | Bin 9188 -> 24129 bytes inc/locale/fi_FI/LC_MESSAGES/tinyboard.po | 452 ++++++++++----------- 4 files changed, 233 insertions(+), 233 deletions(-) diff --git a/inc/locale/fi_FI/LC_MESSAGES/javascript.js b/inc/locale/fi_FI/LC_MESSAGES/javascript.js index ba166796..5d298997 100644 --- a/inc/locale/fi_FI/LC_MESSAGES/javascript.js +++ b/inc/locale/fi_FI/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"Tyyli:","File":"Tiedosto","hide":"piilota","show":"n\u00e4yt\u00e4","Show locked threads":"N\u00e4yt\u00e4 lukitut langat","Hide locked threads":"Piilota lukitut langat","URL":"URL","Select":"Valitse","Remote":"Et\u00e4","Embed":"Upote","Oekaki":"Oekaki","hidden":"piilotettu","Show images":"N\u00e4yt\u00e4 kuvat","Hide images":"Piiloita kuvat","Password":"Salasana","Delete file only":"Poista vain tiedosto","Delete":"Poista","Reason":"Syy","Report":"Raportoi","Click reply to view.":"Paina vastaa n\u00e4ytt\u00e4\u00e4ksesi.","Click to expand":"Paina laajentaaksesi","Hide expanded replies":"Piiloita laajennetut vastaukset","Brush size":"Sudin koko","Set text":"Aseta teksti\u00e4","Clear":"Pyyhi","Save":"Tallenna","Load":"Lataa","Toggle eraser":"K\u00e4yt\u00e4 kumia","Get color":"Poimi v\u00e4ri","Fill":"T\u00e4yt\u00e4","Use oekaki instead of file?":"K\u00e4yt\u00e4 oekakia tekstin sijasta?","Edit in oekaki":"Muokkaa oekakissa","Enter some text":"Kirjoita teksti\u00e4","Enter font or leave empty":"Anna fontti tai j\u00e4t\u00e4 tyhj\u00e4ksi","Forced anonymity":"Pakotettu anonyymiys","enabled":"k\u00e4yt\u00f6ss\u00e4","disabled":"ei k\u00e4yt\u00f6ss\u00e4","Sun":"Sun","Mon":"Maa","Tue":"Tii","Wed":"Kes","Thu":"Tor","Fri":"Per","Sat":"Lau","Catalog":"Katalogi","Submit":"L\u00e4het\u00e4","Quick reply":"Pikavastaus","Posting mode: Replying to >>{0}<\/small>":"Vastaustila: Vastataan >>{0}<\/small>","Return":"Palaa","Expand all images":"Laajenna kaikki kuvat","Hello!":"Hei!","{0} users":"{0} k\u00e4ytt\u00e4j\u00e4\u00e4","(hide threads from this board)":"(piiloita langat t\u00e4lt\u00e4 laudalta)","(show threads from this board)":"(n\u00e4yt\u00e4 langat t\u00e4lt\u00e4 laudalta)","No more threads to display":"Ei enemp\u00e4\u00e4 lankoja n\u00e4ytett\u00e4v\u00e4ksi","Loading...":"Lataa...","Save as original filename":"Tallenna alkuper\u00e4isell\u00e4 nimell\u00e4","Reported post(s).":"Raportoitua viesti(\u00e4)","An unknown error occured!":"Tuntematon virhe tapahtui!","Something went wrong... An unknown error occured!":"Jokin meni pieleen...Tuntematon virhe tapahtui!","Working...":"Suoritan...","Posting... (#%)":"Postataan... (#%)","Posted...":"Postattu...","An unknown error occured when posting!":"Tuntematon virhe tapahtui postatessa!","Posting...":"Postataan...","Upload URL":"Ladattavan URL","Spoiler Image":"Piilokuva","Comment":"Viesti","Quick Reply":"Pikavastaus","Stop watching this thread":"Lopeta t\u00e4m\u00e4n langan seuraaminen","Watch this thread":"Seuraa t\u00e4t\u00e4 lankaa","Unpin this board":"Poista t\u00e4m\u00e4n laudan nastoitus","Pin this board":"Nastoita t\u00e4m\u00e4 lauta","Stop watching this board":"Lopeta laudan seuraaminen","Watch this board":"Seuraa t\u00e4t\u00e4 lautaa","Click on any image on this site to load it into oekaki applet":"Paina mit\u00e4 tahansa kuvaa t\u00e4ll\u00e4 sivulla ladataksesi sen oekaki ohjelmaan","Sunday":"Sunnuntai","Monday":"Maanantai","Tuesday":"Tiistai","Wednesday":"Keskiviikko","Thursday":"Torstai","Friday":"Perjantai","Saturday":"Lauantai","January":"Tammikuu","February":"Helmikuu","March":"Maaliskuu","April":"Huhtikuu","May":"Toukokuu","June":"Kes\u00e4kuu","July":"Hein\u00e4kuu","August":"Elokuu","September":"Syyskuu","October":"Lokakuu","November":"Marraskuu","December":"Joulukuu","Jan":"Tammi","Feb":"Helmi","Mar":"Maalis","Apr":"Huhti","Jun":"Kes\u00e4","Jul":"Hein\u00e4","Aug":"Elo","Sep":"Syys","Oct":"Loka","Nov":"Marras","Dec":"JoulunJoulu","AM":"AP","PM":"IP","am":"ap","pm":"ip","Your browser does not support HTML5 video.":"Selaimesi ei tue HTML5 videota.","[play once]":"[toista kerran]","[loop]":"[silmukka]","WebM Settings":"WebM-asetukset","Expand videos inline":"Laajenna videot sivun sis\u00e4ll\u00e4","Play videos on hover":"Toista videot hoveroitaessa","Default volume":"Oletus volyymi","Tree view":"Puun\u00e4kym\u00e4"}; \ No newline at end of file +l10n = {"Style: ":"Tyyli:","File":"Tiedosto","hide":"piilota","show":"n\u00e4yt\u00e4","Show locked threads":"N\u00e4yt\u00e4 lukitut langat","Hide locked threads":"Piilota lukitut langat","URL":"URL","Select":"Valitse","Remote":"Et\u00e4","Embed":"Upote","Oekaki":"Oekaki","hidden":"piilotettu","Show images":"N\u00e4yt\u00e4 kuvat","Hide images":"Piiloita kuvat","Password":"Salasana","Delete file only":"Poista vain tiedosto","Delete":"Poista","Reason":"Syy","Report":"Raportoi","Click reply to view.":"Paina vastaa n\u00e4ytt\u00e4\u00e4ksesi.","Click to expand":"Paina laajentaaksesi","Hide expanded replies":"Piiloita laajennetut vastaukset","Brush size":"Sudin koko","Set text":"Aseta teksti\u00e4","Clear":"Pyyhi","Save":"Tallenna","Load":"Lataa","Toggle eraser":"K\u00e4yt\u00e4 kumia","Get color":"Poimi v\u00e4ri","Fill":"T\u00e4yt\u00e4","Use oekaki instead of file?":"K\u00e4yt\u00e4 oekakia tekstin sijasta?","Edit in oekaki":"Muokkaa oekakissa","Enter some text":"Kirjoita teksti\u00e4","Enter font or leave empty":"Anna fontti tai j\u00e4t\u00e4 tyhj\u00e4ksi","Forced anonymity":"Pakotettu anonyymiys","enabled":"k\u00e4yt\u00f6ss\u00e4","disabled":"ei k\u00e4yt\u00f6ss\u00e4","Sun":"Sun","Mon":"Maa","Tue":"Tii","Wed":"Kes","Thu":"Tor","Fri":"Per","Sat":"Lau","Catalog":"Katalogi","Submit":"L\u00e4het\u00e4","Quick reply":"Pikavastaus","Posting mode: Replying to >>{0}<\/small>":"Vastaustila: Vastataan >>{0}<\/small>","Return":"Palaa","Expand all images":"Laajenna kaikki kuvat","Hello!":"Hei!","{0} users":"{0} k\u00e4ytt\u00e4j\u00e4\u00e4","(hide threads from this board)":"(piiloita langat t\u00e4lt\u00e4 laudalta)","(show threads from this board)":"(n\u00e4yt\u00e4 langat t\u00e4lt\u00e4 laudalta)","No more threads to display":"Ei enemp\u00e4\u00e4 lankoja n\u00e4ytett\u00e4v\u00e4ksi","Loading...":"Lataa...","Save as original filename":"Tallenna alkuper\u00e4isell\u00e4 nimell\u00e4","Reported post(s).":"Raportoitua viesti(\u00e4)","An unknown error occured!":"Tuntematon virhe tapahtui!","Something went wrong... An unknown error occured!":"Jokin meni pieleen...Tuntematon virhe tapahtui!","Working...":"Suoritan...","Posting... (#%)":"Postataan... (#%)","Posted...":"Postattu...","An unknown error occured when posting!":"Tuntematon virhe tapahtui postatessa!","Posting...":"Postataan...","Upload URL":"Ladattavan URL","Spoiler Image":"Piilokuva","Comment":"Viesti","Quick Reply":"Pikavastaus","Stop watching this thread":"Lopeta t\u00e4m\u00e4n langan seuraaminen","Watch this thread":"Seuraa t\u00e4t\u00e4 lankaa","Unpin this board":"Poista t\u00e4m\u00e4n laudan nastoitus","Pin this board":"Nastoita t\u00e4m\u00e4 lauta","Stop watching this board":"Lopeta laudan seuraaminen","Watch this board":"Seuraa t\u00e4t\u00e4 lautaa","Click on any image on this site to load it into oekaki applet":"Paina mit\u00e4 tahansa kuvaa t\u00e4ll\u00e4 sivulla ladataksesi sen oekaki ohjelmaan","Sunday":"Sunnuntai","Monday":"Maanantai","Tuesday":"Tiistai","Wednesday":"Keskiviikko","Thursday":"Torstai","Friday":"Perjantai","Saturday":"Lauantai","January":"Tammikuu","February":"Helmikuu","March":"Maaliskuu","April":"Huhtikuu","May":"Toukokuu","June":"Kes\u00e4kuu","July":"Hein\u00e4kuu","August":"Elokuu","September":"Syyskuu","October":"Lokakuu","November":"Marraskuu","December":"Joulukuu","Jan":"Tammi","Feb":"Helmi","Mar":"Maalis","Apr":"Huhti","Jun":"Kes\u00e4","Jul":"Hein\u00e4","Aug":"Elo","Sep":"Syys","Oct":"Loka","Nov":"Marras","Dec":"JoulunJoulu","AM":"AP","PM":"IP","am":"ap","pm":"ip","Your browser does not support HTML5 video.":"Selaimesi ei tue HTML5 videota.","[play once]":"[toista kerran]","[loop]":"[silmukka]","WebM Settings":"WebM-asetukset","Expand videos inline":"Laajenna videot sivun sis\u00e4ll\u00e4","Play videos on hover":"Toista videot hoveroitaessa","Default volume":"Oletus volyymi","Tree view":"Puun\u00e4kym\u00e4","Shrink all images":"Pienenn\u00e4 kaikki kuvat","Animate GIFs":"Animoi GIFit","Unanimate GIFs":"Poista GIFien animointi"}; \ No newline at end of file diff --git a/inc/locale/fi_FI/LC_MESSAGES/javascript.po b/inc/locale/fi_FI/LC_MESSAGES/javascript.po index e739f3ed..5a5aa16d 100644 --- a/inc/locale/fi_FI/LC_MESSAGES/javascript.po +++ b/inc/locale/fi_FI/LC_MESSAGES/javascript.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Alrahambra , 2014 +# Alrahambra , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:56+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-07-20 19:15+0000\n" +"Last-Translator: Alrahambra \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -580,12 +580,12 @@ msgstr "Puunäkymä" #: ../../../../js/expand-all-images.js:32 msgid "Shrink all images" -msgstr "" +msgstr "Pienennä kaikki kuvat" #: ../../../../js/no-animated-gif.js:33 msgid "Animate GIFs" -msgstr "" +msgstr "Animoi GIFit" #: ../../../../js/no-animated-gif.js:42 ../../../../js/no-animated-gif.js:48 msgid "Unanimate GIFs" -msgstr "" +msgstr "Poista GIFien animointi" diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo index 79239acdd50af8c03117c1b0cfefafec206d3e44..7c5f2fd7aa6d126e813eca7a1f54ab94a1087908 100644 GIT binary patch literal 24129 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 delta 4075 zcmYM#dvF!y8OQM#&r`8(mT@{&YHg|Z4`oJ*oz`(it;JeLtwZajwaE1QJ7IXP-tr=mR_- zKSm|+UnEB}`b(wHFF^jxM0WaKHC~1DunPNe91f$te+bFR9L8xp-#oyejuVfkAH0(K zChCjtqZ0Te^=#^BrmqCYq7te?T{jhLa5hpTvl?~XM&!?Qrrv;+Jl|v)=mz_B0&hj# z=pIzY-^4liAg;xya2kGu7h&bZQU&H9#W9O;1Fl3aF}LAt{5oohe~fzG3pk<~zQ{oS zG5z3;)YGVh-bI!6W7JH};bg3!zAZQlb$mT~IE1?XzSQraCh`N+_a8&u_vcmAUo(9+ zz2JAK8N8St{~2}TH`3#Op?c*r)OF{O)i9NlN)?-ldQc7OLGy4WHlUhs0B4~?Rq%;P z)Zb(9JSWt(e?#@cSzL&7sju9M4R|Yh_!HC`pGZIdAU&Q*wkqvPR7Ka~bli+e^hV^* zgzT2%9U~0%+B}W=!YioKy^fmUJE)m_gydw-;#|Ctcd{Orp&qaYb$(y!cTtJ|7Wp&( zV5jGdVU{{yjmvPPje*DDHf+T2;bMFl)xGCZ$5F3iqqrGz%ADk>O86aA!e>%H!@V4j znZY}cgY49Vcj0yDumj&m5*ab8Nb6!w^rJGn2epPzAY_A^wX zr%>OU%FC^usYg|=3AI$4upMteP3ST7@M#>WW$+pUb?xV<3`bX&)_wx2`KF_0R+FBu zOOG!{-Ea-+b!x|M>_ghX{1TPeNz{GcM)lN(SbUAEslR4+F1?_NpE;FgR%$Kki*=|3 zmZE018kKN6s#04~*X=-6%%Un0q3(AOb^V=q1s+B<`?GVXKa(~ea)LiIfd;6@g-C;% zZoC{rT#S#PhcBb9KZBZS6({w19X4YR&c}yP3H&-W7**oCQ8RoHb;IwY-s?wk9v(x@=&z^>Orb$8#fxz+Zo=i5Lsk5T$O~dde!)Pm z$4S%;K1Nk!9w#^AdThpfQ8#`OwT7?aC{%w86P-kPQ?r#f%~ll}ou1f(E7LK(F=8_5 zL7BA-5<(B_A$p0BXdw;~Hxk;G5-PcV*ZYYZ2yL3gc7k~rkI=gBBl-xH+$Yu(s_t!i z|5a`#Q~Y(xqt;EOxt=&gY$eo8`nlAmvZ{pIt}Idf#Y=}pZeo8m(LvloG!W{mRzg2= z3B@)796>m z-G=l;MQWLdK@D*`ktOyMgM=DUn;J^ZtBv2FVqfqko6B^9Z5?rKaYW-`6R{#aP8lh7 zw>o(<@fBhbp^jZmXuFCyzc?!G_)lxvh--){qL%0;x(IE%i8aKn#1OHGXeI(;8=P{dPOb2iAb@AWgLHJ^|2rgi^NkoRM=k$JeG zOXsg?+v3?whEuU=3**FQv$)S@gG}iuwO#pphe3IhbT<{C}Bq`+eC84}BIq< zU18Y*_wKTcd*+HouD@xT`>bh$dwTf>H)+LGS6I>L{=H(^_%QO~G#77mGQMf?(k0%K z6|1gT?jBw}{gMtQ5QN_Ihiot99*zeCZ%wXvuDL15_cerma`dg$6{D8abp?KgHi$yH zfu@U!4cldh>_Ae;S<@8-G;0!>&8#{D>uy?m-%;->)--5d-c)MRAV~_fEP5fa+GlKH zdICRAf-)^JRUTw#uC~dbb-8u(rWGQuP>2IBTm0G=x8Jw^@QiB;`)naL9ffFc(Ar{~ za?G>OY?xAI!vR0^eN#@{9cpc?qC=xN3KHM&s4%qd8yjcM9OO0)q!8r%AoN+|@~n<7 z+K@v5w_CXV;fgIAj~^kOQicr;ZfegW*STYf`@@c1?rYaAo7j2$$bsbek%V_L39^Yh jy0gXIxvOP@r{5vV>UwiyH+%PH_vG$tEB#Vo5*GV^HtVuP diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po index c3f55a14..732c3f50 100644 --- a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po +++ b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Alrahambra , 2014 +# Alrahambra , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-06-21 20:55+0200\n" -"PO-Revision-Date: 2014-06-21 18:57+0000\n" -"Last-Translator: Marcin Łabanowski \n" +"PO-Revision-Date: 2014-07-20 22:05+0000\n" +"Last-Translator: Alrahambra \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -28,8 +28,8 @@ msgstr "" #: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "second" msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "sekunti" +msgstr[1] "sekuntia" #: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 #: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 @@ -41,8 +41,8 @@ msgstr[1] "" #: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "minute" msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "minuutti" +msgstr[1] "minuuttia" #: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 #: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 @@ -54,8 +54,8 @@ msgstr[1] "" #: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "hour" msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "tunti" +msgstr[1] "tuntia" #: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 #: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 @@ -67,8 +67,8 @@ msgstr[1] "" #: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "day" msgid_plural "days" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "päivä" +msgstr[1] "päivää" #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 @@ -80,8 +80,8 @@ msgstr[1] "" #: ../../../../inc/functions.php:663 ../../../../inc/functions.php:680 msgid "week" msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "viikko" +msgstr[1] "viikkoa" #: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 #: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 @@ -93,15 +93,15 @@ msgstr[1] "" #: ../../../../inc/functions.php:666 ../../../../inc/functions.php:683 msgid "year" msgid_plural "years" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "vuosi" +msgstr[1] "vuotta" #: ../../../../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 msgid "Banned!" -msgstr "Bannittu!" +msgstr "Bannattu!" #. There is no previous page. #: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139 @@ -633,21 +633,21 @@ msgstr "Et kirjoittanut oikein varmistusta." msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " "users." -msgstr "" +msgstr "Voit poistaa bannit enintään %s käyttäjältä kerralla. Yritit poistaa bannit %u käyttäjältä." #: ../../../../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 msgid "Invalid username and/or password." -msgstr "" +msgstr "Väärä käyttäjänimi ja/tai salasana." #: ../../../../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 msgid "You are not a mod…" -msgstr "" +msgstr "Et ole modi..." #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 @@ -656,21 +656,21 @@ msgstr "" msgid "" "Invalid username and/or password. Your user may have been deleted or " "changed." -msgstr "" +msgstr "Väärä käyttäjänimi ja/tai salasana. Käyttäjä on saatettu poistaa tai vaihtaa." #: ../../../../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 msgid "Invalid/malformed cookies." -msgstr "" +msgstr "Väärät/väärennetyt keksit." #: ../../../../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 msgid "Your browser didn't submit an input when it should have." -msgstr "" +msgstr "Selaimesi ei antanut syötettä kun piti." #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 @@ -678,7 +678,7 @@ msgstr "" #: ../../../../inc/config.php:1037 #, php-format msgid "The %s field is required." -msgstr "" +msgstr "Kenttä %s vaaditaan." #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 @@ -686,7 +686,7 @@ msgstr "" #: ../../../../inc/config.php:1038 #, php-format msgid "The %s field was invalid." -msgstr "" +msgstr "Kenttä %s oli epäkelpo." #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 @@ -694,28 +694,28 @@ msgstr "" #: ../../../../inc/config.php:1039 #, php-format msgid "There is already a %s board." -msgstr "" +msgstr "On olemassa jo lauta %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 msgid "You don't have permission to do that." -msgstr "" +msgstr "Sinulla ei ole lupa tehdä tuota." #: ../../../../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 msgid "That post doesn't exist…" -msgstr "" +msgstr "Tuota postausta ei ole olemassa..." #: ../../../../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 msgid "Page not found." -msgstr "" +msgstr "Sivua ei löytynyt." #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 @@ -723,21 +723,21 @@ msgstr "" #: ../../../../inc/config.php:1043 #, php-format msgid "That mod already exists!" -msgstr "" +msgstr "Tuo mode on jo olemassa!" #: ../../../../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 msgid "That theme doesn't exist!" -msgstr "" +msgstr "Teemaa ei ole olemassa." #: ../../../../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 msgid "Invalid security token! Please go back and try again." -msgstr "" +msgstr "Väärä nimismies! Mene takaisin ja yritä uusiksi." #. Default public ban message. In public ban messages, %length% is replaced #. with "for x days" or @@ -750,15 +750,15 @@ msgstr "" #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 #: ../../../../inc/config.php:1212 msgid "USER WAS BANNED FOR THIS POST" -msgstr "" +msgstr "KÄYTTÄJÄ SAI BANNIA!" #: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 msgid "Confirm action" -msgstr "" +msgstr "Vahvista teko." #: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 msgid "Could not find current version! (Check .installed)" -msgstr "" +msgstr "Ei voitu löytää versiota. (tarkista .installed)" #: ../../../../inc/mod/pages.php:162 msgid "Dashboard" @@ -766,24 +766,24 @@ msgstr "Hallinta" #: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 msgid "There are no boards to search!" -msgstr "" +msgstr "Ei ole lautoja haettavaksi!" #. $results now contains the search results #: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 msgid "Search results" -msgstr "" +msgstr "Hakutulokset" #: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 msgid "Edit board" -msgstr "" +msgstr "Muokkaa lautaa" #: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 msgid "Couldn't open board after creation." -msgstr "" +msgstr "Lautaa ei voitu avata luomisen jälkeen." #: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 msgid "New board" -msgstr "" +msgstr "Uusi lauta" #. line 37 #: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 @@ -840,7 +840,7 @@ msgstr "Moderaatio logi" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:64 msgid "IP" -msgstr "" +msgstr "IP" #. line 171 #: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367 @@ -848,7 +848,7 @@ msgstr "" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 #: ../../../../inc/mod/pages.php:1446 msgid "New ban" -msgstr "" +msgstr "Uusi banni" #: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 @@ -860,29 +860,29 @@ msgstr "Bannit" #: ../../../../inc/mod/pages.php:1172 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:108 msgid "Move reply" -msgstr "" +msgstr "Siirrä vastaus" #: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 #: ../../../../inc/mod/pages.php:1198 msgid "Target and source board are the same." -msgstr "" +msgstr "Kohde ja lähdelauta ovat samat." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 #: ../../../../inc/mod/pages.php:1371 msgid "Impossible to move thread; there is only one board." -msgstr "" +msgstr "Ei voida siirtää lankaa; on vain yksi lauta." #. line 39 #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 #: ../../../../inc/mod/pages.php:1375 msgid "Move thread" -msgstr "" +msgstr "Siirrä aihe." #: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 #: ../../../../inc/mod/pages.php:1775 ../../../../inc/mod/pages.php:1791 msgid "Edit user" -msgstr "" +msgstr "Muokkaa käyttäjää." #: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 @@ -895,19 +895,19 @@ 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 msgid "New PM for" -msgstr "" +msgstr "Uusi yksityisviesti käyttäjälle" #: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 #: ../../../../inc/mod/pages.php:1968 msgid "Private message" -msgstr "" +msgstr "Yksityisviestit" #. line 68 #: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 #: ../../../../inc/mod/pages.php:1989 msgid "PM inbox" -msgstr "" +msgstr "Yksityisviestien postilaatikko" #: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 #: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 @@ -928,17 +928,17 @@ msgstr "Ilmiannot" #: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 #: ../../../../inc/mod/pages.php:2334 ../../../../inc/mod/pages.php:2428 msgid "Config editor" -msgstr "" +msgstr "Asetuseditori" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 #: ../../../../inc/mod/pages.php:2445 msgid "Themes directory doesn't exist!" -msgstr "" +msgstr "Teemakansiota ei ole olemassa!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 #: ../../../../inc/mod/pages.php:2447 msgid "Cannot open themes directory; check permissions." -msgstr "" +msgstr "Ei voitu avata teemakansiota, tarkista luvat." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 @@ -950,59 +950,59 @@ msgstr "Hallitse teemoja" #: ../../../../inc/mod/pages.php:2531 #, php-format msgid "Installed theme: %s" -msgstr "" +msgstr "Asennettiin teema: %s" #: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 #: ../../../../inc/mod/pages.php:2542 #, php-format msgid "Configuring theme: %s" -msgstr "" +msgstr "Konfiguroidaan teemaa: %s" #: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 #: ../../../../inc/mod/pages.php:2571 #, php-format msgid "Rebuilt theme: %s" -msgstr "" +msgstr "Rakennetaan uudelleen teema: %s" #: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 #: ../../../../inc/mod/pages.php:2610 msgid "Debug: Anti-spam" -msgstr "" +msgstr "Debug: Anti-spam" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 #: ../../../../inc/mod/pages.php:2644 msgid "Debug: Recent posts" -msgstr "" +msgstr "Debug: Viimeisimmät postaukset" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 #: ../../../../inc/mod/pages.php:2668 msgid "Debug: SQL" -msgstr "" +msgstr "Debug: SQL" #. Print error #: ../../../../inc/database.php:72 ../../../../inc/database.php:94 msgid "Database error: " -msgstr "" +msgstr "Tietokannan virhe:" #: ../../../../banned.php:4 msgid "Banned?" -msgstr "" +msgstr "Bannattu?" #: ../../../../banned.php:5 msgid "You are not banned." -msgstr "" +msgstr "Et ole bannattu." #. line 6 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 msgid "Go back" -msgstr "" +msgstr "Mene takaisin." #. line 13 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 #: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 msgid "Error information" -msgstr "" +msgstr "Virheen tiedot" #. line 2 #. line 3 @@ -1203,7 +1203,7 @@ msgstr "Takaisin" #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 msgid "(No news to show.)" -msgstr "" +msgstr "(Ei uutisia.)" #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 @@ -1223,7 +1223,7 @@ msgstr "ei aihetta" #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 msgid "by" -msgstr "" +msgstr "kanssa" #. line 50 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 @@ -1231,7 +1231,7 @@ msgstr "" #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 #: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 msgid "at" -msgstr "" +msgstr "ssa" #. line 28 #. line 26 @@ -1240,13 +1240,13 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 msgid "1 reply" msgid_plural "%count% replies" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "1 vastaus" +msgstr[1] "%count% vastausta" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 msgid "File:" -msgstr "" +msgstr "Tiedosto:" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 @@ -1279,7 +1279,7 @@ msgstr "Vastaa" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:230 msgid "View All" -msgstr "" +msgstr "Näytä kaikki" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 @@ -1290,8 +1290,8 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:247 msgid "Last 1 Post" msgid_plural "Last %count% Posts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Viimeisin postaus" +msgstr[1] "Viimeisimmät %count% postausta" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 @@ -1302,8 +1302,8 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:284 msgid "1 post" msgid_plural "%count% posts" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Yksi postaus" +msgstr[1] "%count% postausta" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 @@ -1314,7 +1314,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:290 msgid "and" -msgstr "" +msgstr "ja" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 @@ -1325,8 +1325,8 @@ msgstr "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:302 msgid "1 image reply" msgid_plural "%count% image replies" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Yksi kuvavastaus" +msgstr[1] "%count% kuvavastaus" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 @@ -1336,7 +1336,7 @@ msgstr[1] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:307 msgid "omitted. Click reply to view." -msgstr "" +msgstr "jätetty näyttämättä. Paina vastaa näyttääksesi." #. line 7 #. line 14 @@ -1432,7 +1432,7 @@ msgstr "Aihe" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 msgid "Update" -msgstr "" +msgstr "Päivitys" #. line 32 #. line 57 @@ -1456,17 +1456,17 @@ msgstr "Viesti" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 msgid "Currently editing raw HTML." -msgstr "" +msgstr "Muokataan raakaa HTML:ää" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 msgid "Edit markup instead?" -msgstr "" +msgstr "Käytä merkkausta sensijaan?" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 msgid "Edit raw HTML instead?" -msgstr "" +msgstr "Muokkaa raakaa HTML:ää sensijaan?" #. line 73 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 @@ -1480,7 +1480,7 @@ msgstr "Varmennus" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 msgid "Or URL" -msgstr "" +msgstr "tai URL" #. line 100 #. line 113 @@ -1634,27 +1634,27 @@ msgstr "(Tiedoston poistoon.)" #: ../../../../search.php:5 msgid "Post search is disabled" -msgstr "" +msgstr "Haku ei ole käytössä" #: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:29 ../../../../search.php:35 msgid "Wait a while before searching again, please." -msgstr "" +msgstr "Odota ennen hakemista uudelleen." #: ../../../../search.php:131 ../../../../search.php:135 msgid "Query too broad." -msgstr "" +msgstr "Pyyntö oli liian leveä." #: ../../../../search.php:152 ../../../../search.php:156 #, php-format msgid "%d result in" msgid_plural "%d results in" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%d hakutulos" +msgstr[1] "%d hakutulosta" #: ../../../../search.php:163 ../../../../search.php:167 msgid "No results." -msgstr "" +msgstr "Ei tuloksia" #. line 115 #. line 16 @@ -1717,25 +1717,25 @@ msgstr "Etsi" #: ../../../../inc/mod/pages.php:939 msgid "Ban appeal not found!" -msgstr "" +msgstr "Bannivalitusta ei löydetty!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 #: ../../../../inc/mod/pages.php:994 msgid "Ban appeals" -msgstr "" +msgstr "Bannivalitukset" #: ../../../../inc/mod/pages.php:1833 ../../../../inc/mod/pages.php:1849 msgid "New user" -msgstr "" +msgstr "Uusi käyttäjä" #: ../../../../inc/mod/pages.php:1888 ../../../../inc/mod/pages.php:1904 msgid "Impossible to promote/demote user." -msgstr "" +msgstr "Mahdotonta ylentää/alentaa käyttäjää." #: ../../../../inc/mod/pages.php:2612 ../../../../inc/mod/pages.php:2690 msgid "Debug: APC" -msgstr "" +msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 @@ -1743,7 +1743,7 @@ msgstr "" msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " -msgstr "" +msgstr "Koodisi sisältää PHP syntaksivirheita. Mene takaisin ja korjaa. PHP sanoo:" #. line 2 #. line 6 @@ -1767,7 +1767,7 @@ msgstr "Laudat" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 msgid "edit" -msgstr "" +msgstr "muokkaa" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 msgid "Create new board" @@ -1776,11 +1776,11 @@ msgstr "Luo uusi lauta" #. line 32 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 msgid "Messages" -msgstr "" +msgstr "Viestit" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 msgid "View all noticeboard entries" -msgstr "" +msgstr "Näytä kaikki ilmoituslaudan ilmoitukset" #. line 76 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 @@ -1789,7 +1789,7 @@ msgstr "Hallinta" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 msgid "Change password" -msgstr "" +msgstr "Vaihda salasana" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:327 @@ -1801,21 +1801,21 @@ msgstr "Asetukset" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:366 msgid "Other" -msgstr "" +msgstr "Muu" #. line 139 #. line 142 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 msgid "Debug" -msgstr "" +msgstr "Debuggaa" #. line 141 #. line 144 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:405 msgid "Anti-spam" -msgstr "" +msgstr "Anti-spam" #. line 142 #. line 145 @@ -1824,19 +1824,19 @@ msgstr "" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:409 msgid "Recent posts" -msgstr "" +msgstr "Viimeisimmät postaukset" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:416 msgid "SQL" -msgstr "" +msgstr "SQL" #. line 164 #. line 167 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:455 msgid "User account" -msgstr "" +msgstr "Käyttäjätili" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:463 @@ -1847,7 +1847,7 @@ msgstr "Kirjaudu ulos" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 msgid "New post" -msgstr "" +msgstr "Uusi postaus" #. line 16 #. line 28 @@ -1867,7 +1867,7 @@ msgstr "Lähetä tiedotteisiin" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 msgid "delete" -msgstr "" +msgstr "poista" #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 @@ -1882,12 +1882,12 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 msgid "deleted?" -msgstr "" +msgstr "poistettu?" #. line 33 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 msgid "Post news entry" -msgstr "" +msgstr "Postaa uutinen" #. line 24 #. line 63 @@ -2010,7 +2010,7 @@ msgstr "Moderaattori" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 msgid "Note" -msgstr "" +msgstr "Muistutus" #. line 26 #. line 22 @@ -2029,7 +2029,7 @@ msgstr "" #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 msgid "Date" -msgstr "" +msgstr "Päivä" #. line 25 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 @@ -2040,12 +2040,12 @@ msgstr "Toiminto" #. line 49 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 msgid "remove" -msgstr "" +msgstr "poista" #. line 76 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 msgid "New note" -msgstr "" +msgstr "Uusi muistio" #. line 94 #. line 7 @@ -2070,22 +2070,22 @@ msgstr "" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" -msgstr "" +msgstr "Tila" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 msgid "Expired" -msgstr "" +msgstr "Vanhentunut" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 msgid "Active" -msgstr "" +msgstr "Aktiivinen" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 msgid "no reason" -msgstr "" +msgstr "ei syytä" #. line 118 #. line 184 @@ -2267,7 +2267,7 @@ msgstr "Vanhenee" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 msgid "never" -msgstr "" +msgstr "ei koskaan" #. line 142 #. line 14 @@ -2305,26 +2305,26 @@ msgstr "" #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 msgid "Seen" -msgstr "" +msgstr "Nähty" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 msgid "Yes" -msgstr "" +msgstr "Kyllä" #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:381 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:207 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:173 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:301 msgid "No" -msgstr "" +msgstr "Ei" #. line 163 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 msgid "Remove ban" -msgstr "" +msgstr "Poista banni" #. line 183 #. line 5 @@ -2349,7 +2349,7 @@ msgstr "" #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 msgid "Time" -msgstr "" +msgstr "Aika" #. line 185 #. line 89 @@ -2393,11 +2393,11 @@ msgstr "Tapahtuma" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 msgid "(or subnet)" -msgstr "" +msgstr "(tai subnet)" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 msgid "hidden" -msgstr "" +msgstr "piiloitettu" #. line 41 #. line 27 @@ -2409,22 +2409,22 @@ msgstr "" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 msgid "Message" -msgstr "" +msgstr "Viesti" #. line 46 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 msgid "public; attached to post" -msgstr "" +msgstr "julkinen; kiinnitetty postaukseen" #. line 58 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 msgid "Length" -msgstr "" +msgstr "Pituus" #. line 88 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 msgid "New Ban" -msgstr "" +msgstr "Uusi banni" #. line 2 #. line 5 @@ -2451,26 +2451,26 @@ msgstr "Lause tai sana:" #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 msgid "Posts" -msgstr "" +msgstr "Postaukset" #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 msgid "IP address notes" -msgstr "" +msgstr "IP osoitteen muistiinpanot" #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 msgid "Bans" -msgstr "" +msgstr "Bannit" #. line 18 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 msgid "" "(Search is case-insensitive and based on keywords. To match exact phrases, " "use \"quotes\". Use an asterisk (*) for wildcard.)" -msgstr "" +msgstr "(Haku on riippuvainen kirjainkoosta ja hakusanoista. Hakeaksesi täsmällisiä sanoja, käytä \"lainausmerkkejä.\" Käytä asteriskiä (*) laajentaaksesi hakua." #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 msgid "There are no active bans." -msgstr "" +msgstr "Ei banneja aktiivisena." #. line 8 #. line 47 @@ -2483,7 +2483,7 @@ msgstr "" #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 msgid "IP address/mask" -msgstr "" +msgstr "IP osoite/peite." #. line 12 #. line 51 @@ -2496,12 +2496,12 @@ msgstr "" #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 msgid "Duration" -msgstr "" +msgstr "Kesto" #. line 92 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 msgid "Unban selected" -msgstr "" +msgstr "Poista valittujen bannit" #. line 6 #. line 4 @@ -2531,118 +2531,118 @@ msgstr "Jatka" #. line 80 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 msgid "Appeal time" -msgstr "" +msgstr "Valitusaika" #. line 84 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 msgid "Appeal reason" -msgstr "" +msgstr "Valituksen syy" #: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 msgid "There are no reports." -msgstr "" +msgstr "Ei raportteja" #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 #: ../../../../post.php:894 msgid "That ban doesn't exist or is not for you." -msgstr "" +msgstr "Bannia ei ole olemassa tai se ei ole sinua varten." #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 #: ../../../../post.php:898 msgid "You cannot appeal a ban of this length." -msgstr "" +msgstr "Et voi valittaa tämän bannin kestosta." #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 #: ../../../../post.php:905 msgid "You cannot appeal this ban again." -msgstr "" +msgstr "Et voi valittaa uusiksi tästä bannista." #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 #: ../../../../post.php:910 msgid "There is already a pending appeal for this ban." -msgstr "" +msgstr "Bannista on jo ulistu." #: ../../../../inc/image.php:24 ../../../../inc/image.php:62 msgid "Unsupported file format: " -msgstr "" +msgstr "Tukematon tiedostomuoto." #: ../../../../inc/image.php:282 ../../../../inc/image.php:288 msgid "Failed to redraw image!" -msgstr "" +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 msgid "Failed to resize image!" -msgstr "" +msgstr "Kuvan kokoa ei voitu muokata." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 msgid "You were banned! ;_;" -msgstr "" +msgstr "Sait bannia. Nyyh." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 msgid "You are banned! ;_;" -msgstr "" +msgstr "Sinut on bannittu. Voi ei." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 msgid "You were banned from" -msgstr "" +msgstr "Sinut bannattiin tämän takia" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 msgid "You have been banned from" -msgstr "" +msgstr "Sinut on bannittu" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 msgid "for the following reason:" -msgstr "" +msgstr "seuraavasta syystä:" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 msgid "for an unspecified reason." -msgstr "" +msgstr "Syyttömästä syystä." #. line 32 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 msgid "Your ban was filed on" -msgstr "" +msgstr "Bannisi luotiin" #. line 51 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 msgid "has since expired. Refresh the page to continue." -msgstr "" +msgstr "on nyt vanhentunut. Päivitä sivu jatkaaksesi." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 msgid "expires" -msgstr "" +msgstr "vanhentuu" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 msgid "from now, which is on" -msgstr "" +msgstr "tästä lähtien, mikä on" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 msgid "will not expire" -msgstr "" +msgstr "ei vanhene" #. line 78 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 msgid "Your IP address is" -msgstr "" +msgstr "IP osoitteesi on" #. line 86 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 msgid "You were banned for the following post on" -msgstr "" +msgstr "Sinut bannattiin seuraavan postauksen vuoksi" #. line 95 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:240 msgid "You submitted an appeal for this ban on" -msgstr "" +msgstr "Tänä päivänä pistit valituksen bannistasi:" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:246 msgid "It is still pending" -msgstr "" +msgstr "Se on yhä käsittelyssä" #. line 101 #. line 112 @@ -2667,20 +2667,20 @@ msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:258 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:290 msgid "You appealed this ban on" -msgstr "" +msgstr "Valitit tästä bannista" #. line 103 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:266 msgid "and it was denied. You may not appeal this ban again." -msgstr "" +msgstr "ja se hylättiin. Et voi valittaa uudelleen." #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:273 msgid "" "You have submitted the maximum number of ban appeals allowed. You may not " "appeal this ban again." -msgstr "" +msgstr "Olet lähettänyt maksimimäärän bannivalituksia ja et voi valittaa enempää." #. line 114 #. line 121 @@ -2705,7 +2705,7 @@ msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:298 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:319 msgid "and it was denied." -msgstr "" +msgstr "ja se hylättiin" #. line 116 #. line 123 @@ -2730,18 +2730,18 @@ msgstr "" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:303 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:324 msgid "You may appeal this ban again. Please enter your reasoning below." -msgstr "" +msgstr "Et voi valittaa tästä bannista uudelleen ehkä. Anna valituksesti tähän." #. line 119 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:311 msgid "You last appealed this ban on" -msgstr "" +msgstr "Viimeksi valittamasi banni oli" #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:333 msgid "You may appeal this ban. Please enter your reasoning below." -msgstr "" +msgstr "Saat valittaa bannista. Anna syyt alla." #. line 4 #. line 16 @@ -2768,7 +2768,7 @@ msgstr "IP osoite" #. line 3 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 msgid "ID" -msgstr "" +msgstr "ID" #. line 5 #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 @@ -2781,46 +2781,46 @@ msgstr "Viimeinen tapahtuma" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 msgid "Unknown" -msgstr "" +msgstr "Tuntematon" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 msgid "none" -msgstr "" +msgstr "tyhmä" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 msgid "Promote" -msgstr "" +msgstr "Ylennä" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 msgid "Demote" -msgstr "" +msgstr "Alenna" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 msgid "Are you sure you want to demote yourself?" -msgstr "" +msgstr "Haluatko varmasti alentaa itsesi?" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 msgid "log" -msgstr "" +msgstr "loggaa" #: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 msgid "PM" -msgstr "" +msgstr "Pikaviesti" #. line 6 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 msgid "Thread ID" -msgstr "" +msgstr "Langan ID" #. line 14 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 msgid "Leave shadow thread" -msgstr "" +msgstr "Jätä varjolanka" #. line 18 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 msgid "locks thread; replies to it with a link." -msgstr "" +msgstr "lukittu lanka; vastaa siihen linkillä" #. line 22 #. line 13 @@ -2829,12 +2829,12 @@ msgstr "" #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:50 msgid "Target board" -msgstr "" +msgstr "Kohdelauta" #. line 8 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 msgid "Select board" -msgstr "" +msgstr "Valitse lauta" #. line 17 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 @@ -2846,64 +2846,64 @@ 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 "" +msgstr "Haku perustuu hakusanoihin. Täsmällisiin hakuihin käytä \"lainausmerkkejä. Käytä asteriskiä (*) laajentaaksesi hakua.

Saat käyttää seuraavia suotimia haussa: id, lanka, aihe, ja nimi. käyttääksesi filtteriä, laita sellainen hakuusi mukaan, esim name:Anonymous or Aihe:\"Lanka\". Asteriskiä ei voi käyttää filttereiden kanssa." #. line 2 #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 msgid "Are you sure you want to do that?" -msgstr "" +msgstr "Haluatko varmasti tehdä tuon?" #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 msgid "Click to proceed to" -msgstr "" +msgstr "Paina jatkaaksesi" #. 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 "" +msgstr "Näet tämän viestin todennäköisesti, koska Javascript on otettu pois käytöstä. Tämä on tehty CSRF-hyökkäysten estämiseksi." #. line 7 #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 msgid "Report date" -msgstr "" +msgstr "Raportin päivä" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 msgid "Reported by" -msgstr "" +msgstr "Raportin teki" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 msgid "Discard abuse report" -msgstr "" +msgstr "Hylkää raportti" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 msgid "Discard all abuse reports by this IP address" -msgstr "" +msgstr "Hylkää kaikki raportit tästä IP osoitteesta" #. line 4 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 msgid "From" -msgstr "" +msgstr "Tältä:" #. line 34 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 msgid "Delete forever" -msgstr "" +msgstr "Poista ikuisesti" #. line 39 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 msgid "Reply with quote" -msgstr "" +msgstr "Vastaa lainaten" #. line 18 #: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 msgid "Send message" -msgstr "" +msgstr "Lähetä viesti" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 msgid "There are no themes available." -msgstr "" +msgstr "Teemoja ei ole saatavilla." #. line 11 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 @@ -2918,7 +2918,7 @@ msgstr "Kuvaus" #. line 19 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 msgid "Thumbnail" -msgstr "" +msgstr "Minikuva" #. line 27 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 @@ -2939,43 +2939,43 @@ msgstr "Poista" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 msgid "new; optional" -msgstr "" +msgstr "uusi, valinnainen" #. line 32 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 msgid "Group" -msgstr "" +msgstr "Ryhmä" #. line 56 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 msgid "All boards" -msgstr "" +msgstr "Kaikki laudat" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 msgid "Create user" -msgstr "" +msgstr "Luo käyttäjä" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 msgid "Save changes" -msgstr "" +msgstr "Tallenna muutokset" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 msgid "Delete user" -msgstr "" +msgstr "Poista käyttäjä" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 msgid "View more logs for this user." -msgstr "" +msgstr "Näytä tälle käyttäjälle lisää logeja" #. line 84 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 msgid "Flag" -msgstr "" +msgstr "Lippu" #. line 87 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" -msgstr "" +msgstr "Ei mitään" #. When moving a thread to another board and choosing to keep a "shadow #. thread", an automated post (with @@ -2985,22 +2985,22 @@ msgstr "" #: ../../../../inc/config.php:1211 ../../../../inc/config.php:1220 #, php-format msgid "Moved to %s." -msgstr "" +msgstr "Siirrettiin tänne %s" #: ../../../../templates/themes/recent/theme.php:50 msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "Ei voida luoda RecentPosts-teemaa, koska lautoja ei voitu hakea." #: ../../../../inc/config.php:997 msgid "You have attempted to upload too many images!" -msgstr "" +msgstr "Olet yrittänyt postata liian monta kuvaa!" #. line 7 #: ../../../../templates/cache/b9/2b/ba2b45df5e1d76f6cdfb98a47468df19a1ffc1c2af2dc1792eb75eeb0791.php:36 msgid "Spoiler file" -msgstr "" +msgstr "Spoilerikuva" #. line 26 #. line 35 @@ -3009,7 +3009,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:80 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:107 msgid "Bump order" -msgstr "" +msgstr "Bumppijärjestys" #. line 27 #. line 36 @@ -3018,7 +3018,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:84 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:111 msgid "Last reply" -msgstr "" +msgstr "Viimeisin vastaus" #. line 28 #. line 37 @@ -3027,7 +3027,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:115 msgid "Creation date" -msgstr "" +msgstr "Luontipäivä" #. line 29 #. line 38 @@ -3036,7 +3036,7 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:92 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:119 msgid "Reply count" -msgstr "" +msgstr "Vastausmäärä" #. line 30 #. line 39 @@ -3045,58 +3045,58 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:96 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:123 msgid "Random" -msgstr "" +msgstr "Satunnainen" #. line 33 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 msgid "Sort by" -msgstr "" +msgstr "Järjestä" #. line 42 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:129 msgid "Image size" -msgstr "" +msgstr "Kuvan koko" #. line 44 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:134 msgid "Small" -msgstr "" +msgstr "Pieni" #. line 45 #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:138 msgid "Large" -msgstr "" +msgstr "Suuri" #. line 6 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:36 msgid "Post ID" -msgstr "" +msgstr "Postauksen ID" #. line 29 #: ../../../../templates/cache/56/25/ac2c51fa6b3e26f9f9ed7dda5224acfbec96881d648c8ded10c5eef2c3e5.php:96 msgid "Target thread" -msgstr "" +msgstr "Kohdelanka" #: ../../../../post.php:48 msgid "Post deletion is not allowed!" -msgstr "" +msgstr "Postauksen poisto ei ole sallittua." #: ../../../../post.php:385 msgid "Unrecognized file size determination method." -msgstr "" +msgstr "Tunnistamaton tiedostokoon määritys." #: ../../../../post.php:519 msgid "Invalid flag selection!" -msgstr "" +msgstr "Väärä lipunvalinta." #: ../../../../post.php:631 msgid "exiftool failed!" -msgstr "" +msgstr "exiftyökalu epäonnistui!" #: ../../../../post.php:641 msgid "Could not auto-orient image!" -msgstr "" +msgstr "Kuvaa ei voitu automaattisesti kääntää!" #: ../../../../post.php:695 msgid "Could not strip EXIF metadata!" -msgstr "" +msgstr "EXIF-metadataa ei voitu poistaa!" From b26979b2572ec25b4d604d264e5c028d070f5902 Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sun, 27 Jul 2014 14:11:59 +0200 Subject: [PATCH 18/42] inline-expanding.js: maxWidth is pointless now --- js/inline-expanding.js | 1 - 1 file changed, 1 deletion(-) diff --git a/js/inline-expanding.js b/js/inline-expanding.js index 4cf5a82d..f3be2e2f 100644 --- a/js/inline-expanding.js +++ b/js/inline-expanding.js @@ -18,7 +18,6 @@ onready(function(){ for (var i = 0; i < link.length; i++) { if (typeof link[i] == "object" && link[i].childNodes && typeof link[i].childNodes[0] !== 'undefined' && link[i].childNodes[0].src && link[i].childNodes[0].className.match(/post-image/) && !link[i].className.match(/file/)) { - link[i].childNodes[0].style.maxWidth = '95%'; link[i].onclick = function(e) { if (this.childNodes[0].className == 'hidden') return false; From 1221c2c37e61d1d834075d9543a8eada0f5bb3fc Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sun, 27 Jul 2014 16:48:40 +0200 Subject: [PATCH 19/42] Use a different way to show the original filename Conflicts: templates/post/fileinfo.html --- inc/config.php | 2 ++ js/download-original.js | 42 ------------------------------------ templates/post/fileinfo.html | 24 +++++++++++++-------- 3 files changed, 17 insertions(+), 51 deletions(-) delete mode 100644 js/download-original.js diff --git a/inc/config.php b/inc/config.php index 23e23a97..2e93b347 100644 --- a/inc/config.php +++ b/inc/config.php @@ -743,6 +743,8 @@ $config['show_ratio'] = false; // Display the file's original filename. $config['show_filename'] = true; + // Download the file with its original filename upon clicking on it. Only works when $config['show_filename'] is true. + $config['download_filename'] = false; // Display image identification links using ImgOps, regex.info/exif and Google Images. $config['image_identification'] = false; diff --git a/js/download-original.js b/js/download-original.js deleted file mode 100644 index cf9635ac..00000000 --- a/js/download-original.js +++ /dev/null @@ -1,42 +0,0 @@ -/* - * download-original.js - * https://github.com/savetheinternet/Tinyboard/blob/master/js/download-original.js - * - * Makes image filenames clickable, allowing users to download and save files as their original filename. - * Only works in newer browsers. http://caniuse.com/#feat=download - * - * Released under the MIT license - * Copyright (c) 2012-2013 Michael Save - * Copyright (c) 2013-2014 Marcin Łabanowski - * - * Usage: - * $config['additional_javascript'][] = 'js/jquery.min.js'; - * $config['additional_javascript'][] = 'js/download-original.js'; - * - */ - -onready(function(){ - var do_original_filename = function() { - var filename, truncated; - if ($(this).attr('title')) { - filename = $(this).attr('title'); - truncated = true; - } else { - filename = $(this).text(); - } - - $(this).replaceWith( - $('') - .attr('download', filename) - .append($(this).contents()) - .attr('href', $(this).parent().parent().find('a').attr('href')) - .attr('title', _('Save as original filename') + (truncated ? ' (' + filename + ')' : '')) - ); - }; - - $('.postfilename').each(do_original_filename); - - $(document).on('new_post', function(e, post) { - $(post).find('.postfilename').each(do_original_filename); - }); -}); diff --git a/templates/post/fileinfo.html b/templates/post/fileinfo.html index f12857d2..7b7e278c 100644 --- a/templates/post/fileinfo.html +++ b/templates/post/fileinfo.html @@ -7,7 +7,21 @@ {% if file.file == 'deleted' %} {% else %} -

File: {{ file.file }} +

{% trans %}File:{% endtrans %} config.max_filename_display %} + title="{{ file.filename|e|bidi_cleanup }}" + >{{ file.filename|truncate_filename(config.max_filename_display)|e|bidi_cleanup }} + {% else %} + >{{ file.filename|e|bidi_cleanup }} + {% endif %} + {% else %} + >{{ file.file }} + {% endif %} + ( {% if file.thumb == 'spoiler' %} {% trans %}Spoiler Image{% endtrans %}, @@ -19,14 +33,6 @@ , {{ ratio(file.width, file.height) }} {% endif %} {% endif %} - {% if config.show_filename and file.filename %} - , - {% if file.filename|length > config.max_filename_display %} - {{ file.filename|truncate_filename(config.max_filename_display)|e|bidi_cleanup }} - {% else %} - {{ file.filename|e|bidi_cleanup }} - {% endif %} - {% endif %} {% include "post/image_identification.html" %} ) {% include "post/file_controls.html" %}

From 78e32113acb1141dc4f3097e5fb1002717ec494a Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Tue, 29 Jul 2014 16:18:21 +0200 Subject: [PATCH 20/42] inline-expanding.js: Or is it not after all? --- js/inline-expanding.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/inline-expanding.js b/js/inline-expanding.js index f3be2e2f..862e525e 100644 --- a/js/inline-expanding.js +++ b/js/inline-expanding.js @@ -18,6 +18,7 @@ onready(function(){ for (var i = 0; i < link.length; i++) { if (typeof link[i] == "object" && link[i].childNodes && typeof link[i].childNodes[0] !== 'undefined' && link[i].childNodes[0].src && link[i].childNodes[0].className.match(/post-image/) && !link[i].className.match(/file/)) { + link[i].childNodes[0].style.maxWidth = '96%'; link[i].onclick = function(e) { if (this.childNodes[0].className == 'hidden') return false; From 250aefff2d2a3e1b927bd5c97c4e7d5a632a8c26 Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Tue, 29 Jul 2014 17:03:20 +0200 Subject: [PATCH 21/42] inline-expanding.js: 98% it is --- js/inline-expanding.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/inline-expanding.js b/js/inline-expanding.js index 862e525e..4d0cb03d 100644 --- a/js/inline-expanding.js +++ b/js/inline-expanding.js @@ -18,7 +18,7 @@ onready(function(){ for (var i = 0; i < link.length; i++) { if (typeof link[i] == "object" && link[i].childNodes && typeof link[i].childNodes[0] !== 'undefined' && link[i].childNodes[0].src && link[i].childNodes[0].className.match(/post-image/) && !link[i].className.match(/file/)) { - link[i].childNodes[0].style.maxWidth = '96%'; + link[i].childNodes[0].style.maxWidth = '98%'; link[i].onclick = function(e) { if (this.childNodes[0].className == 'hidden') return false; From c40d4f9b8364b0b325c33a4b5814e87fcf26e83f Mon Sep 17 00:00:00 2001 From: kaf Date: Wed, 9 Jul 2014 17:45:17 +0000 Subject: [PATCH 22/42] Added a space for valid html5 --- templates/post/image.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/post/image.html b/templates/post/image.html index 5020f782..818ccb57 100644 --- a/templates/post/image.html +++ b/templates/post/image.html @@ -24,7 +24,7 @@ > {% else %} - - + {% if not config.always_noko %}{% endif %} {% else %} From 06acf054d353cd21a0264e81814215423adcb377 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 21:56:15 +0200 Subject: [PATCH 24/42] leave the download-original js for compatibility --- js/download-original.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 js/download-original.js diff --git a/js/download-original.js b/js/download-original.js new file mode 100644 index 00000000..9ef77c74 --- /dev/null +++ b/js/download-original.js @@ -0,0 +1,5 @@ +/* Remove this file from your inc/instance-config.php + + Consult this: https://github.com/dubcheck/Alokal/commit/a7c710ebcd39fef1430aa4cab2508a9e5ea60fcf + + This file is preserved here for compatibility; will be removed on the next major version */ From 345ffe869f44df22da7d501bee34a34bda69b42b Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sat, 2 Aug 2014 15:07:31 +0200 Subject: [PATCH 25/42] Minor fixes for embed htmls --- inc/config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/config.php b/inc/config.php index 2e93b347..9c8d0095 100644 --- a/inc/config.php +++ b/inc/config.php @@ -958,7 +958,7 @@ $config['embedding'] = array( array( '/^https?:\/\/(\w+\.)?youtube\.com\/watch\?v=([a-zA-Z0-9\-_]{10,11})(&.+)?$/i', - '' + '' ), array( '/^https?:\/\/(\w+\.)?vimeo\.com\/(\d{2,10})(\?.+)?$/i', @@ -966,7 +966,7 @@ ), array( '/^https?:\/\/(\w+\.)?dailymotion\.com\/video\/([a-zA-Z0-9]{2,10})(_.+)?$/i', - '' + '' ), array( '/^https?:\/\/(\w+\.)?metacafe\.com\/watch\/(\d+)\/([a-zA-Z0-9_\-.]+)\/(\?.+)?$/i', @@ -978,7 +978,7 @@ ), array( '/^https?:\/\/(\w+\.)?vocaroo\.com\/i\/([a-zA-Z0-9]{2,15})$/i', - '' + '' ) ); From 2e89786e623e22a7c7cec300c79fbea70c60c321 Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sat, 2 Aug 2014 15:16:47 +0200 Subject: [PATCH 26/42] Minor fixes for embed htmls --- inc/config.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/inc/config.php b/inc/config.php index 9c8d0095..5db20405 100644 --- a/inc/config.php +++ b/inc/config.php @@ -962,15 +962,15 @@ ), array( '/^https?:\/\/(\w+\.)?vimeo\.com\/(\d{2,10})(\?.+)?$/i', - '' + '' ), array( '/^https?:\/\/(\w+\.)?dailymotion\.com\/video\/([a-zA-Z0-9]{2,10})(_.+)?$/i', - '' + '' ), array( '/^https?:\/\/(\w+\.)?metacafe\.com\/watch\/(\d+)\/([a-zA-Z0-9_\-.]+)\/(\?.+)?$/i', - '
' + '
' ), array( '/^https?:\/\/video\.google\.com\/videoplay\?docid=(\d+)([&#](.+)?)?$/i', From 80281a46cb315b8450e2f57a7f6d4a28e93f631f Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sun, 3 Aug 2014 17:56:13 +0200 Subject: [PATCH 27/42] Change styling of fileinfo, add iqdb search --- inc/config.php | 4 ++- stylesheets/style.css | 39 +++++++++++++----------- templates/post/fileinfo.html | 6 ++-- templates/post/image_identification.html | 11 ++++--- 4 files changed, 34 insertions(+), 26 deletions(-) diff --git a/inc/config.php b/inc/config.php index 5db20405..741846e9 100644 --- a/inc/config.php +++ b/inc/config.php @@ -746,12 +746,14 @@ // Download the file with its original filename upon clicking on it. Only works when $config['show_filename'] is true. $config['download_filename'] = false; - // Display image identification links using ImgOps, regex.info/exif and Google Images. + // Display image identification links for ImgOps, regex.info/exif, Google Images and iqdb. $config['image_identification'] = false; // Which of the identification links to display. Only works if $config['image_identification'] is true. $config['image_identification_imgops'] = true; $config['image_identification_exif'] = true; $config['image_identification_google'] = true; + // Anime/manga search engine. + $config['image_identification_iqdb'] = false; // Number of posts in a "View Last X Posts" page $config['noko50_count'] = 50; diff --git a/stylesheets/style.css b/stylesheets/style.css index 20d895ae..37a46858 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -113,18 +113,21 @@ form table tr td div label { float: left; margin-right: 2px; } -.multifile { - border: 2px dashed #B7C5D9; -} .file:not(.multifile) .post-image { float: left; } .file:not(.multifile) { float: none; } +.multifile { + padding-right: 20px; +} p.fileinfo { display: block; - margin: 0; + margin: 0 0 0 20px; +} +div.post p.fileinfo { + padding-left: 5px; } div.banner { background-color: #E04000; @@ -148,12 +151,12 @@ img.banner, img.board_image { .post-image { display: block; float: left; - margin: 10px 20px; + margin: 5px 20px 10px 20px; border: none; } div.post .post-image { padding: 5px; - margin: 5px 20px 0 0; + margin: 0 20px 0 0; } div.post img.icon { display: inline; @@ -289,7 +292,7 @@ span.heading { span.spoiler { background: black; color: black; - padding: 0px 1px; + padding: 0 1px; } div.post.reply div.body span.spoiler a { color: black; @@ -436,11 +439,11 @@ table.mod.config-editor input[type="text"] { } .desktop-style div.boardlist:nth-child(1) { position: fixed; - top: 0px; - left: 0px; - right: 0px; - /*text-shadow: white 1px 0px 6px, white 1px 0px 6px, black 1px 0px 3px;*/ - margin-top: 0px; + top: 0; + left: 0; + right: 0; + /*text-shadow: white 1px 0 6px, white 1px 0 6px, black 1px 0 3px;*/ + margin-top: 0; z-index: 30; } .desktop-style div.boardlist:nth-child(1):hover, .desktop-style div.boardlist:nth-child(1).cb-menu { @@ -462,7 +465,7 @@ table.mod.config-editor input[type="text"] { } .desktop-style .sub .sub:hover, .desktop-style .sub .sub.hover { display: inline; - text-indent: 0px; + text-indent: 0; background: inherit; } @@ -489,8 +492,8 @@ table.mod.config-editor input[type="text"] { background-color: rgba(100%, 100%, 100%, 0.2); } p.intro.thread-hidden { - margin: 0px; - padding: 0px; + margin: 0; + padding: 0; } form.ban-appeal { @@ -569,7 +572,7 @@ form.ban-appeal textarea { .compact-boardlist { padding: 3px; - padding-bottom: 0px; + padding-bottom: 0; } .compact-boardlist .cb-item { display: inline-block; @@ -624,6 +627,6 @@ form.ban-appeal textarea { /* Containerchan */ div.post video.post-image { - padding: 0px; - margin: 10px 25px 5px 5px; + padding: 0; + margin: 5px 25px 5px 5px; } diff --git a/templates/post/fileinfo.html b/templates/post/fileinfo.html index 7b7e278c..ad398d60 100644 --- a/templates/post/fileinfo.html +++ b/templates/post/fileinfo.html @@ -21,7 +21,7 @@ {% else %} >{{ file.file }} {% endif %} - +
( {% if file.thumb == 'spoiler' %} {% trans %}Spoiler Image{% endtrans %}, @@ -33,9 +33,9 @@ , {{ ratio(file.width, file.height) }} {% endif %} {% endif %} - {% include "post/image_identification.html" %} ) - {% include "post/file_controls.html" %}

+ {% include "post/image_identification.html" %} +
{% include "post/file_controls.html" %}

{% include "post/image.html" with {'post':file} %} {% endif %}
diff --git a/templates/post/image_identification.html b/templates/post/image_identification.html index 4f3f593a..1ebc01a7 100644 --- a/templates/post/image_identification.html +++ b/templates/post/image_identification.html @@ -1,14 +1,17 @@ {% if file.thumb != 'file' and config.image_identification %} - , + {% if config.image_identification_imgops %} - io + ImgOps {% endif %} {% if config.image_identification_exif and file.file|extension == 'jpg' %} - e + Exif {% endif %} {% if config.image_identification_google %} - g + Google + {% endif %} + {% if config.image_identification_iqdb %} + iqdb {% endif %} {% endif %} From e581629480c01f8739b9077afc7e1ccf8e5b5481 Mon Sep 17 00:00:00 2001 From: Jano Slota Date: Sun, 3 Aug 2014 17:59:30 +0200 Subject: [PATCH 28/42] I thought I deleted that --- templates/post/fileinfo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/post/fileinfo.html b/templates/post/fileinfo.html index ad398d60..e04f7989 100644 --- a/templates/post/fileinfo.html +++ b/templates/post/fileinfo.html @@ -7,7 +7,7 @@ {% if file.file == 'deleted' %} {% else %} -

{% trans %}File:{% endtrans %} Date: Sun, 3 Aug 2014 23:30:21 +0200 Subject: [PATCH 29/42] Open image identification links in new tabs --- stylesheets/style.css | 3 --- templates/post/image_identification.html | 8 ++++---- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/stylesheets/style.css b/stylesheets/style.css index 37a46858..4d6ee5ab 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -119,9 +119,6 @@ form table tr td div label { .file:not(.multifile) { float: none; } -.multifile { - padding-right: 20px; -} p.fileinfo { display: block; margin: 0 0 0 20px; diff --git a/templates/post/image_identification.html b/templates/post/image_identification.html index 1ebc01a7..fa2f30b3 100644 --- a/templates/post/image_identification.html +++ b/templates/post/image_identification.html @@ -2,16 +2,16 @@ {% if config.image_identification_imgops %} - ImgOps + ImgOps {% endif %} {% if config.image_identification_exif and file.file|extension == 'jpg' %} - Exif + Exif {% endif %} {% if config.image_identification_google %} - Google + Google {% endif %} {% if config.image_identification_iqdb %} - iqdb + iqdb {% endif %} {% endif %} From 93cedb44aa93047868c4d6c80546964d37793fc2 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 22:09:28 +0200 Subject: [PATCH 30/42] Revert "I thought I deleted that" This reverts commit c6e1afcf650e55d1f64867440fcd623d386f922f. --- templates/post/fileinfo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/post/fileinfo.html b/templates/post/fileinfo.html index e04f7989..ad398d60 100644 --- a/templates/post/fileinfo.html +++ b/templates/post/fileinfo.html @@ -7,7 +7,7 @@ {% if file.file == 'deleted' %} {% else %} -

{% trans %}File:{% endtrans %} Date: Fri, 8 Aug 2014 22:18:06 +0200 Subject: [PATCH 31/42] Revert "Use a different way to show the original filename" This reverts commit d81a6c49e28133c65d237fc648be7fe323bfd54d. Conflicts: js/download-original.js templates/post/fileinfo.html --- inc/config.php | 2 -- js/download-original.js | 43 +++++++++++++++++++++++++++++++++--- templates/post/fileinfo.html | 24 ++++++++------------ 3 files changed, 49 insertions(+), 20 deletions(-) diff --git a/inc/config.php b/inc/config.php index 741846e9..91e53a6d 100644 --- a/inc/config.php +++ b/inc/config.php @@ -743,8 +743,6 @@ $config['show_ratio'] = false; // Display the file's original filename. $config['show_filename'] = true; - // Download the file with its original filename upon clicking on it. Only works when $config['show_filename'] is true. - $config['download_filename'] = false; // Display image identification links for ImgOps, regex.info/exif, Google Images and iqdb. $config['image_identification'] = false; diff --git a/js/download-original.js b/js/download-original.js index 9ef77c74..cf9635ac 100644 --- a/js/download-original.js +++ b/js/download-original.js @@ -1,5 +1,42 @@ -/* Remove this file from your inc/instance-config.php +/* + * download-original.js + * https://github.com/savetheinternet/Tinyboard/blob/master/js/download-original.js + * + * Makes image filenames clickable, allowing users to download and save files as their original filename. + * Only works in newer browsers. http://caniuse.com/#feat=download + * + * Released under the MIT license + * Copyright (c) 2012-2013 Michael Save + * Copyright (c) 2013-2014 Marcin Łabanowski + * + * Usage: + * $config['additional_javascript'][] = 'js/jquery.min.js'; + * $config['additional_javascript'][] = 'js/download-original.js'; + * + */ - Consult this: https://github.com/dubcheck/Alokal/commit/a7c710ebcd39fef1430aa4cab2508a9e5ea60fcf +onready(function(){ + var do_original_filename = function() { + var filename, truncated; + if ($(this).attr('title')) { + filename = $(this).attr('title'); + truncated = true; + } else { + filename = $(this).text(); + } + + $(this).replaceWith( + $('') + .attr('download', filename) + .append($(this).contents()) + .attr('href', $(this).parent().parent().find('a').attr('href')) + .attr('title', _('Save as original filename') + (truncated ? ' (' + filename + ')' : '')) + ); + }; - This file is preserved here for compatibility; will be removed on the next major version */ + $('.postfilename').each(do_original_filename); + + $(document).on('new_post', function(e, post) { + $(post).find('.postfilename').each(do_original_filename); + }); +}); diff --git a/templates/post/fileinfo.html b/templates/post/fileinfo.html index ad398d60..73bdf2d2 100644 --- a/templates/post/fileinfo.html +++ b/templates/post/fileinfo.html @@ -7,21 +7,7 @@ {% if file.file == 'deleted' %} {% else %} -

{% trans %}File:{% endtrans %} config.max_filename_display %} - title="{{ file.filename|e|bidi_cleanup }}" - >{{ file.filename|truncate_filename(config.max_filename_display)|e|bidi_cleanup }} - {% else %} - >{{ file.filename|e|bidi_cleanup }} - {% endif %} - {% else %} - >{{ file.file }} - {% endif %} -
+

File: {{ file.file }} ( {% if file.thumb == 'spoiler' %} {% trans %}Spoiler Image{% endtrans %}, @@ -33,6 +19,14 @@ , {{ ratio(file.width, file.height) }} {% endif %} {% endif %} + {% if config.show_filename and file.filename %} + , + {% if file.filename|length > config.max_filename_display %} + {{ file.filename|truncate_filename(config.max_filename_display)|e|bidi_cleanup }} + {% else %} + {{ file.filename|e|bidi_cleanup }} + {% endif %} + {% endif %} ) {% include "post/image_identification.html" %} {% include "post/file_controls.html" %}

From 68a6d2664d532d0b2397e35e5e89fe2577345612 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 22:36:36 +0200 Subject: [PATCH 32/42] fix & optimize catalog a little bit, don't expect anything big yet --- templates/themes/catalog/theme.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/templates/themes/catalog/theme.php b/templates/themes/catalog/theme.php index c6679f7c..cc767789 100644 --- a/templates/themes/catalog/theme.php +++ b/templates/themes/catalog/theme.php @@ -35,7 +35,12 @@ $recent_posts = array(); $stats = array(); - $query = query(sprintf("SELECT *, `id` AS `thread_id`, (SELECT COUNT(*) FROM ``posts_%s`` WHERE `thread` = `thread_id`) AS `reply_count`, (SELECT COUNT(*) FROM ``posts_%s`` WHERE `thread` = `thread_id` AND `filehash` IS NOT NULL) AS `image_count`, (SELECT `time` FROM ``posts_%s`` WHERE `thread` = `thread_id` ORDER BY `time` DESC LIMIT 1) AS `last_reply`, (SELECT `name` FROM ``posts_%s`` WHERE `thread` = `thread_id` ORDER BY `time` DESC LIMIT 1) AS `last_reply_name`, (SELECT `subject` FROM ``posts_%s`` WHERE `thread` = `thread_id` ORDER BY `time` DESC LIMIT 1) AS `last_reply_subject`, '%s' AS `board` FROM ``posts_%s`` WHERE `thread` IS NULL ORDER BY `bump` DESC", $board_name, $board_name, $board_name, $board_name, $board_name, $board_name, $board_name)) or error(db_error()); + $query = query(sprintf("SELECT *, `id` AS `thread_id`, + (SELECT COUNT(*) FROM ``posts_%s`` WHERE `thread` = `thread_id`) AS `reply_count`, + (SELECT SUM(`num_files`) FROM ``posts_%s`` WHERE `thread` = `thread_id` AND `num_files` IS NOT NULL) AS `image_count`, + (SELECT `time` FROM ``posts_%s`` WHERE `thread` = `thread_id` ORDER BY `time` DESC LIMIT 1) AS `last_reply`, + '%s' AS `board` FROM ``posts_%s`` WHERE `thread` IS NULL ORDER BY `bump` DESC", + $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'])); From 24414cf56ad9de1e224d1b51fb1e678addcab5cc Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 22:44:02 +0200 Subject: [PATCH 33/42] fix catalog a little more; remove tooltipster (it didn`t work) and order by last reply date (mostly redundant); now the generation times are a little bit better --- js/jquery.tooltipster.min.js | 1 - 1 file changed, 1 deletion(-) delete mode 100644 js/jquery.tooltipster.min.js diff --git a/js/jquery.tooltipster.min.js b/js/jquery.tooltipster.min.js deleted file mode 100644 index a2779051..00000000 --- a/js/jquery.tooltipster.min.js +++ /dev/null @@ -1 +0,0 @@ -/* Tooltipster v3.2.3 */;(function(e,t,n){function s(t,n){this.bodyOverflowX;this.callbacks={hide:[],show:[]};this.checkInterval=null;this.Content;this.$el=e(t);this.$elProxy;this.elProxyPosition;this.enabled=true;this.options=e.extend({},i,n);this.mouseIsOverProxy=false;this.namespace="tooltipster-"+Math.round(Math.random()*1e5);this.Status="hidden";this.timerHide=null;this.timerShow=null;this.$tooltip;this.options.iconTheme=this.options.iconTheme.replace(".","");this.options.theme=this.options.theme.replace(".","");this._init()}function o(t,n){var r=true;e.each(t,function(e,i){if(typeof n[e]==="undefined"||t[e]!==n[e]){r=false;return false}});return r}function f(){return!a&&u}function l(){var e=n.body||n.documentElement,t=e.style,r="transition";if(typeof t[r]=="string"){return true}v=["Moz","Webkit","Khtml","O","ms"],r=r.charAt(0).toUpperCase()+r.substr(1);for(var i=0;i');t.$elProxy.text(t.options.icon)}else{if(t.options.iconCloning)t.$elProxy=t.options.icon.clone(true);else t.$elProxy=t.options.icon}t.$elProxy.insertAfter(t.$el)}else{t.$elProxy=t.$el}if(t.options.trigger=="hover"){t.$elProxy.on("mouseenter."+t.namespace,function(){if(!f()||t.options.touchDevices){t.mouseIsOverProxy=true;t._show()}}).on("mouseleave."+t.namespace,function(){if(!f()||t.options.touchDevices){t.mouseIsOverProxy=false}});if(u&&t.options.touchDevices){t.$elProxy.on("touchstart."+t.namespace,function(){t._showNow()})}}else if(t.options.trigger=="click"){t.$elProxy.on("click."+t.namespace,function(){if(!f()||t.options.touchDevices){t._show()}})}}},_show:function(){var e=this;if(e.Status!="shown"&&e.Status!="appearing"){if(e.options.delay){e.timerShow=setTimeout(function(){if(e.options.trigger=="click"||e.options.trigger=="hover"&&e.mouseIsOverProxy){e._showNow()}},e.options.delay)}else e._showNow()}},_showNow:function(n){var r=this;r.options.functionBefore.call(r.$el,r.$el,function(){if(r.enabled&&r.Content!==null){if(n)r.callbacks.show.push(n);r.callbacks.hide=[];clearTimeout(r.timerShow);r.timerShow=null;clearTimeout(r.timerHide);r.timerHide=null;if(r.options.onlyOne){e(".tooltipstered").not(r.$el).each(function(t,n){var r=e(n),i=r.data("tooltipster-ns");e.each(i,function(e,t){var n=r.data(t),i=n.status(),s=n.option("autoClose");if(i!=="hidden"&&i!=="disappearing"&&s){n.hide()}})})}var i=function(){r.Status="shown";e.each(r.callbacks.show,function(e,t){t.call(r.$el)});r.callbacks.show=[]};if(r.Status!=="hidden"){var s=0;if(r.Status==="disappearing"){r.Status="appearing";if(l()){r.$tooltip.clearQueue().removeClass("tooltipster-dying").addClass("tooltipster-"+r.options.animation+"-show");if(r.options.speed>0)r.$tooltip.delay(r.options.speed);r.$tooltip.queue(i)}else{r.$tooltip.stop().fadeIn(i)}}else if(r.Status==="shown"){i()}}else{r.Status="appearing";var s=r.options.speed;r.bodyOverflowX=e("body").css("overflow-x");e("body").css("overflow-x","hidden");var o="tooltipster-"+r.options.animation,a="-webkit-transition-duration: "+r.options.speed+"ms; -webkit-animation-duration: "+r.options.speed+"ms; -moz-transition-duration: "+r.options.speed+"ms; -moz-animation-duration: "+r.options.speed+"ms; -o-transition-duration: "+r.options.speed+"ms; -o-animation-duration: "+r.options.speed+"ms; -ms-transition-duration: "+r.options.speed+"ms; -ms-animation-duration: "+r.options.speed+"ms; transition-duration: "+r.options.speed+"ms; animation-duration: "+r.options.speed+"ms;",f=r.options.minWidth?"min-width:"+Math.round(r.options.minWidth)+"px;":"",c=r.options.maxWidth?"max-width:"+Math.round(r.options.maxWidth)+"px;":"",h=r.options.interactive?"pointer-events: auto;":"";r.$tooltip=e('
');if(l())r.$tooltip.addClass(o);r._content_insert();r.$tooltip.appendTo("body");r.reposition();r.options.functionReady.call(r.$el,r.$el,r.$tooltip);if(l()){r.$tooltip.addClass(o+"-show");if(r.options.speed>0)r.$tooltip.delay(r.options.speed);r.$tooltip.queue(i)}else{r.$tooltip.css("display","none").fadeIn(r.options.speed,i)}r._interval_set();e(t).on("scroll."+r.namespace+" resize."+r.namespace,function(){r.reposition()});if(r.options.autoClose){e("body").off("."+r.namespace);if(r.options.trigger=="hover"){if(u){setTimeout(function(){e("body").on("touchstart."+r.namespace,function(){r.hide()})},0)}if(r.options.interactive){if(u){r.$tooltip.on("touchstart."+r.namespace,function(e){e.stopPropagation()})}var p=null;r.$elProxy.add(r.$tooltip).on("mouseleave."+r.namespace+"-autoClose",function(){clearTimeout(p);p=setTimeout(function(){r.hide()},r.options.interactiveTolerance)}).on("mouseenter."+r.namespace+"-autoClose",function(){clearTimeout(p)})}else{r.$elProxy.on("mouseleave."+r.namespace+"-autoClose",function(){r.hide()})}}else if(r.options.trigger=="click"){setTimeout(function(){e("body").on("click."+r.namespace+" touchstart."+r.namespace,function(){r.hide()})},0);if(r.options.interactive){r.$tooltip.on("click."+r.namespace+" touchstart."+r.namespace,function(e){e.stopPropagation()})}}}}if(r.options.timer>0){r.timerHide=setTimeout(function(){r.timerHide=null;r.hide()},r.options.timer+s)}}})},_interval_set:function(){var t=this;t.checkInterval=setInterval(function(){if(e("body").find(t.$el).length===0||e("body").find(t.$elProxy).length===0||t.Status=="hidden"||e("body").find(t.$tooltip).length===0){if(t.Status=="shown"||t.Status=="appearing")t.hide();t._interval_cancel()}else{if(t.options.positionTracker){var n=t._repositionInfo(t.$elProxy),r=false;if(o(n.dimension,t.elProxyPosition.dimension)){if(t.$elProxy.css("position")==="fixed"){if(o(n.position,t.elProxyPosition.position))r=true}else{if(o(n.offset,t.elProxyPosition.offset))r=true}}if(!r){t.reposition()}}}},200)},_interval_cancel:function(){clearInterval(this.checkInterval);this.checkInterval=null},_content_set:function(e){if(typeof e==="object"&&e!==null&&this.options.contentCloning){e=e.clone(true)}this.Content=e},_content_insert:function(){var e=this,t=this.$tooltip.find(".tooltipster-content");if(typeof e.Content==="string"&&!e.options.contentAsHTML){t.text(e.Content)}else{t.empty().append(e.Content)}},_update:function(e){var t=this;t._content_set(e);if(t.Content!==null){if(t.Status!=="hidden"){t._content_insert();t.reposition();if(t.options.updateAnimation){if(l()){t.$tooltip.css({width:"","-webkit-transition":"all "+t.options.speed+"ms, width 0ms, height 0ms, left 0ms, top 0ms","-moz-transition":"all "+t.options.speed+"ms, width 0ms, height 0ms, left 0ms, top 0ms","-o-transition":"all "+t.options.speed+"ms, width 0ms, height 0ms, left 0ms, top 0ms","-ms-transition":"all "+t.options.speed+"ms, width 0ms, height 0ms, left 0ms, top 0ms",transition:"all "+t.options.speed+"ms, width 0ms, height 0ms, left 0ms, top 0ms"}).addClass("tooltipster-content-changing");setTimeout(function(){if(t.Status!="hidden"){t.$tooltip.removeClass("tooltipster-content-changing");setTimeout(function(){if(t.Status!=="hidden"){t.$tooltip.css({"-webkit-transition":t.options.speed+"ms","-moz-transition":t.options.speed+"ms","-o-transition":t.options.speed+"ms","-ms-transition":t.options.speed+"ms",transition:t.options.speed+"ms"})}},t.options.speed)}},t.options.speed)}else{t.$tooltip.fadeTo(t.options.speed,.5,function(){if(t.Status!="hidden"){t.$tooltip.fadeTo(t.options.speed,1)}})}}}}else{t.hide()}},_repositionInfo:function(e){return{dimension:{height:e.outerHeight(false),width:e.outerWidth(false)},offset:e.offset(),position:{left:parseInt(e.css("left")),top:parseInt(e.css("top"))}}},hide:function(n){var r=this;if(n)r.callbacks.hide.push(n);r.callbacks.show=[];clearTimeout(r.timerShow);r.timerShow=null;clearTimeout(r.timerHide);r.timerHide=null;var i=function(){e.each(r.callbacks.hide,function(e,t){t.call(r.$el)});r.callbacks.hide=[]};if(r.Status=="shown"||r.Status=="appearing"){r.Status="disappearing";var s=function(){r.Status="hidden";if(typeof r.Content=="object"&&r.Content!==null){r.Content.detach()}r.$tooltip.remove();r.$tooltip=null;e(t).off("."+r.namespace);e("body").off("."+r.namespace).css("overflow-x",r.bodyOverflowX);e("body").off("."+r.namespace);r.$elProxy.off("."+r.namespace+"-autoClose");r.options.functionAfter.call(r.$el,r.$el);i()};if(l()){r.$tooltip.clearQueue().removeClass("tooltipster-"+r.options.animation+"-show").addClass("tooltipster-dying");if(r.options.speed>0)r.$tooltip.delay(r.options.speed);r.$tooltip.queue(s)}else{r.$tooltip.stop().fadeOut(r.options.speed,s)}}else if(r.Status=="hidden"){i()}return r},show:function(e){this._showNow(e);return this},update:function(e){return this.content(e)},content:function(e){if(typeof e==="undefined"){return this.Content}else{this._update(e);return this}},reposition:function(){var n=this;if(e("body").find(n.$tooltip).length!==0){n.$tooltip.css("width","");n.elProxyPosition=n._repositionInfo(n.$elProxy);var r=null,i=e(t).width(),s=n.elProxyPosition,o=n.$tooltip.outerWidth(false),u=n.$tooltip.innerWidth()+1,a=n.$tooltip.outerHeight(false);if(n.$elProxy.is("area")){var f=n.$elProxy.attr("shape"),l=n.$elProxy.parent().attr("name"),c=e('img[usemap="#'+l+'"]'),h=c.offset().left,p=c.offset().top,d=n.$elProxy.attr("coords")!==undefined?n.$elProxy.attr("coords").split(","):undefined;if(f=="circle"){var v=parseInt(d[0]),m=parseInt(d[1]),g=parseInt(d[2]);s.dimension.height=g*2;s.dimension.width=g*2;s.offset.top=p+m-g;s.offset.left=h+v-g}else if(f=="rect"){var v=parseInt(d[0]),m=parseInt(d[1]),y=parseInt(d[2]),b=parseInt(d[3]);s.dimension.height=b-m;s.dimension.width=y-v;s.offset.top=p+m;s.offset.left=h+v}else if(f=="poly"){var w=[],E=[],S=0,x=0,T=0,N=0,C="even";for(var k=0;kT){T=L;if(k===0){S=T}}if(LN){N=L;if(k==1){x=N}}if(Li){r=A-(i+n-o);A=i+n-o}}function B(n,r){if(s.offset.top-e(t).scrollTop()-a-_-12<0&&r.indexOf("top")>-1){P=n}if(s.offset.top+s.dimension.height+a+12+_>e(t).scrollTop()+e(t).height()&&r.indexOf("bottom")>-1){P=n;M=s.offset.top-a-_-12}}if(P=="top"){var j=s.offset.left+o-(s.offset.left+s.dimension.width);A=s.offset.left+D-j/2;M=s.offset.top-a-_-12;H();B("bottom","top")}if(P=="top-left"){A=s.offset.left+D;M=s.offset.top-a-_-12;H();B("bottom-left","top-left")}if(P=="top-right"){A=s.offset.left+s.dimension.width+D-o;M=s.offset.top-a-_-12;H();B("bottom-right","top-right")}if(P=="bottom"){var j=s.offset.left+o-(s.offset.left+s.dimension.width);A=s.offset.left-j/2+D;M=s.offset.top+s.dimension.height+_+12;H();B("top","bottom")}if(P=="bottom-left"){A=s.offset.left+D;M=s.offset.top+s.dimension.height+_+12;H();B("top-left","bottom-left")}if(P=="bottom-right"){A=s.offset.left+s.dimension.width+D-o;M=s.offset.top+s.dimension.height+_+12;H();B("top-right","bottom-right")}if(P=="left"){A=s.offset.left-D-o-12;O=s.offset.left+D+s.dimension.width+12;var F=s.offset.top+a-(s.offset.top+s.dimension.height);M=s.offset.top-F/2-_;if(A<0&&O+o>i){var I=parseFloat(n.$tooltip.css("border-width"))*2,q=o+A-I;n.$tooltip.css("width",q+"px");a=n.$tooltip.outerHeight(false);A=s.offset.left-D-q-12-I;F=s.offset.top+a-(s.offset.top+s.dimension.height);M=s.offset.top-F/2-_}else if(A<0){A=s.offset.left+D+s.dimension.width+12;r="left"}}if(P=="right"){A=s.offset.left+D+s.dimension.width+12;O=s.offset.left-D-o-12;var F=s.offset.top+a-(s.offset.top+s.dimension.height);M=s.offset.top-F/2-_;if(A+o>i&&O<0){var I=parseFloat(n.$tooltip.css("border-width"))*2,q=i-A-I;n.$tooltip.css("width",q+"px");a=n.$tooltip.outerHeight(false);F=s.offset.top+a-(s.offset.top+s.dimension.height);M=s.offset.top-F/2-_}else if(A+o>i){A=s.offset.left-D-o-12;r="right"}}if(n.options.arrow){var R="tooltipster-arrow-"+P;if(n.options.arrowColor.length<1){var U=n.$tooltip.css("background-color")}else{var U=n.options.arrowColor}if(!r){r=""}else if(r=="left"){R="tooltipster-arrow-right";r=""}else if(r=="right"){R="tooltipster-arrow-left";r=""}else{r="left:"+Math.round(r)+"px;"}if(P=="top"||P=="top-left"||P=="top-right"){var z=parseFloat(n.$tooltip.css("border-bottom-width")),W=n.$tooltip.css("border-bottom-color")}else if(P=="bottom"||P=="bottom-left"||P=="bottom-right"){var z=parseFloat(n.$tooltip.css("border-top-width")),W=n.$tooltip.css("border-top-color")}else if(P=="left"){var z=parseFloat(n.$tooltip.css("border-right-width")),W=n.$tooltip.css("border-right-color")}else if(P=="right"){var z=parseFloat(n.$tooltip.css("border-left-width")),W=n.$tooltip.css("border-left-color")}else{var z=parseFloat(n.$tooltip.css("border-bottom-width")),W=n.$tooltip.css("border-bottom-color")}if(z>1){z++}var X="";if(z!==0){var V="",J="border-color: "+W+";";if(R.indexOf("bottom")!==-1){V="margin-top: -"+Math.round(z)+"px;"}else if(R.indexOf("top")!==-1){V="margin-bottom: -"+Math.round(z)+"px;"}else if(R.indexOf("left")!==-1){V="margin-right: -"+Math.round(z)+"px;"}else if(R.indexOf("right")!==-1){V="margin-left: -"+Math.round(z)+"px;"}X=''}n.$tooltip.find(".tooltipster-arrow").remove();var K='
'+X+'
';n.$tooltip.append(K)}n.$tooltip.css({top:Math.round(M)+"px",left:Math.round(A)+"px"})}return n},enable:function(){this.enabled=true;return this},disable:function(){this.hide();this.enabled=false;return this},destroy:function(){var t=this;t.hide();if(t.$el[0]!==t.$elProxy[0])t.$elProxy.remove();t.$el.removeData(t.namespace).off("."+t.namespace);var n=t.$el.data("tooltipster-ns");if(n.length===1){var r=typeof t.Content==="string"?t.Content:e("
").append(t.Content).html();t.$el.removeClass("tooltipstered").attr("title",r).removeData(t.namespace).removeData("tooltipster-ns").off("."+t.namespace)}else{n=e.grep(n,function(e,n){return e!==t.namespace});t.$el.data("tooltipster-ns",n)}return t},elementIcon:function(){return this.$el[0]!==this.$elProxy[0]?this.$elProxy[0]:undefined},elementTooltip:function(){return this.$tooltip?this.$tooltip[0]:undefined},option:function(e){return this.options[e]},status:function(e){return this.Status}};e.fn[r]=function(){var t=arguments;if(this.length===0){if(typeof t[0]==="string"){var n=true;switch(t[0]){case"setDefaults":e.extend(i,t[1]);break;default:n=false;break}if(n)return true;else return this}else{return this}}else{if(typeof t[0]==="string"){var r="#*$~&";this.each(function(){var n=e(this).data("tooltipster-ns"),i=n?e(this).data(n[0]):null;if(i){if(typeof i[t[0]]==="function"){var s=i[t[0]](t[1])}else{throw new Error('Unknown method .tooltipster("'+t[0]+'")')}if(s!==i){r=s;return false}}else{throw new Error("You called Tooltipster's \""+t[0]+'" method on an uninitialized element')}});return r!=="#*$~&"?r:this}else{var o=[],u=t[0]&&typeof t[0].multiple!=="undefined",a=u&&t[0].multiple||!u&&i.multiple;this.each(function(){var n=false,r=e(this).data("tooltipster-ns"),i=null;if(!r){n=true}else{if(a)n=true;else console.log('Tooltipster: one or more tooltips are already attached to this element: ignoring. Use the "multiple" option to attach more tooltips.')}if(n){i=new s(this,t[0]);if(!r)r=[];r.push(i.namespace);e(this).data("tooltipster-ns",r);e(this).data(i.namespace,i)}o.push(i)});if(a)return o;else return this}}};var u=!!("ontouchstart"in t);var a=false;e("body").one("mousemove",function(){a=true})})(jQuery,window,document); \ No newline at end of file From 9d6d50279688b25eb909e563a30ad6380f0021d9 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 22:48:38 +0200 Subject: [PATCH 34/42] ongoing catalog cleanup --- js/catalog.js | 56 ++++----------------------- templates/themes/catalog/catalog.html | 18 ++++----- templates/themes/catalog/theme.php | 15 ++----- 3 files changed, 18 insertions(+), 71 deletions(-) diff --git a/js/catalog.js b/js/catalog.js index 0c41103c..4a4eae37 100644 --- a/js/catalog.js +++ b/js/catalog.js @@ -1,64 +1,22 @@ if (active_page == 'catalog') $(function(){ - $("#selectorzilla").change(function(){ - sheit = this.value; - $("#sort-"+sheit).trigger("click"); + $("#sort_by").change(function(){ + var value = this.value; + $("#sort-"+value).trigger("click"); }); - $("#imgurzilla").change(function(){ - sheit = this.value; - if (sheit == "small") { + $("#image_size").change(function(){ + var value = this.value, old; + if (value == "small") { old = "large"; } else { old = "small"; } $(".grid-li").removeClass("grid-size-"+old); - $(".grid-li").addClass("grid-size-"+sheit); + $(".grid-li").addClass("grid-size-"+value); }); $('#Grid').mixitup({ - onMixEnd: function(){ - if(use_tooltipster) { - buildTooltipster(); - } - } }); - if(use_tooltipster) { - buildTooltipster(); - } - }); - -function buildTooltipster(){ - $(".thread-image").each(function(){ - subject = $(this).attr('data-subject'); - name = $(this).attr('data-name'); - muhdifference = $(this).attr('data-muhdifference'); - last_reply = $(this).attr('data-last-reply'); - last_subject = $(this).attr('data-last-subject'); - last_name = $(this).attr('data-last-name'); - last_difference = $(this).attr('data-last-difference'); - muh_body = ''; - - if (subject) { - muh_body = muh_body + subject + ' por'; - } else { - muh_body = muh_body + 'Postado por'; - }; - muh_body = muh_body + ' ' + name + ' ' + muhdifference + ''; - - if (last_reply) { - muh_body = muh_body + '
'; - if (last_subject) { - muh_body = muh_body + last_subject + ' por'; - } else{ - muh_body = muh_body + 'Última resposta por'; - }; - muh_body = muh_body + ' ' + last_name + ' ' + last_difference + ''; - } - $(this).tooltipster({ - content: $(muh_body) - }); - }); -} diff --git a/templates/themes/catalog/catalog.html b/templates/themes/catalog/catalog.html index 2b8649e4..a4cb3933 100644 --- a/templates/themes/catalog/catalog.html +++ b/templates/themes/catalog/catalog.html @@ -5,12 +5,6 @@ {% include 'header.html' %} {{ settings.title }} @@ -24,30 +18,32 @@
  • {% trans 'Bump order' %}
  • -
  • {% trans 'Last reply' %}
  • {% trans 'Creation date' %}
  • {% trans 'Reply count' %}
  • {% trans 'Random' %}
{% trans 'Sort by' %}: - - {% trans 'Image size' %}: -
From 7bc0fc9e8564d3bd188c896199824673464cb9cb Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 23:14:00 +0200 Subject: [PATCH 37/42] fix imgops size in a futaba+vichan style --- stylesheets/futaba+vichan.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/stylesheets/futaba+vichan.css b/stylesheets/futaba+vichan.css index 5177f743..cbd219fd 100644 --- a/stylesheets/futaba+vichan.css +++ b/stylesheets/futaba+vichan.css @@ -80,9 +80,6 @@ div.boardlist { div.boardlist a { color: #800; } -unimportant, .unimportant * { - font-size: 13px; -} table.modlog tr th { background: #EA8; } From 54aa300d037cfdd2f039fbff29cda28413553809 Mon Sep 17 00:00:00 2001 From: czaks Date: Fri, 8 Aug 2014 23:24:04 +0200 Subject: [PATCH 38/42] styling: webm-settings: remove extraneous --- js/webm-settings.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/webm-settings.js b/js/webm-settings.js index cecf36d0..3e792741 100644 --- a/js/webm-settings.js +++ b/js/webm-settings.js @@ -39,7 +39,7 @@ var settingsMenu = document.createElement("div"); settingsMenu.style.textAlign = "right"; settingsMenu.style.background = "inherit"; -settingsMenu.innerHTML = ''+_('WebM Settings')+'' +settingsMenu.innerHTML = ''+_('WebM Settings')+'' + '
' + '
' + '
' @@ -77,11 +77,11 @@ for (var i = 0; i < settingsItems.length; i++) { if (settingsMenu.addEventListener) { settingsMenu.addEventListener("mouseover", function(e) { refreshSettings(); - settingsMenu.getElementsByTagName("span")[0].style.fontWeight = "bold"; + settingsMenu.getElementsByTagName("a")[0].style.fontWeight = "bold"; settingsMenu.getElementsByTagName("div")[0].style.display = "block"; }, false); settingsMenu.addEventListener("mouseout", function(e) { - settingsMenu.getElementsByTagName("span")[0].style.fontWeight = "normal"; + settingsMenu.getElementsByTagName("a")[0].style.fontWeight = "normal"; settingsMenu.getElementsByTagName("div")[0].style.display = "none"; }, false); } From 725038677d6e2d655085d6b82330d8af99360744 Mon Sep 17 00:00:00 2001 From: czaks Date: Sat, 9 Aug 2014 04:56:50 +0200 Subject: [PATCH 39/42] final solution to expand-too-long problems --- js/expand-too-long.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/expand-too-long.js b/js/expand-too-long.js index 0720fa75..d6ea43af 100644 --- a/js/expand-too-long.js +++ b/js/expand-too-long.js @@ -23,7 +23,7 @@ $(function() { url: url, context: document.body, success: function(data) { - var content = $(data).find('#'+url.split('#')[1]).parent().find(".body").html(); + var content = $(data).find('#'+url.split('#')[1]).parent().parent().find(".body").first().html(); body.html(content); } From 1fb9fffefbc8d2ced5d574963ad0451207f4e557 Mon Sep 17 00:00:00 2001 From: czaks Date: Sat, 9 Aug 2014 05:12:36 +0200 Subject: [PATCH 40/42] handle tinyboard flags with length=0 --- inc/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/functions.php b/inc/functions.php index 6ce76472..af2136bb 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1668,7 +1668,7 @@ function unicodify($body) { function extract_modifiers($body) { $modifiers = array(); - if (preg_match_all('@(.+?)@us', $body, $matches, PREG_SET_ORDER)) { + if (preg_match_all('@(.*?)@us', $body, $matches, PREG_SET_ORDER)) { foreach ($matches as $match) { if (preg_match('/^escape /', $match[1])) continue; From cb0cc85a01a517c0535a2dbc216882e455611705 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Sat, 9 Aug 2014 12:01:43 +0200 Subject: [PATCH 41/42] Improve type-safty in player.php --- player.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/player.php b/player.php index 33f02215..1f9600d8 100644 --- a/player.php +++ b/player.php @@ -1,12 +1,15 @@ - <?php echo htmlspecialchars($_GET['t']); ?> + <?php echo htmlspecialchars($t); ?> @@ -17,8 +20,8 @@ $loop = ($_GET['loop'] != "0"); >[loop]
-
From 8c9e6c5419e8c38fef6496174366f70b6c4f6784 Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Sat, 9 Aug 2014 12:14:56 +0200 Subject: [PATCH 42/42] Suppress warnings that might leak information --- player.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/player.php b/player.php index 1f9600d8..d1a76a86 100644 --- a/player.php +++ b/player.php @@ -1,8 +1,8 @@