diff --git a/inc/config.php b/inc/config.php index 26346072..91e53a6d 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.' // ); @@ -742,12 +744,14 @@ // Display the file's original filename. $config['show_filename'] = true; - // 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; @@ -954,19 +958,19 @@ $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', - '' + '' ), 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', @@ -974,7 +978,7 @@ ), array( '/^https?:\/\/(\w+\.)?vocaroo\.com\/i\/([a-zA-Z0-9]{2,15})$/i', - '' + '' ) ); diff --git a/inc/filters.php b/inc/filters.php index f694d2b1..22843f10 100644 --- a/inc/filters.php +++ b/inc/filters.php @@ -9,14 +9,17 @@ defined('TINYBOARD') or exit; class Filter { public $flood_check; private $condition; + private $post; public function __construct(array $arr) { foreach ($arr as $key => $value) $this->$key = $value; } - public function match(array $post, $condition, $match) { + public function match($condition, $match) { $condition = strtolower($condition); + + $post = &$this->post; switch($condition) { case 'custom': @@ -94,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); } @@ -114,8 +133,17 @@ class Filter { public function action() { global $board; - - switch($this->action) { + + $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)); + } + if (isset ($this->action)) switch($this->action) { case 'reject': error(isset($this->message) ? $this->message : 'Posting throttled by filter.'); case 'ban': @@ -127,7 +155,7 @@ class Filter { $this->all_boards = isset($this->all_boards) ? $this->all_boards : false; Bans::new_ban($_SERVER['REMOTE_ADDR'], $this->reason, $this->expires, $this->all_boards ? false : $board['uri'], -1); - + if ($this->reject) { if (isset($this->message)) error($message); @@ -143,13 +171,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; diff --git a/inc/functions.php b/inc/functions.php index 5cecca2b..5441043f 100644 --- a/inc/functions.php +++ b/inc/functions.php @@ -1660,7 +1660,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; 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!" 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 a678c1aa..a7f901ec 100644 Binary files a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo and b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po index 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" 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 79239acd..7c5f2fd7 100644 Binary files a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo and b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po index 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!" 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" 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 70764a7b..748b392f 100644 Binary files a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo and b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po index 7f404763..5732fdf7 100644 --- a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.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:57+0000\n" -"Last-Translator: Marcin Łabanowski \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!" 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 124a16d6..491edfb0 100644 Binary files a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo and b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po index d07bfc62..afa2db3d 100644 --- a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po +++ b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.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:57+0000\n" -"Last-Translator: Marcin Łabanowski \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!" 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 76f28af1..2c19a73f 100644 Binary files a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo and b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.mo differ diff --git a/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po b/inc/locale/zh_TW/LC_MESSAGES/tinyboard.po index 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 後設資料!" diff --git a/inc/mod/pages.php b/inc/mod/pages.php index dd6622bd..daba799f 100644 --- a/inc/mod/pages.php +++ b/inc/mod/pages.php @@ -2270,6 +2270,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(); @@ -2290,37 +2291,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/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.' ), 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/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); } diff --git a/js/inline-expanding.js b/js/inline-expanding.js index 4cf5a82d..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 = '95%'; + link[i].childNodes[0].style.maxWidth = '98%'; link[i].onclick = function(e) { if (this.childNodes[0].className == 'hidden') return false; 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 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); +} 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); } diff --git a/player.php b/player.php index 33f02215..d1a76a86 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]
-
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; } diff --git a/stylesheets/style.css b/stylesheets/style.css index fcc9365e..ff1c4258 100644 --- a/stylesheets/style.css +++ b/stylesheets/style.css @@ -113,9 +113,6 @@ form table tr td div label { float: left; margin-right: 2px; } -.multifile { - border: 2px dashed #B7C5D9; -} .file:not(.multifile) .post-image { float: left; } @@ -124,7 +121,10 @@ form table tr td div label { } 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 +148,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 +289,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 +436,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 +462,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 +489,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 { @@ -575,7 +575,7 @@ pre { .compact-boardlist { padding: 3px; - padding-bottom: 0px; + padding-bottom: 0; } .compact-boardlist .cb-item { display: inline-block; @@ -630,6 +630,6 @@ pre { /* Containerchan */ div.post video.post-image { - padding: 0px; - margin: 10px 25px 5px 5px; + padding: 0; + margin: 5px 25px 5px 5px; } diff --git a/templates/mod/recent_posts.html b/templates/mod/recent_posts.html index 4a2f9baa..b9c2c0cc 100644 --- a/templates/mod/recent_posts.html +++ b/templates/mod/recent_posts.html @@ -1,6 +1,19 @@ -{% 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 %} + {% if not post.thread %} + {% set thread = post.id %} + {% else %} + {% set thread = post.thread %} + {% endif %} +

/{{ post.board }}/{{ post.id }}
+ {{ post.built }} +
+ {% endfor %} {% endif %} +Next {{ limit }} posts diff --git a/templates/post/fileinfo.html b/templates/post/fileinfo.html index f12857d2..4a3300a4 100644 --- a/templates/post/fileinfo.html +++ b/templates/post/fileinfo.html @@ -27,9 +27,9 @@ {{ file.filename|e|bidi_cleanup }} {% 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.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 %} - 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 %} diff --git a/templates/post_form.html b/templates/post_form.html index b5560678..3dbd8173 100644 --- a/templates/post_form.html +++ b/templates/post_form.html @@ -29,7 +29,7 @@ {% else %} 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' %}: -