From 49a04bf33be7c95bca5f69e0b670061cc1a1f9c3 Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Thu, 9 Jan 2014 20:11:40 +0200 Subject: [PATCH 01/12] change finnish locale contact email --- inc/locale/fi_FI/LC_MESSAGES/tinyboard.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po index 41554409..3d29a39f 100644 --- a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po +++ b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po @@ -9,7 +9,7 @@ msgstr "Project-Id-Version: Tinyboard i18n\n" "Report-Msgid-Bugs-To: savetheinternet@tinyboard.org\n" "POT-Creation-Date: 2010-05-28 06:18-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" - "Last-Translator: Riku \n" + "Last-Translator: Riku \n" "Language-Team: Tinyboard \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" From c0041931f5bbfe9a65f0b62c223b38090dc7c079 Mon Sep 17 00:00:00 2001 From: joosera Date: Fri, 4 Apr 2014 03:24:01 +0100 Subject: [PATCH 02/12] Fix js/expand.js Fixed missing end tags and changed .text to .html since .text strips HTML --- js/expand.js | 79 ++++++++++++++++++++++++++-------------------------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/js/expand.js b/js/expand.js index 8fd3ba29..1c12a07b 100644 --- a/js/expand.js +++ b/js/expand.js @@ -18,49 +18,50 @@ $(document).ready(function(){ return; // not index $('div.post.op span.omitted').each(function() { - var do_expand = function() { - $(this) - .html($(this).text().replace(_("Click reply to view."), ''+_("Click to expand")+'.')) - .find('a').click(function() { - var thread = $(this).parent().parent().parent(); - var id = thread.attr('id').replace(/^thread_/, ''); - $.ajax({ - url: thread.find('p.intro a.post_no:first').attr('href'), - context: document.body, - success: function(data) { - var last_expanded = false; - $(data).find('div.post.reply').each(function() { - thread.find('div.hidden').remove(); - var post_in_doc = thread.find('#' + $(this).attr('id')); - if(post_in_doc.length == 0) { - if(last_expanded) { - $(this).addClass('expanded').insertAfter(last_expanded).before('
'); + var do_expand = function() { + $(this) + .html($(this).html().replace(_("Click reply to view."), ''+_("Click to expand")+'.')) + .find('a').click(function() { + var thread = $(this).parent().parent().parent(); + var id = thread.attr('id').replace(/^thread_/, ''); + $.ajax({ + url: thread.find('p.intro a.post_no:first').attr('href'), + context: document.body, + success: function(data) { + var last_expanded = false; + $(data).find('div.post.reply').each(function() { + thread.find('div.hidden').remove(); + var post_in_doc = thread.find('#' + $(this).attr('id')); + if(post_in_doc.length == 0) { + if(last_expanded) { + $(this).addClass('expanded').insertAfter(last_expanded).before('
'); + } else { + $(this).addClass('expanded').insertAfter(thread.find('div.post:first')).after('
'); + } + last_expanded = $(this); + $(document).trigger('new_post', this); } else { - $(this).addClass('expanded').insertAfter(thread.find('div.post:first')).after('
'); + last_expanded = post_in_doc; } - last_expanded = $(this); - $(document).trigger('new_post', this); - } else { - last_expanded = post_in_doc; - } - }); - $('' + _('Hide expanded replies') + '.') - .insertAfter(thread.find('span.omitted').css('display', 'none')) - .click(function() { - thread.find('.expanded').remove(); - $(this).prev().css('display', ''); - $(this).remove(); }); - } + $('' + _('Hide expanded replies') + '.') + .insertAfter(thread.find('span.omitted').css('display', 'none')) + .click(function() { + thread.find('.expanded').remove(); + $(this).prev().css('display', ''); + $(this).remove(); + }); + } + }); }); - }); - } - - $('div.post.op span.omitted').each(do_expand); - - $(document).bind("new_post", function(e, post) { - if (!$(post).hasClass("reply")) { - $(post).find('div.post.op span.omitted').each(do_expand); } + + $('div.post.op span.omitted').each(do_expand); + + $(document).bind("new_post", function(e, post) { + if (!$(post).hasClass("reply")) { + $(post).find('div.post.op span.omitted').each(do_expand); + } + }); }); }); From 8404b4cd46a040da5511c3ee36c6731b8c9781bd Mon Sep 17 00:00:00 2001 From: undido Date: Sat, 5 Apr 2014 20:46:10 -0300 Subject: [PATCH 03/12] Removed gettext libary's examples and tests folder --- inc/lib/gettext/examples/index.php | 27 ------ .../locale/de_CH/LC_MESSAGES/messages.mo | Bin 585 -> 0 bytes .../locale/de_CH/LC_MESSAGES/messages.po | 30 ------ .../locale/sr_CS/LC_MESSAGES/messages.mo | Bin 829 -> 0 bytes .../locale/sr_CS/LC_MESSAGES/messages.po | 30 ------ inc/lib/gettext/examples/pigs_dropin.php | 89 ------------------ inc/lib/gettext/examples/pigs_fallback.php | 88 ----------------- inc/lib/gettext/examples/update | 14 --- inc/lib/gettext/tests/LocalesTest.php | 75 --------------- inc/lib/gettext/tests/ParsingTest.php | 60 ------------ 10 files changed, 413 deletions(-) delete mode 100644 inc/lib/gettext/examples/index.php delete mode 100644 inc/lib/gettext/examples/locale/de_CH/LC_MESSAGES/messages.mo delete mode 100644 inc/lib/gettext/examples/locale/de_CH/LC_MESSAGES/messages.po delete mode 100644 inc/lib/gettext/examples/locale/sr_CS/LC_MESSAGES/messages.mo delete mode 100644 inc/lib/gettext/examples/locale/sr_CS/LC_MESSAGES/messages.po delete mode 100644 inc/lib/gettext/examples/pigs_dropin.php delete mode 100644 inc/lib/gettext/examples/pigs_fallback.php delete mode 100755 inc/lib/gettext/examples/update delete mode 100644 inc/lib/gettext/tests/LocalesTest.php delete mode 100644 inc/lib/gettext/tests/ParsingTest.php diff --git a/inc/lib/gettext/examples/index.php b/inc/lib/gettext/examples/index.php deleted file mode 100644 index 263cd3d3..00000000 --- a/inc/lib/gettext/examples/index.php +++ /dev/null @@ -1,27 +0,0 @@ - - -PHP-gettext examples - - -

PHP-gettext

- -

Introduction

-

PHP-gettext provides a simple gettext replacement that works independently from the system's gettext abilities. -It can read MO files and use them for translating strings.

-

This version has the ability to cache all strings and translations to speed up the string lookup. -While the cache is enabled by default, it can be switched off with the second parameter in the constructor (e.g. when using very large MO files -that you don't want to keep in memory)

- - -

Examples

- - -
-

Copyright (c) 2003-2006 Danilo Segan

-

Copyright (c) 2005-2006 Steven Armstrong

- - - diff --git a/inc/lib/gettext/examples/locale/de_CH/LC_MESSAGES/messages.mo b/inc/lib/gettext/examples/locale/de_CH/LC_MESSAGES/messages.mo deleted file mode 100644 index 91930376c54ef58d1650467fc5b15d9d1b03116d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 585 zcmZvZ+e!m55Qf*&&0cz~FgJoCsk?2JvK|oYfkKO7w_cm>j@f9Nlw@kv_Yiy%AIFFA z37lPpDmdgLv-AH+W|NQA<=22?iCJTs%nH+G%D83r7|E)9>)VS# zz-bknR#EO5Y~(P}3T9{s$O07zW9c4{!XL^1tEGkZz@xCUYKoV~}4 zL?;(F=)ATjDNpg?HBPJ}(ep~@;$*74NNob))nzK$4kfWuoJzt3>QU4XaU|*uh?>c6 zv>kDUjp7;~b-CjoUo4^+>W!qyzL~llS&Q0&O{ThGZ{&3_8}{z z^GJt-^jx&&zOuPHbmGipHrGZa&>HIRTkmJZ47CBpWq6s6p~o-sN5V=&^IIL59J~dE S1wpP6F3@L%&I-cvNxlF~0Hja= diff --git a/inc/lib/gettext/examples/locale/de_CH/LC_MESSAGES/messages.po b/inc/lib/gettext/examples/locale/de_CH/LC_MESSAGES/messages.po deleted file mode 100644 index 6e4886b5..00000000 --- a/inc/lib/gettext/examples/locale/de_CH/LC_MESSAGES/messages.po +++ /dev/null @@ -1,30 +0,0 @@ -# Sample translation for PHP-gettext 1.0 -# Copyright (c) 2003 Danilo Segan -# -msgid "" -msgstr "" -"Project-Id-Version: pigs\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-10-23 04:50+0200\n" -"PO-Revision-Date: 2003-11-01 23:40+0100\n" -"Last-Translator: Danilo Segan \n" -"Language-Team: Serbian (sr) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -#"Plural-Forms: nplurals=2; plural=n != 1;\n" - -#: pigs.php:19 -msgid "" -"This is how the story goes.\n" -"\n" -msgstr "" -"Und so geht die Geschichte.\n" -"\n" - -#: pigs.php:21 -#, php-format -msgid "%d pig went to the market\n" -msgid_plural "%d pigs went to the market\n" -msgstr[0] "%d Schwein ging zum Markt\n" -msgstr[1] "%d Schweine gingen zum Markt\n" diff --git a/inc/lib/gettext/examples/locale/sr_CS/LC_MESSAGES/messages.mo b/inc/lib/gettext/examples/locale/sr_CS/LC_MESSAGES/messages.mo deleted file mode 100644 index 497c8830ca84f880f8d484df057c0bf725163edd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 829 zcmah{%We}f6dhihS+b_$vS`(+a_~$-R82Ak(T7y25m6af<0fV@bYe%g(^9Dm3gYnt zNRg2E1Qa125s&f_xSmj@iz2Rk#=iHSW1sQN@2i*JdKi}w*AO+t6~s2e#Un%= z!4PwZ5#qxI&-;S&R|LQ4dDn5C!ws-p2A0ZjdwTO-7-T6NaACkmFg*@^ruMk;|F-nG zy`-0Ez|oTjrA8a64k49XSA5@VEBS;#2AO1?86H7MX_W+&gjJxm=oVe3SV1D$;rp4}amK3?8sdO3h-iJ82FTlH z+K@ysp>u}LB3Nf4%O%|BDHG7_mf4-XeQ8)laI=a6kq%kPNy1q_LY~^qkh!SU(s}gO zR%>JSYC(niYf>1zLy{a0(7oYL&CNm1GSPrek15Sf{2I%m_n0fPAv&^~i8O+h z-OTvye5hDXHl^z82*jXFbzE)0bQz2JfW~nE3k%?u^hO*6a2qHf8}rpTJZ&}Onp-ZG zv}Qoz=x8cI4qZY`fSRyTerWr{j_r4Q0`^z&%#Mp=`x%N6KI}>H+)j!&)8e{;4c_LFn#JWPt$cI -# -msgid "" -msgstr "" -"Project-Id-Version: pigs\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2003-10-23 04:50+0200\n" -"PO-Revision-Date: 2006-02-02 21:06+0100\n" -"Last-Translator: Danilo Segan \n" -"Language-Team: Serbian (sr) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -#: pigs.php:19 -msgid "" -"This is how the story goes.\n" -"\n" -msgstr "Овако иде прича.\n\n" - -#: pigs.php:21 -#, php-format -msgid "%d pig went to the market\n" -msgid_plural "%d pigs went to the market\n" -msgstr[0] "%d мало прасе је отишло на пијац\n" -msgstr[1] "%d мала прасета су отишла на пијац\n" -msgstr[2] "%d малих прасића је отишло на пијац\n" diff --git a/inc/lib/gettext/examples/pigs_dropin.php b/inc/lib/gettext/examples/pigs_dropin.php deleted file mode 100644 index 94fd8507..00000000 --- a/inc/lib/gettext/examples/pigs_dropin.php +++ /dev/null @@ -1,89 +0,0 @@ -. - Copyright (c) 2005,2006 Steven Armstrong - - This file is part of PHP-gettext. - - PHP-gettext is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - PHP-gettext is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with PHP-gettext; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -*/ - -error_reporting(E_ALL | E_STRICT); - -// define constants -define('PROJECT_DIR', realpath('./')); -define('LOCALE_DIR', PROJECT_DIR .'/locale'); -define('DEFAULT_LOCALE', 'en_US'); - -require_once('../gettext.inc'); - -$supported_locales = array('en_US', 'sr_CS', 'de_CH'); -$encoding = 'UTF-8'; - -$locale = (isset($_GET['lang']))? $_GET['lang'] : DEFAULT_LOCALE; - -// gettext setup -T_setlocale(LC_MESSAGES, $locale); -// Set the text domain as 'messages' -$domain = 'messages'; -bindtextdomain($domain, LOCALE_DIR); -// bind_textdomain_codeset is supported only in PHP 4.2.0+ -if (function_exists('bind_textdomain_codeset')) - bind_textdomain_codeset($domain, $encoding); -textdomain($domain); - -header("Content-type: text/html; charset=$encoding"); -?> - - -PHP-gettext dropin example - - -

PHP-gettext as a dropin replacement

-

Example showing how to use PHP-gettext as a dropin replacement for the native gettext library.

-"; -foreach($supported_locales as $l) { - print "[$l] "; -} -print "

\n"; - -if (!locale_emulation()) { - print "

locale '$locale' is supported by your system, using native gettext implementation.

\n"; -} -else { - print "

locale '$locale' is _not_ supported on your system, using the default locale '". DEFAULT_LOCALE ."'.

\n"; -} -?> - -
- -"; -print _("This is how the story goes.\n\n"); -for ($number=6; $number>=0; $number--) { - print sprintf(T_ngettext("%d pig went to the market\n", - "%d pigs went to the market\n", $number), - $number ); -} -print "\n"; -?> - -
-

« back

- - diff --git a/inc/lib/gettext/examples/pigs_fallback.php b/inc/lib/gettext/examples/pigs_fallback.php deleted file mode 100644 index 353190da..00000000 --- a/inc/lib/gettext/examples/pigs_fallback.php +++ /dev/null @@ -1,88 +0,0 @@ -. - Copyright (c) 2005,2006 Steven Armstrong - - This file is part of PHP-gettext. - - PHP-gettext is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - PHP-gettext is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with PHP-gettext; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -*/ - -error_reporting(E_ALL | E_STRICT); - -// define constants -define('PROJECT_DIR', realpath('./')); -define('LOCALE_DIR', PROJECT_DIR .'/locale'); -define('DEFAULT_LOCALE', 'en_US'); - -require_once('../gettext.inc'); - -$supported_locales = array('en_US', 'sr_CS', 'de_CH'); -$encoding = 'UTF-8'; - -$locale = (isset($_GET['lang']))? $_GET['lang'] : DEFAULT_LOCALE; - -// gettext setup -T_setlocale(LC_MESSAGES, $locale); -// Set the text domain as 'messages' -$domain = 'messages'; -T_bindtextdomain($domain, LOCALE_DIR); -T_bind_textdomain_codeset($domain, $encoding); -T_textdomain($domain); - -header("Content-type: text/html; charset=$encoding"); -?> - - -PHP-gettext fallback example - - -

PHP-gettext as a fallback solution

-

Example showing how to use PHP-gettext as a fallback solution if the native gettext library is not available or the system does not support the requested locale.

- -"; -foreach($supported_locales as $l) { - print "[$l] "; -} -print "

\n"; - -if (!locale_emulation()) { - print "

locale '$locale' is supported by your system, using native gettext implementation.

\n"; -} -else { - print "

locale '$locale' is not supported on your system, using custom gettext implementation.

\n"; -} -?> - -
- -"; -print T_("This is how the story goes.\n\n"); -for ($number=6; $number>=0; $number--) { - print sprintf( T_ngettext("%d pig went to the market\n", - "%d pigs went to the market\n", $number), - $number ); -} -print "\n"; -?> - -
-

« back

- - diff --git a/inc/lib/gettext/examples/update b/inc/lib/gettext/examples/update deleted file mode 100755 index 76b4308a..00000000 --- a/inc/lib/gettext/examples/update +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -TEMPLATE=pigs.pot -xgettext -kT_ngettext:1,2 -kT_ -L PHP -o $TEMPLATE pigs_dropin.php -if [ "x$1" = "x-p" ]; then - msgfmt --statistics $TEMPLATE -else - if [ -f $1.po ]; then - msgmerge -o .tmp$1.po $1.po $TEMPLATE - mv .tmp$1.po $1.po - msgfmt --statistics $1.po - else - echo "Usage: $0 [-p|]" - fi -fi diff --git a/inc/lib/gettext/tests/LocalesTest.php b/inc/lib/gettext/tests/LocalesTest.php deleted file mode 100644 index fab21f86..00000000 --- a/inc/lib/gettext/tests/LocalesTest.php +++ /dev/null @@ -1,75 +0,0 @@ -assertEquals('sr_RS', _setlocale(LC_MESSAGES, 0)); - } - - public function test_setlocale_system() - { - putenv("LC_ALL="); - // For an existing locale, it never needs emulation. - putenv("LANG=C"); - _setlocale(LC_MESSAGES, ""); - $this->assertEquals(0, locale_emulation()); - } - - public function test_setlocale_emulation() - { - putenv("LC_ALL="); - // If we set it to a non-existent locale, it still works, but uses - // emulation. - _setlocale(LC_MESSAGES, "xxx_XXX"); - $this->assertEquals('xxx_XXX', _setlocale(LC_MESSAGES, 0)); - $this->assertEquals(1, locale_emulation()); - } - - public function test_get_list_of_locales() - { - // For a locale containing country code, we prefer - // full locale name, but if that's not found, fall back - // to the language only locale name. - $this->assertEquals(array("sr_RS", "sr"), - get_list_of_locales("sr_RS")); - - // If language code is used, it's the only thing returned. - $this->assertEquals(array("sr"), - get_list_of_locales("sr")); - - // There is support for language and charset only. - $this->assertEquals(array("sr.UTF-8", "sr"), - get_list_of_locales("sr.UTF-8")); - - // It can also split out character set from the full locale name. - $this->assertEquals(array("sr_RS.UTF-8", "sr_RS", "sr"), - get_list_of_locales("sr_RS.UTF-8")); - - // There is support for @modifier in locale names as well. - $this->assertEquals(array("sr_RS.UTF-8@latin", "sr_RS@latin", "sr@latin", - "sr_RS.UTF-8", "sr_RS", "sr"), - get_list_of_locales("sr_RS.UTF-8@latin")); - - // We can pass in only language and modifier. - $this->assertEquals(array("sr@latin", "sr"), - get_list_of_locales("sr@latin")); - - - // If locale name is not following the regular POSIX pattern, - // it's used verbatim. - $this->assertEquals(array("something"), - get_list_of_locales("something")); - - // Passing in an empty string returns an empty array. - $this->assertEquals(array(), - get_list_of_locales("")); - } -} - -?> diff --git a/inc/lib/gettext/tests/ParsingTest.php b/inc/lib/gettext/tests/ParsingTest.php deleted file mode 100644 index ff561989..00000000 --- a/inc/lib/gettext/tests/ParsingTest.php +++ /dev/null @@ -1,60 +0,0 @@ -assertEquals( - 'nplurals=2; plural=n == 1 ? 0 : 1;', - $parser->extract_plural_forms_header_from_po_header("")); - - // Extracting it from the middle of the header works. - $this->assertEquals( - 'nplurals=1; plural=0;', - $parser->extract_plural_forms_header_from_po_header( - "Content-type: text/html; charset=UTF-8\n" - ."Plural-Forms: nplurals=1; plural=0;\n" - ."Last-Translator: nobody\n" - )); - - // It's also case-insensitive. - $this->assertEquals( - 'nplurals=1; plural=0;', - $parser->extract_plural_forms_header_from_po_header( - "PLURAL-forms: nplurals=1; plural=0;\n" - )); - - // It falls back to default if it's not on a separate line. - $this->assertEquals( - 'nplurals=2; plural=n == 1 ? 0 : 1;', - $parser->extract_plural_forms_header_from_po_header( - "Content-type: text/html; charset=UTF-8" // note the missing \n here - ."Plural-Forms: nplurals=1; plural=0;\n" - ."Last-Translator: nobody\n" - )); - } - - /** - * @dataProvider data_provider_test_npgettext - */ - public function test_npgettext($number, $expected) { - $parser = new gettext_reader(NULL); - $result = $parser->npgettext("context", - "%d pig went to the market\n", - "%d pigs went to the market\n", - $number); - $this->assertSame($expected, $result); - } - public static function data_provider_test_npgettext() { - return array( - array(1, "%d pig went to the market\n"), - array(2, "%d pigs went to the market\n"), - ); - } - -} -?> From c9d56bd7ca3bcd07e365c3f0bf562b104998a169 Mon Sep 17 00:00:00 2001 From: czaks Date: Mon, 21 Apr 2014 17:15:06 +0200 Subject: [PATCH 04/12] add donation info to readme.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 0d668715..000fb32f 100644 --- a/README.md +++ b/README.md @@ -78,6 +78,15 @@ links may be helpful for you as well: [irc.datnode.net #tinyboard](irc://irc.datnode.net/tinyboard). * You may find help at [tinyboard.org](http://tinyboard.org/#help). +Donations +--------- +Do you like our work? You can motivate us financially to do better ;) +* Bitcoin: [![tip for next commit](http://tip4commit.com/projects/708.svg)](http://tip4commit.com/projects/708) + +You can also ask us to develop some feature specially for you <3. Join our IRC +channel and ask for a quote (there are a few of us, who work with the codebase +and are skilled enough to develop such features pretty quickly). + CLI tools ----------------- There are a few command line interface tools, based on Tinyboard-Tools. These need From 039f54898ae6dcd348c7856c62034b1d704cbf05 Mon Sep 17 00:00:00 2001 From: czaks Date: Tue, 22 Apr 2014 08:49:40 +0200 Subject: [PATCH 05/12] update locales from transifex --- inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo | Bin 18887 -> 18887 bytes inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/de_DE/LC_MESSAGES/tinyboard.mo | Bin 18846 -> 18846 bytes inc/locale/de_DE/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/en/LC_MESSAGES/javascript.po | 4 +- inc/locale/en/LC_MESSAGES/tinyboard.po | 131 ++++++++++++++++---- inc/locale/en_AU/LC_MESSAGES/tinyboard.mo | Bin 491 -> 491 bytes inc/locale/en_AU/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/es_ES/LC_MESSAGES/tinyboard.mo | Bin 21714 -> 21714 bytes inc/locale/es_ES/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo | Bin 21716 -> 21716 bytes inc/locale/fi_FI/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo | Bin 23514 -> 23514 bytes inc/locale/fr_FR/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo | Bin 24061 -> 24104 bytes inc/locale/hu_HU/LC_MESSAGES/tinyboard.po | 134 ++++++++++++++++---- inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo | Bin 12317 -> 12317 bytes inc/locale/lt_LT/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo | Bin 23717 -> 23958 bytes inc/locale/pl_PL/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo | Bin 23211 -> 23211 bytes inc/locale/pt_BR/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- inc/locale/ru_RU/LC_MESSAGES/javascript.js | 2 +- inc/locale/ru_RU/LC_MESSAGES/javascript.po | 9 +- inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo | Bin 14693 -> 14742 bytes inc/locale/ru_RU/LC_MESSAGES/tinyboard.po | 135 +++++++++++++++++---- inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo | Bin 23847 -> 23844 bytes inc/locale/sk_SK/LC_MESSAGES/tinyboard.po | 134 ++++++++++++++++---- inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo | Bin 21727 -> 21727 bytes inc/locale/tr_TR/LC_MESSAGES/tinyboard.po | 132 ++++++++++++++++---- tools/i18n_update.sh | 3 + 31 files changed, 1553 insertions(+), 319 deletions(-) create mode 100755 tools/i18n_update.sh diff --git a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.mo index 8550e03c38ca4d321c7f22bdcb9612e3bdb5abba..46d03ad30b80453c761d510c2216336b68915e02 100644 GIT binary patch delta 35 rcmX>;neq5!#toNr*bNno46O`ICg0Ri;4m^&FtoHXFx||kdrSrZ*yjq( delta 35 rcmX>;neq5!#toNr*bNj646IBnC*Raj;4rjQFfy_-HQCIldrSrZ*>nom diff --git a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po index ebc65709..ec525542 100644 --- a/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po +++ b/inc/locale/cs_CZ/LC_MESSAGES/tinyboard.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "sekunda" @@ -35,6 +36,7 @@ msgstr[2] "sekund" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "minuta" @@ -47,6 +49,7 @@ msgstr[2] "minut" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "hodina" @@ -59,6 +62,7 @@ msgstr[2] "hodin" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "den" @@ -71,6 +75,7 @@ msgstr[2] "dnů" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "týden" @@ -83,6 +88,7 @@ msgstr[2] "týdnů" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "rok" @@ -92,6 +98,7 @@ msgstr[2] "let" #: ../../../../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 msgid "Banned!" msgstr "Máš ban!" @@ -102,7 +109,8 @@ msgstr "Máš ban!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Předchozí" @@ -113,28 +121,29 @@ msgstr "Předchozí" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Další" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Chyba" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Nastala chyba." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Přihlášení" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Příspěvek je příliš dlouhý. Klikni sem pro zobrazení celého textu." @@ -142,41 +151,47 @@ msgstr "Příspěvek je příliš dlouhý. Klikni sem pro zob #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Zabanovat" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Zabanovat a smazat" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Smazat soubor" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Určitě chceš smazat tento soubor?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Zakrýt soubor" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Určitě chceš zakrýt tento soubor?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Přesunout odpověď na jiný board" @@ -184,6 +199,7 @@ msgstr "Přesunout odpověď na jiný board" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Upravit příspěvek" @@ -192,69 +208,69 @@ msgstr "Upravit příspěvek" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Smazat" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Určitě to chceš smazat?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Smazat všechny příspěvky podle IP" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Určitě chceš smazat všechny příspěvky od této IP adresy?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Smazat všechny příspěvky podle IP na všech boardech" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Určitě chceš smazat všechny příspěvky od této IP adresy, na všech boardech?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Odlepit vlákno" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Přilepit vlákno" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Povolit oživování vlákna" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Zakázat oživování vlákna" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Odemknout vlákno" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Zamknout vlákno" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Přesunout vlákno na jiný board" @@ -723,6 +739,9 @@ msgstr "Log moderací" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -897,6 +916,8 @@ msgstr "Smazat příspěvek" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -921,6 +942,7 @@ msgstr "Soubor" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -978,6 +1000,11 @@ msgstr "Heslo" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1041,6 +1068,7 @@ msgstr "bez předmětu" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1174,6 +1202,8 @@ msgstr "vynecháno. Klikni na Odpovědět pro zobrazení." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1218,6 +1248,8 @@ msgstr "Email" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1319,6 +1351,8 @@ msgstr "Flagy" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1353,6 +1387,8 @@ msgstr "Přilepené" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1387,6 +1423,8 @@ msgstr "Zamknout" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1468,6 +1506,10 @@ msgstr "Žádné výsledky." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1595,6 +1637,7 @@ msgstr "Nový příspěvek" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1683,6 +1726,11 @@ msgstr "" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1714,6 +1762,8 @@ msgstr "Personál" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1763,6 +1813,8 @@ msgstr "Nová poznámka" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1832,6 +1884,11 @@ msgstr "bez důvodu" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1877,6 +1934,8 @@ msgstr "všechny boardy" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1905,6 +1964,8 @@ msgstr "Nastavit" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1941,6 +2002,8 @@ msgstr "nikdy" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2004,6 +2067,8 @@ msgstr "Čas" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2056,6 +2121,7 @@ msgstr "Nový ban" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2248,6 +2314,8 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2276,6 +2344,8 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2293,6 +2363,8 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2528,3 +2600,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo b/inc/locale/de_DE/LC_MESSAGES/tinyboard.mo index 877b5d5d3d4153bd3ffb15f7d6224351045e41da..b0455e354743f8926ca2e78cfb56d569769cf679 100644 GIT binary patch delta 35 rcmbO?nQ`7^#trXu*$owp46O`ICV$mc;4m^&FtoHXFx@Px*C-7D(<=&$ delta 35 rcmbO?nQ`7^#trXu*$os746IBnCx6vd;4rjQFfy_-HQ6ky*C-7D)3^$j diff --git a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po index 8bab3ba8..d71b660e 100644 --- a/inc/locale/de_DE/LC_MESSAGES/tinyboard.po +++ b/inc/locale/de_DE/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "Sekunde" @@ -35,6 +36,7 @@ msgstr[1] "Sekunden" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "Minute" @@ -46,6 +48,7 @@ msgstr[1] "Minuten" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "Stunde" @@ -57,6 +60,7 @@ msgstr[1] "Stunden" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "Tag" @@ -68,6 +72,7 @@ msgstr[1] "Tage" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "Woche" @@ -79,6 +84,7 @@ msgstr[1] "Wochen" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "Jahr" @@ -87,6 +93,7 @@ msgstr[1] "Jahre" #: ../../../../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 msgid "Banned!" msgstr "Gebannt!" @@ -97,7 +104,8 @@ msgstr "Gebannt!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Vorheriges" @@ -108,28 +116,29 @@ msgstr "Vorheriges" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Nächstes" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Fehler" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Ein Fehler ist aufgetreten" #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Login" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Post zu lang. Klicke hier um alles anzuzeigen." @@ -137,41 +146,47 @@ msgstr "Post zu lang. Klicke hier um alles anzuzeigen." #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Bannen" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Bannen & Löschen" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Datei löschen" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Bist du sicher dass du diese Datei löschen willst?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Datei spoilern" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Bist du sicher das du diese Datei spoilern willst?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Antwort in ein anderes Brett verschieben" @@ -179,6 +194,7 @@ msgstr "Antwort in ein anderes Brett verschieben" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Post editieren" @@ -187,69 +203,69 @@ msgstr "Post editieren" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Löschen" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Bist du sicher dass du das löschen willst?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Alle Posts dieser IP löschen" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Bist du sicher dass du alle Posts dieser IP löschen willst?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Faden nicht mehr anpinnen" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Faden anpinnen" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Faden darf gestoßen werden" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Faden darf nicht gestoßen werden" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Faden aufmachen" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Faden schließen" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Faden in anderes Brett verschieben" @@ -718,6 +734,9 @@ msgstr "Mod-Log" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -892,6 +911,8 @@ msgstr "Post löschen" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -916,6 +937,7 @@ msgstr "Datei" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -973,6 +995,11 @@ msgstr "Passwort" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1036,6 +1063,7 @@ msgstr "Kein Betreff" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1165,6 +1193,8 @@ msgstr "nicht angezeigt. (Klicke 'Antworten' zum anzeigen.)" #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1209,6 +1239,8 @@ msgstr "Email" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1310,6 +1342,8 @@ msgstr "Länderflaggen" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1344,6 +1378,8 @@ msgstr "Pinn" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1378,6 +1414,8 @@ msgstr "Geschloßen" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1458,6 +1496,10 @@ msgstr "Keine Ergebnisse" #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1585,6 +1627,7 @@ msgstr "Neue Posts" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1673,6 +1716,11 @@ msgstr "Neuigkeiten-Beitrag posten" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1704,6 +1752,8 @@ msgstr "Personal" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1753,6 +1803,8 @@ msgstr "Neue Notiz" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1822,6 +1874,11 @@ msgstr "kein Grund" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1867,6 +1924,8 @@ msgstr "Alle Bretter" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1895,6 +1954,8 @@ msgstr "übernehmen" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1931,6 +1992,8 @@ msgstr "nie" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1994,6 +2057,8 @@ msgstr "Zeit" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2046,6 +2111,7 @@ msgstr "Neuer Bann" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2238,6 +2304,8 @@ msgstr "Antwort steht noch aus" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2266,6 +2334,8 @@ msgstr "Du hast die maximale Anzahl an Bannbeschwerden eingereicht. Du kannst di #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2283,6 +2353,8 @@ msgstr "und sie wurde abgelehnt. " #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2518,3 +2590,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/en/LC_MESSAGES/javascript.po b/inc/locale/en/LC_MESSAGES/javascript.po index 032acb0f..f64de6a9 100644 --- a/inc/locale/en/LC_MESSAGES/javascript.po +++ b/inc/locale/en/LC_MESSAGES/javascript.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: vichan 4.4.98\n" +"Project-Id-Version: vichan 4.4.99-pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/inc/locale/en/LC_MESSAGES/tinyboard.po b/inc/locale/en/LC_MESSAGES/tinyboard.po index 63edda4b..ec8f45a6 100644 --- a/inc/locale/en/LC_MESSAGES/tinyboard.po +++ b/inc/locale/en/LC_MESSAGES/tinyboard.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: vichan 4.4.98\n" +"Project-Id-Version: vichan 4.4.99-pre\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=0;\n" +"Plural-Forms: nplurals=2; plural=1;\n" #: ../../../../inc/functions.php:583 ../../../../inc/functions.php:600 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 @@ -24,6 +24,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "" @@ -35,6 +36,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "" @@ -46,6 +48,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "" @@ -57,6 +60,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "" @@ -68,6 +72,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "" @@ -79,6 +84,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "" @@ -87,6 +93,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 msgid "Banned!" msgstr "" @@ -97,7 +104,8 @@ msgstr "" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "" @@ -108,28 +116,29 @@ msgstr "" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "" #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "" @@ -137,41 +146,47 @@ msgstr "" #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "" @@ -179,6 +194,7 @@ msgstr "" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "" @@ -187,69 +203,69 @@ msgstr "" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "" @@ -717,6 +733,9 @@ msgstr "" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -891,6 +910,8 @@ msgstr "" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -915,6 +936,7 @@ msgstr "" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -972,6 +994,11 @@ msgstr "" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1035,6 +1062,7 @@ msgstr "" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1164,6 +1192,8 @@ msgstr "" #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1208,6 +1238,8 @@ msgstr "" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1309,6 +1341,8 @@ msgstr "" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1343,6 +1377,8 @@ msgstr "" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1377,6 +1413,8 @@ msgstr "" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1457,6 +1495,10 @@ msgstr "" #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1584,6 +1626,7 @@ msgstr "" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1672,6 +1715,11 @@ msgstr "" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1703,6 +1751,8 @@ msgstr "" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1752,6 +1802,8 @@ msgstr "" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1821,6 +1873,11 @@ msgstr "" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1866,6 +1923,8 @@ msgstr "" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1894,6 +1953,8 @@ msgstr "" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1930,6 +1991,8 @@ msgstr "" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1993,6 +2056,8 @@ msgstr "" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2045,6 +2110,7 @@ msgstr "" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2237,6 +2303,8 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2265,6 +2333,8 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2282,6 +2352,8 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2517,3 +2589,16 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be fetched." +msgstr "" diff --git a/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo b/inc/locale/en_AU/LC_MESSAGES/tinyboard.mo index 94eb500cdb3cfa181af04f5cfeb50dc0f4c4db0e..415ea4b5857c1f3a2f060bb02989b4c2f5b33d11 100644 GIT binary patch delta 30 lcmaFO{F-?}JG-HRk)f4=$;3Vd4kJSaLrW_I(~a9q83B@j2)zIR delta 30 lcmaFO{F-?}JG+5`fq|8Y<-|S(4ns=?BO@zQla1R<83B_12*&^b diff --git a/inc/locale/en_AU/LC_MESSAGES/tinyboard.po b/inc/locale/en_AU/LC_MESSAGES/tinyboard.po index ae4a07eb..58d010d9 100644 --- a/inc/locale/en_AU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/en_AU/LC_MESSAGES/tinyboard.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "" @@ -34,6 +35,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "" @@ -45,6 +47,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "" @@ -56,6 +59,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "" @@ -67,6 +71,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "" @@ -78,6 +83,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "" @@ -86,6 +92,7 @@ msgstr[1] "" #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 msgid "Banned!" msgstr "" @@ -96,7 +103,8 @@ msgstr "" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "" @@ -107,28 +115,29 @@ msgstr "" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "" #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "" @@ -136,41 +145,47 @@ msgstr "" #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "" @@ -178,6 +193,7 @@ msgstr "" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "" @@ -186,69 +202,69 @@ msgstr "" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "" @@ -717,6 +733,9 @@ msgstr "" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -891,6 +910,8 @@ msgstr "" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -915,6 +936,7 @@ msgstr "" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -972,6 +994,11 @@ msgstr "" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1035,6 +1062,7 @@ msgstr "" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1164,6 +1192,8 @@ msgstr "" #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1208,6 +1238,8 @@ msgstr "" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1309,6 +1341,8 @@ msgstr "" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1343,6 +1377,8 @@ msgstr "" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1377,6 +1413,8 @@ msgstr "" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1457,6 +1495,10 @@ msgstr "" #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1584,6 +1626,7 @@ msgstr "" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1672,6 +1715,11 @@ msgstr "" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1703,6 +1751,8 @@ msgstr "" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1752,6 +1802,8 @@ msgstr "" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1821,6 +1873,11 @@ msgstr "" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1866,6 +1923,8 @@ msgstr "" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1894,6 +1953,8 @@ msgstr "" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1930,6 +1991,8 @@ msgstr "" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1993,6 +2056,8 @@ msgstr "" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2045,6 +2110,7 @@ msgstr "" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2237,6 +2303,8 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2265,6 +2333,8 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2282,6 +2352,8 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2517,3 +2589,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo index 24c9cdb736058a4ca869c3b15e15b55cac086eba..4969ea9fd4cdbe27f991ded5fac4cd660d09e734 100644 GIT binary patch delta 35 rcmcb#lJU|?#tjop*bNno46O`ICQmm};4m^&FtoHXFx|Z0L|6d;*vAU7 delta 35 rcmcb#lJU|?#tjop*bNj646IBnCr>v~;4rjQFfy_-HQBu1L|6d;*;ER< diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po index 94ccfd50..39c92796 100644 --- a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po +++ b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "segundo" @@ -34,6 +35,7 @@ msgstr[1] "segundos" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "minuto" @@ -45,6 +47,7 @@ msgstr[1] "minutos" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "hora" @@ -56,6 +59,7 @@ msgstr[1] "horas" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "día" @@ -67,6 +71,7 @@ msgstr[1] "días" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "semana" @@ -78,6 +83,7 @@ msgstr[1] "semanas" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "año" @@ -86,6 +92,7 @@ msgstr[1] "años" #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 msgid "Banned!" msgstr "Baneado!" @@ -96,7 +103,8 @@ msgstr "Baneado!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Anterior" @@ -107,28 +115,29 @@ msgstr "Anterior" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Siguiente" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Error" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Ha ocurrido un error." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Iniciar sesión" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "El post es muy largo. Click aquí para ver el texto completo." @@ -136,41 +145,47 @@ msgstr "El post es muy largo. Click aquí para ver el texto c #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Ban" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Ban & Eleminar" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Eliminar archivo" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Estás seguro de eliminar este archivo?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Spoiler" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Estás seguro de marcar como spoiler este archivo?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Mover respuesta a otro tablón" @@ -178,6 +193,7 @@ msgstr "Mover respuesta a otro tablón" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Editar post" @@ -186,69 +202,69 @@ msgstr "Editar post" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Eliminar" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Estás seguro de eliminar esto?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Eliminar todos los posts por IP" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Estás seguro de querer eliminar todos los posts por esta dirección IP?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Eliminar todos los posts por IP en todos los tablones" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Estás seguro de eliminar todos los posts de esta dirección IP, en todos los tablones?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Hacer el hilo poco importante" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Hacer el hilo importante" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Permitir que este hilo se mueva" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Evitar que este hilo se mueva" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Desbloquear hilo" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Bloquear hilo" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Mover hilo a otro tablón" @@ -717,6 +733,9 @@ msgstr "Log de moderación" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -891,6 +910,8 @@ msgstr "Eleminar Post" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -915,6 +936,7 @@ msgstr "Archivo" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -972,6 +994,11 @@ msgstr "Contraseña" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1035,6 +1062,7 @@ msgstr "sin tema" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1164,6 +1192,8 @@ msgstr "omitidos. Click Responder para ver." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1208,6 +1238,8 @@ msgstr "Email" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1309,6 +1341,8 @@ msgstr "Banderas" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1343,6 +1377,8 @@ msgstr "Marca" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1377,6 +1413,8 @@ msgstr "Bloquear" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1457,6 +1495,10 @@ msgstr "Ningún resultado." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1584,6 +1626,7 @@ msgstr "Nuevo post" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1672,6 +1715,11 @@ msgstr "Postear nueva entrada" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1703,6 +1751,8 @@ msgstr "Staff" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1752,6 +1802,8 @@ msgstr "Nueva nota" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1821,6 +1873,11 @@ msgstr "Sin razón" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1866,6 +1923,8 @@ msgstr "Todos los tablones" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1894,6 +1953,8 @@ msgstr "Conjunto" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1930,6 +1991,8 @@ msgstr "nunca" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1993,6 +2056,8 @@ msgstr "Tiempo" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2045,6 +2110,7 @@ msgstr "Nuevo Ban" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2237,6 +2303,8 @@ msgstr "Sigue pendiente" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2265,6 +2333,8 @@ msgstr "Has alcanzado el número máximo de apelaciones permitido. Ya no puedes #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2282,6 +2352,8 @@ msgstr "y fue rechazado." #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2517,3 +2589,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.mo index e8545e5ba929148e9edc00b785b4f05c84608ef0..cf9d87341ebd555c8a2a4b2b7892bf63a11f6817 100644 GIT binary patch delta 35 rcmcbzlJUw)#tjop*bNno46O`ICQmm};4m^&FtoHXFx|Z0L{tF)*-;9& delta 35 rcmcbzlJUw)#tjop*bNj646IBnCr>v~;4rjQFfy_-HQBu1L{tF)+1?7l diff --git a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po index 111155de..9bbad2e1 100644 --- a/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po +++ b/inc/locale/fi_FI/LC_MESSAGES/tinyboard.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "segundo" @@ -34,6 +35,7 @@ msgstr[1] "segundos" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "minuto" @@ -45,6 +47,7 @@ msgstr[1] "minutos" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "hora" @@ -56,6 +59,7 @@ msgstr[1] "horas" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "día" @@ -67,6 +71,7 @@ msgstr[1] "días" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "semana" @@ -78,6 +83,7 @@ msgstr[1] "semanas" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "año" @@ -86,6 +92,7 @@ msgstr[1] "años" #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 msgid "Banned!" msgstr "Baneado!" @@ -96,7 +103,8 @@ msgstr "Baneado!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Anterior" @@ -107,28 +115,29 @@ msgstr "Anterior" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Siguiente" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Error" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Ha ocurrido un error." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Iniciar sesión" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "El post es muy largo. Click aquí para ver el texto completo." @@ -136,41 +145,47 @@ msgstr "El post es muy largo. Click aquí para ver el texto c #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Ban" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Ban & Eleminar" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Eliminar archivo" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Estás seguro de eliminar este archivo?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Spoiler" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Estás seguro de marcar como spoiler este archivo?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Mover respuesta a otro tablón" @@ -178,6 +193,7 @@ msgstr "Mover respuesta a otro tablón" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Editar post" @@ -186,69 +202,69 @@ msgstr "Editar post" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Eliminar" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Estás seguro de eliminar esto?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Eliminar todos los posts por IP" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Estás seguro de querer eliminar todos los posts por esta dirección IP?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Eliminar todos los posts por IP en todos los tablones" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Estás seguro de eliminar todos los posts de esta dirección IP, en todos los tablones?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Hacer el hilo poco importante" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Hacer el hilo importante" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Permitir que este hilo se mueva" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Evitar que este hilo se mueva" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Desbloquear hilo" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Bloquear hilo" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Mover hilo a otro tablón" @@ -717,6 +733,9 @@ msgstr "Log de moderación" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -891,6 +910,8 @@ msgstr "Eleminar Post" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -915,6 +936,7 @@ msgstr "Archivo" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -972,6 +994,11 @@ msgstr "Contraseña" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1035,6 +1062,7 @@ msgstr "sin tema" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1164,6 +1192,8 @@ msgstr "omitidos. Click Responder para ver." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1208,6 +1238,8 @@ msgstr "Email" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1309,6 +1341,8 @@ msgstr "Banderas" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1343,6 +1377,8 @@ msgstr "Marca" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1377,6 +1413,8 @@ msgstr "Bloquear" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1457,6 +1495,10 @@ msgstr "Ningún resultado." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1584,6 +1626,7 @@ msgstr "Nuevo post" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1672,6 +1715,11 @@ msgstr "Postear nueva entrada" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1703,6 +1751,8 @@ msgstr "Staff" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1752,6 +1802,8 @@ msgstr "Nueva nota" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1821,6 +1873,11 @@ msgstr "Sin razón" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1866,6 +1923,8 @@ msgstr "Todos los tablones" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1894,6 +1953,8 @@ msgstr "Conjunto" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1930,6 +1991,8 @@ msgstr "nunca" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1993,6 +2056,8 @@ msgstr "Tiempo" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2045,6 +2110,7 @@ msgstr "Nuevo Ban" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2237,6 +2303,8 @@ msgstr "Sigue pendiente" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2265,6 +2333,8 @@ msgstr "Has alcanzado el número máximo de apelaciones permitido. Ya no puedes #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2282,6 +2352,8 @@ msgstr "y fue rechazado." #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2517,3 +2589,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.mo index ac16357c097a0f6ab28cdb3e3ce5bef6f6ccd674..65bdca3d889dc43e04eb6f8873fc828dd8db4069 100644 GIT binary patch delta 35 rcmcb$o$=Oo#tqBN*bNno46O`ICa*P9;4m^&FtoHXFx`CBj8zo?;^+$; delta 35 rcmcb$o$=Oo#tqBN*bNj646IBnC$BYA;4rjQFfy_-HQ9XCj8zo?<8=!r diff --git a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po index c8520390..344cee8a 100644 --- a/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/fr_FR/LC_MESSAGES/tinyboard.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -25,6 +25,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "seconde" @@ -36,6 +37,7 @@ msgstr[1] "secondes" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "minute" @@ -47,6 +49,7 @@ msgstr[1] "minutes" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "heure" @@ -58,6 +61,7 @@ msgstr[1] "heures" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "jour" @@ -69,6 +73,7 @@ msgstr[1] "jours" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "semaine" @@ -80,6 +85,7 @@ msgstr[1] "semaines" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "année" @@ -88,6 +94,7 @@ msgstr[1] "années" #: ../../../../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 msgid "Banned!" msgstr "Banni!" @@ -98,7 +105,8 @@ msgstr "Banni!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Précédent" @@ -109,28 +117,29 @@ msgstr "Précédent" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Suivant" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Erreur" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Une erreur s'est produite." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Identifiant" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Message trop long. Cliquez ici pour voir le texte en entier." @@ -138,41 +147,47 @@ msgstr "Message trop long. Cliquez ici pour voir le texte en #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Ban" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Bannir et supprimer" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Supprimer le fichier" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Êtes-vous sûr de vouloir supprimer ce fichier ?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Mettre le fichier sous Spoiler" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Êtes-vous sûr de vouloir mettre ce fichier sous Spoiler ?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Déplacer la réponse sur une autre planche" @@ -180,6 +195,7 @@ msgstr "Déplacer la réponse sur une autre planche" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Éditer message" @@ -188,69 +204,69 @@ msgstr "Éditer message" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Supprimer" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Êtes-vous sûr de vouloir supprimer ceci ?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Supprimer tout les messages ayant cette IP" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Êtes-vous sûr de vouloir supprimer tout les messages ayant cette adresse IP ?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Supprimer tout les messages ayant cette IP, sur toutes les planches" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Êtes-vous sûr de vouloir supprimer tout les messages de toutes les planches ayant cette adresse IP ?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Dé-épingler" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Épingler" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Autoriser le rebond du fil" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Interdire les rebonds sur ce fil" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Déverrouiller le fil" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Verrouiller le fil" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Déplacer le fil sur une autre planche" @@ -719,6 +735,9 @@ msgstr "Modération" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -893,6 +912,8 @@ msgstr "Supprimer message" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -917,6 +938,7 @@ msgstr "Fichier" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -974,6 +996,11 @@ msgstr "Mot de passe" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1037,6 +1064,7 @@ msgstr "Pas de sujet" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1166,6 +1194,8 @@ msgstr "cachés. Cliquez sur Répondre pour visualiser." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1210,6 +1240,8 @@ msgstr "E-mail" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1311,6 +1343,8 @@ msgstr "Drapeaux" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1345,6 +1379,8 @@ msgstr "Épinglé" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1379,6 +1415,8 @@ msgstr "Verrouiller" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1459,6 +1497,10 @@ msgstr "Aucun résultat." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1586,6 +1628,7 @@ msgstr "Nouveau message" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1674,6 +1717,11 @@ msgstr "Poster une nouvelle" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1705,6 +1753,8 @@ msgstr "Staff" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1754,6 +1804,8 @@ msgstr "Nouvelle note" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1823,6 +1875,11 @@ msgstr "Pas de justification" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1868,6 +1925,8 @@ msgstr "Toutes les planches" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1896,6 +1955,8 @@ msgstr "Configurer" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1932,6 +1993,8 @@ msgstr "jamais" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1995,6 +2058,8 @@ msgstr "" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2047,6 +2112,7 @@ msgstr "Nouveau ban" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2239,6 +2305,8 @@ msgstr "Il est toujours en attente" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2267,6 +2335,8 @@ msgstr "Vous avez envoyé le nombre maximum de contestations autorisé. Vous ne #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2284,6 +2354,8 @@ msgstr "et a été refusé." #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2519,3 +2591,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo index 1c81e98332282a6060310bbf4f0e4660458de46a..170ec770b3d649e0906ccfe42a54ef37acefe067 100644 GIT binary patch delta 6831 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 z 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 Zw)VZoyK3KSxfNR049)j%Ia5&(`7a>c$L|0D diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po index e0284c7a..503b70d7 100644 --- a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-20 19:50+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-22 06:48+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" @@ -25,6 +25,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "másodperc" @@ -36,6 +37,7 @@ msgstr[1] "másodperc" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "perc" @@ -47,6 +49,7 @@ msgstr[1] "perc" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "óra" @@ -58,6 +61,7 @@ msgstr[1] "óra" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "nap" @@ -69,6 +73,7 @@ msgstr[1] "nap" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "hét" @@ -80,6 +85,7 @@ msgstr[1] "hét" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "év" @@ -88,6 +94,7 @@ msgstr[1] "év" #: ../../../../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 msgid "Banned!" msgstr "Bannolva!" @@ -98,7 +105,8 @@ msgstr "Bannolva!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Előző" @@ -109,28 +117,29 @@ msgstr "Előző" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Következő" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Hiba" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Hiba történt." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Bejelentkezés" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "A hozzászólás túl hosszú. Kattints ide hogy lásd a teljes szöveget." @@ -138,41 +147,47 @@ msgstr "A hozzászólás túl hosszú. Kattints ide hogy lás #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Ban" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Ban & Töröl" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Fájlt töröl" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Biztos, hogy törölni akarod ezt a fájlt?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Fájl spoilerezése" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Biztos, hogy spoilerezni akarod ezt a fájlt?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Hozzászólás áthelyezése másik táblára" @@ -180,6 +195,7 @@ msgstr "Hozzászólás áthelyezése másik táblára" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Hozzászólás szerkesztése" @@ -188,69 +204,69 @@ msgstr "Hozzászólás szerkesztése" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Töröl" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Biztos, hogy törölni akarod?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Összes üzenet törlése erről az IP-ről" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Biztos, hogy törölni akarod az erről az IP címről érkezett összes hozzászólást?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Összes hozzászólás törlése erről az IP-ről minden táblán" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Biztos, hogy törölni akarod az összes hozzászólást erről az IP-ről minden táblán?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Nem ragacsolt szál indítása" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Szál ragacsba helyezése" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "A szál bumpolható" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "A szál nem bumpolható" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Szál feloldása" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Szál lezárása" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Szál áthelyezése másik táblára" @@ -719,6 +735,9 @@ msgstr "Moderációs napló" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -893,6 +912,8 @@ msgstr "Hozzászólás Törölése" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -917,6 +938,7 @@ msgstr "Fájl" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -974,6 +996,11 @@ msgstr "Jelszó" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1037,6 +1064,7 @@ msgstr "nincs téma" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1166,6 +1194,8 @@ msgstr "elrejtve. Kattints a válaszra a megjelenítéshez." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1210,6 +1240,8 @@ msgstr "Email" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1238,7 +1270,7 @@ msgstr "Frissít" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79 msgid "Comment" -msgstr "Hozzászólás" +msgstr "Üzenet" #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 @@ -1311,6 +1343,8 @@ msgstr "Jelölések" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1345,6 +1379,8 @@ msgstr "Ragacs" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1379,6 +1415,8 @@ msgstr "Lezár" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1459,6 +1497,10 @@ msgstr "Nincs megjelenítendő eredmény." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1586,6 +1628,7 @@ msgstr "Új üzenet" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1674,6 +1717,11 @@ msgstr "Küldd a hírek bejegyzésbe" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1705,6 +1753,8 @@ msgstr "Személyzet" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1754,6 +1804,8 @@ msgstr "Új jegyzet" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1823,6 +1875,11 @@ msgstr "nincs indok" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1868,6 +1925,8 @@ msgstr "minden tábla" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1896,6 +1955,8 @@ msgstr "Beállít" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1932,6 +1993,8 @@ msgstr "soha" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1995,6 +2058,8 @@ msgstr "Idő" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2047,6 +2112,7 @@ msgstr "Új Kitiltás" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2239,6 +2305,8 @@ msgstr "Még mindig függőben van." #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2267,6 +2335,8 @@ msgstr "A maximálisan engedélyett számú fellebbezést felhasználtad a kitil #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2284,6 +2354,8 @@ msgstr "és meg lett tagadva." #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2519,3 +2591,19 @@ msgstr "Megjelöl" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "Egyik sem" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "Áthelyezve ide: %s." + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo b/inc/locale/lt_LT/LC_MESSAGES/tinyboard.mo index 540ba0765969788b2a535e7b203fe32b2689019f..e40a3c4304956c22e590578c36aec0da374f7e6f 100644 GIT binary patch delta 60 zcmbQ6FgIbtYZ-k*1tUW%0~2inBLf4j0Ds+})UwRt%=|oEm&B4(D+MD1Lla#C6I~-i P1w%_K1Jlh?vdqE&Fk%o} delta 60 zcmbQ6FgIbtYZ-k51p@;s6H9FaBLf4j0Ds+})UwRt%=|oEm&B4(D+MD1Lla#C6J0|~ P1tTLXQ\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -23,6 +23,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "" @@ -35,6 +36,7 @@ msgstr[2] "" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "" @@ -47,6 +49,7 @@ msgstr[2] "" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "" @@ -59,6 +62,7 @@ msgstr[2] "" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "" @@ -71,6 +75,7 @@ msgstr[2] "" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "" @@ -83,6 +88,7 @@ msgstr[2] "" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "" @@ -92,6 +98,7 @@ msgstr[2] "" #: ../../../../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 msgid "Banned!" msgstr "" @@ -102,7 +109,8 @@ msgstr "" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Atgal" @@ -113,28 +121,29 @@ msgstr "Atgal" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Pirmyn" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "" #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Prisijungimas" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "" @@ -142,41 +151,47 @@ msgstr "" #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "" @@ -184,6 +199,7 @@ msgstr "" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Modifikuoti komentarą" @@ -192,69 +208,69 @@ msgstr "Modifikuoti komentarą" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Ištrinti" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "" @@ -723,6 +739,9 @@ msgstr "Moderacijos žurnalas" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -897,6 +916,8 @@ msgstr "Ištrinti komentarą" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -921,6 +942,7 @@ msgstr "Failas" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -978,6 +1000,11 @@ msgstr "Slaptažodis" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1041,6 +1068,7 @@ msgstr "Jokio subjekto" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1174,6 +1202,8 @@ msgstr "nerodomi. Paspauskite atsliepimą, kad peržiūrėti." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1218,6 +1248,8 @@ msgstr "Email" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1319,6 +1351,8 @@ msgstr "Vėliavos" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1353,6 +1387,8 @@ msgstr "Sticky" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1387,6 +1423,8 @@ msgstr "Užrakinti" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1468,6 +1506,10 @@ msgstr "" #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1595,6 +1637,7 @@ msgstr "Naujas komentaras" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1683,6 +1726,11 @@ msgstr "Patalpinti naujienų įvęstį" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1714,6 +1762,8 @@ msgstr "Administracija" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1763,6 +1813,8 @@ msgstr "Nauja pastaba" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1832,6 +1884,11 @@ msgstr "jokios priežasties" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1877,6 +1934,8 @@ msgstr "visos lentos" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1905,6 +1964,8 @@ msgstr "Nustatyti" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1941,6 +2002,8 @@ msgstr "niekada" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2004,6 +2067,8 @@ msgstr "" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2056,6 +2121,7 @@ msgstr "Naujas draudimas" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2248,6 +2314,8 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2276,6 +2344,8 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2293,6 +2363,8 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2528,3 +2600,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.mo index 37876dd1589a8a69aafadffca9affe68fc2f8ce5..52fb6f67e01604fc2e84947c59b5ebd44a7aee4a 100644 GIT binary patch delta 7166 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%0D%(r3)c2BkY4M5Eec zP@5(dHL(Gx4hyWqFo1dmCgT{?ef3C}W)|k-8syKk^3fk7dy{|d{?gvgcYckv!MYH2 zehq3D??g8qLw#ktGMq1{uBi8V2uXV)b~pCJGa2MRh(c^1=f@%0 zItKgFejmDVHR`&LP#N2g8t@P@7t?0zy|_u|%aPw3GYZ4-Hq`wMs7%d5?X^ce6hbMy zgj&0Gn2Xy{PjcDXjp-`oS*VWkF$Awf?VhTo$m5|-(#Wlz+1dO527daT6h_%ObMX?PV2%6>C-n1D-APxuyUPwcV&V2$S& zjtBIZ5(-M;WURp^)J)Hy1`f)0Uc-1Spk9N@%rew{Z=eSL95s>P9Ou3qYX$OWCi4-2 z3($?PV3gkf9Tf6tIE*}uiRO!XES4e5YM#PiY(ZseFRG*c$e%gQhrVds1054lOOk?G zvVOKc5VbdoQA<>UF^q3UQqU7k!6ZNq`VT9+8a<4 zoQk@y0dK&$s9(L)$UZY^Mb1R7MdoPcp!Uc%WVOwiBJ!_Py17dkNJ6D18)I-J>NT5! z%FI1h4=SZis3)3-%H$&Kh|91HSD+^N4aVYS)Y8NhJ8x5xhk^#kLk(Dpov{XW;ay1f z%uKAnjhK$EAx=gzunYBKyaKCH8NCbD-hi6uJk&%Nq8{WaR0cgSQ_!Z{fI6`Yb>Ti+ zKZGgNPa*rxgbj7BD@Aosg?bxmP)l<+YQUMOj5eYs{5a}CH(OgULGS-(6qK@yn25f^ zoYbVEQd(dgX05bgUyCHWdhpkE1@VSH0X;YOT+ zsdyCAFrd`g&HYiStV1o82enj-P?>uUwG^vSdu9u24{S$my4^SyPop+t(N)g%BhaH6 zT}weTt;1?;LUnx9dIojlMbz~j%AEH;2KBlYVLVo12fQ7@p`r;W>M!rTryll_=mOH5q!T{RiQ0J3SOPPk6PzGub z<&~3ve+r}Ri3zBVYcUz8V;nBVakw6p(!dI5LP@A6Pe=7rfyz)7Y63T-zE5sP4Llol z-Fytfr5*~p;6>EHTToBD3xn_gDl?yBBz}eJ$Ti%#E)=!7Vo;m14{G3I)I`cq8M_X( zM`}cQ^BOuQfUJ+c;i>HYtb0>7Xpywb@;DQYuLMy=7kwmuKLQeTN$f^C?Nhfxy^9PQNO zkd93mDzkOy#y_LJVOOEPDc{Fvz5gdDPh=mIsXL9$2{uOu>e=0_QIE_>wL#J zn=2HPs7Ijs$;F;H4VC(N*c%t1mg;Q`#yuFQ_x~^jZ^sx;-IteDPacW-)k;S_@lB}f z9zZR{aty^)7=fFtyHHDU1hq7$QT=|4S`ybd=X<6vda`MlKp_H~P%~bRDfm2UA}!bl zkD`_!wAyJ;#_`k(aWT$E4UkS_E>6T8oQF~P9_np5h&}Mqc=De~q5A}<_UAas(l(}<3rdPH(pKtwN^W6 zP-@TOKn$AXOkfDor&)=G=(@)FVj7J4Vi}Fyu^QRO<__Dw1@(4p!!X=o>-$h^e+acS zr#!ZB4%N~3*6?ecHA}-R+VfF2OhY}%-I#_=7>Mgp8QO{(_!I1e`%!zL)p{N^adVxs zq@E5Gv=-T@8^@srn1q^89cq&`p*GzTbfJzPh(|jM~6De28A& z5??|%nAlU+ zn*XYu@>AG;cwVElnz)hJ+}?`M5>fWXS8V%-*qgRLqBh+S;!#5TI^ zc!JPtIEZ`MKHlS>d=Ak1|Mt-CtRSu;S_yq~og{uCE)qIA(9tQJP83njCUop{Fg`Y}l3hHtQ$7(|>WqG?M&9l6A-M64LNG{Nq&pe_VF@kW>=0n^} z`CXzj3NY_j&1S9EyROFvh6t(ucp40&{0FA z6Wr50PfuGP!4sEsH3k%GNvLQlgWKecpu&BdJ`0m+>AVg7}(vkN69r zqmk(0E%A>ue3=O5p7!GoTPVVT#3ABJ;u_WMb&pftP59e-qMmR?^U0W#zRlfwT=H*@ tPpORv$aH6B4$8@2FelF)*gxN$l|3jkvw3Y^gMafQ#cu~TPcF}k`X9n3xSs$3 diff --git a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po index c252d6c0..508cb5ee 100644 --- a/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po +++ b/inc/locale/pl_PL/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 23:00+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:08+0000\n" "Last-Translator: czaks \n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "sekunda" @@ -36,6 +37,7 @@ msgstr[2] "sekund" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "minuta" @@ -48,6 +50,7 @@ msgstr[2] "minut" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "godzina" @@ -60,6 +63,7 @@ msgstr[2] "godzin" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "dzień" @@ -72,6 +76,7 @@ msgstr[2] "dni" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "tydzień" @@ -84,6 +89,7 @@ msgstr[2] "tygodni" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "rok" @@ -93,6 +99,7 @@ msgstr[2] "lat" #: ../../../../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 msgid "Banned!" msgstr "Zbanowany!" @@ -103,7 +110,8 @@ msgstr "Zbanowany!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Wstecz" @@ -114,28 +122,29 @@ msgstr "Wstecz" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Dalej" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Błąd" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Wystąpił błąd." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Logowanie" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Post za długi. Kliknij tutaj, aby zobaczyć jego pełną treść." @@ -143,41 +152,47 @@ msgstr "Post za długi. Kliknij tutaj, aby zobaczyć jego pe #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Ban" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Usuń i zbanuj" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Usuń plik" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Czy jesteś pewien, że chcesz usunąć ten plik?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Schowaj plik" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Czy jesteś pewien, że chcesz schować ten obrazek?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Przenieś odpowiedź na inny board" @@ -185,6 +200,7 @@ msgstr "Przenieś odpowiedź na inny board" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Edytuj post" @@ -193,69 +209,69 @@ msgstr "Edytuj post" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Usuń" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Czy jesteś pewien, że chcesz to usunąć?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Usuń wszystkie posty z tego adresu IP" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Czy na pewno chcesz usunąć wszystkie posty z tego adresu IP?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Usuń wszystkie posty z tego IP ze wszystkich boardów" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Czy jesteś pewien, że chcesz usunąć wszystkie posty z tego adresu IP, ze wszystkich boardów?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Odklej wątek" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Przyklej wątek" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Zezwól wątkowi na bumpowanie" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Zabroń wątkowi na bumpowanie" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Odblokuj wątek" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Zablokuj wątek" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Przenieś wątek na inny board" @@ -724,6 +740,9 @@ msgstr "Log moderacji" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -898,6 +917,8 @@ msgstr "Usuń post" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -922,6 +943,7 @@ msgstr "Plik" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -979,6 +1001,11 @@ msgstr "Hasło" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1042,6 +1069,7 @@ msgstr "brak tematu" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1175,6 +1203,8 @@ msgstr "pominięte. Kliknij Odpowiedź aby zobaczyć." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1219,6 +1249,8 @@ msgstr "E-mail" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1320,6 +1352,8 @@ msgstr "Flagi" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1354,6 +1388,8 @@ msgstr "Przyklejony" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1388,6 +1424,8 @@ msgstr "Zablokowany" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1469,6 +1507,10 @@ msgstr "Brak wyników." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1596,6 +1638,7 @@ msgstr "Nowy post" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1684,6 +1727,11 @@ msgstr "Zapostuj newsa" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1715,6 +1763,8 @@ msgstr "Ekipa" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1764,6 +1814,8 @@ msgstr "Nowa notka" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1833,6 +1885,11 @@ msgstr "brak powodu" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1878,6 +1935,8 @@ msgstr "wszystkie boardy" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1906,6 +1965,8 @@ msgstr "Ustawione" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1942,6 +2003,8 @@ msgstr "nigdy" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2005,6 +2068,8 @@ msgstr "Czas" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2057,6 +2122,7 @@ msgstr "Nowy ban" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2249,6 +2315,8 @@ msgstr "Apelacja wciąż oczekuje na rozpatrzenie" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2277,6 +2345,8 @@ msgstr "Wysłałeś maksymalną możliwą ilość apelacji. Nie możesz apelowa #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2294,6 +2364,8 @@ msgstr "i została ona odrzucona." #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2529,3 +2601,19 @@ msgstr "Flaga" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "Brak" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "Przeniesiono do %s." + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "Nie mogę zbudować dodatku RecentPosts, ponieważ nie ma boardów, które mógłbym załączyć." diff --git a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.mo index cfe67c7ea0a683906b84f7ddeb2638feec49ad3b..47e7f3d252e6f9188b0e8774bcbcbde4983dffb5 100644 GIT binary patch delta 62 zcmZ3zm2ve}#tpa4^$it_46O`Iv<-|547dXPb%RpNGK(|w^K@MjOH!>Aj0_A-bPY^& SjSLkGEv*bpH*;AmR005Hj}hho delta 62 zcmZ3zm2ve}#tpa4^$ipZ46IBnwGE6647dXPb%RpNGK(|w^K@MjOH!>Aj0_A-bPY^& S4J{RnjI2yeHgj1lR005IqY>}` diff --git a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po index c27903ea..05323955 100644 --- a/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/pt_BR/LC_MESSAGES/tinyboard.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -26,6 +26,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "segundos" @@ -37,6 +38,7 @@ msgstr[1] "segundos" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "segundos" @@ -48,6 +50,7 @@ msgstr[1] "minutos" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "hora" @@ -59,6 +62,7 @@ msgstr[1] "horas" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "dia" @@ -70,6 +74,7 @@ msgstr[1] "dias" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "semana" @@ -81,6 +86,7 @@ msgstr[1] "semanas" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "ano" @@ -89,6 +95,7 @@ msgstr[1] "anos" #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722 +#: ../../../../inc/functions.php:732 msgid "Banned!" msgstr "Banido!" @@ -99,7 +106,8 @@ msgstr "Banido!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Anterior" @@ -110,28 +118,29 @@ msgstr "Anterior" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Proximo" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Erro" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Um erro ocorreu." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Login" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Mensagem muito longa. Clique aqui para ver o texto completo." @@ -139,41 +148,47 @@ msgstr "Mensagem muito longa. Clique aqui para ver o texto co #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Banir" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Banir & Deletar" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Deletar arquivo" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Tem certeza que quer deletar esse arquivo?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Arquivo spoiler" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Você tem certeza de que quer tornar o arquivo spoiler?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Mover resposta para outra board" @@ -181,6 +196,7 @@ msgstr "Mover resposta para outra board" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Editar mensagem" @@ -189,69 +205,69 @@ msgstr "Editar mensagem" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Deletar" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Você tem certeza que deseja deletar isto?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Deletar todos os posts do IP" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Você tem certeza que deseja deletar todos os posts deste IP?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Deletar todos os posts deste IP em todas as boards" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Tem certeza que quer deletar todos os posts deste IP em todas as boards?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Despinar tópico" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Pinar tópico" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Retirar limite de bump" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Adicionar limite de bump" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Destrancar tópico" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Trancar tópico" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Mover tópico para outra board" @@ -720,6 +736,9 @@ msgstr "Log da moderação" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -894,6 +913,8 @@ msgstr "Deletar Mensagem" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -918,6 +939,7 @@ msgstr "Arquivo" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -975,6 +997,11 @@ msgstr "Senha" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1038,6 +1065,7 @@ msgstr "sem assunto" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1167,6 +1195,8 @@ msgstr "omitidas. Clique em responder para visualizar." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1211,6 +1241,8 @@ msgstr "E-mail" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1312,6 +1344,8 @@ msgstr "Sinalizações" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1346,6 +1380,8 @@ msgstr "Fixar" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1380,6 +1416,8 @@ msgstr "Trancar" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1460,6 +1498,10 @@ msgstr "Sem resultados." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1587,6 +1629,7 @@ msgstr "Nova mensagem" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1675,6 +1718,11 @@ msgstr "Postar nova notícia" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1706,6 +1754,8 @@ msgstr "Equipe" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1755,6 +1805,8 @@ msgstr "Nova nota" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1824,6 +1876,11 @@ msgstr "sem razão especificada" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1869,6 +1926,8 @@ msgstr "todas as boards" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1897,6 +1956,8 @@ msgstr "Configurar" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1933,6 +1994,8 @@ msgstr "nunca" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1996,6 +2059,8 @@ msgstr "Tempo" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2048,6 +2113,7 @@ msgstr "Nova Expulsão" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2240,6 +2306,8 @@ msgstr "Ele ainda está pendente" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2268,6 +2336,8 @@ msgstr "Você excedeu o limite de apelos. Você não pode apelar por este ban no #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2285,6 +2355,8 @@ msgstr "e foi negado." #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2520,3 +2592,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/ru_RU/LC_MESSAGES/javascript.js b/inc/locale/ru_RU/LC_MESSAGES/javascript.js index 03231b23..4964fedb 100644 --- a/inc/locale/ru_RU/LC_MESSAGES/javascript.js +++ b/inc/locale/ru_RU/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"\u0421\u0442\u0438\u043b\u044c:","File":"\u0424\u0430\u0439\u043b","hide":"\u0441\u043a\u0440\u044b\u0442\u044c","show":"\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c","Show locked threads":"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0437\u0430\u043a\u0440\u044b\u0442\u044b\u0435 \u0442\u0440\u0435\u0434\u044b","Hide locked threads":"\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043a\u0440\u044b\u0442\u044b\u0435 \u0442\u0440\u0435\u0434\u044b","URL":"URL","Select":"\u0412\u044b\u0431\u0440\u0430\u0442\u044c","Remote":"\u0421\u0441\u044b\u043b\u043a\u0430","Embed":"\u0412\u0441\u0442\u0440\u043e\u0438\u0442\u044c","Oekaki":"Oekaki","hidden":"\u0441\u043a\u0440\u044b\u0442\u043e","Show images":"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Hide images":"\u0421\u043a\u0440\u044b\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Password":"\u041f\u0430\u0440\u043e\u043b\u044c","Delete file only":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0444\u0430\u0439\u043b","Delete":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c","Reason":"\u041f\u0440\u0438\u0447\u0438\u043d\u0430","Report":"\u0416\u0430\u043b\u043e\u0431\u0430","Click reply to view.":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043e\u0442\u0432\u0435\u0442 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.","Click to expand":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0447\u0442\u043e\u0431\u044b \u0440\u0430\u0441\u043a\u0440\u044b\u0442\u044c","Hide expanded replies":"\u0421\u043a\u0440\u044b\u0442\u044c \u0440\u0430\u0441\u043a\u0440\u044b\u0442\u044b\u0435 \u043e\u0442\u0432\u0435\u0442\u044b","Brush size":"\u0420\u0430\u0437\u043c\u0435\u0440 \u043a\u0438\u0441\u0442\u0438","Set text":"\u0422\u0435\u043a\u0441\u0442","Clear":"\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c","Save":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c","Load":"\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c","Toggle eraser":"\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043b\u0430\u0441\u0442\u0438\u043a","Get color":"\u0426\u0432\u0435\u0442","Fill":"\u0417\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c","Use oekaki instead of file?":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c oekaki \u0432\u043c\u0435\u0441\u0442\u043e \u0444\u0430\u0439\u043b\u0430?","Edit in oekaki":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432 oekaki","Enter some text":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442","Enter font or leave empty":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0448\u0440\u0438\u0444\u0442 \u0438\u043b\u0438 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u044b\u043c","Forced anonymity":"\u0412\u0441\u0435 \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u043e","enabled":"\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e ","disabled":"\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e","Sun":"\u0412\u0441","Mon":"\u041f\u043d","Tue":"\u0412\u0442","Wed":"\u0421\u0440","Thu":"\u0427\u0442","Fri":"\u041f\u0442","Sat":"\u0421\u0431","Catalog":"\u041a\u0430\u0442\u0430\u043b\u043e\u0433","Submit":"\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c","Quick reply":"\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043e\u0442\u0432\u0435\u0442","Posting mode: Replying to >>{0}<\/small>":"\u041e\u0442\u0432\u0435\u0442 \u0432 >>{0}<\/small>","Return":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f","Expand all images":"\u0420\u0430\u0441\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Hello!":"\u041f\u0440\u0438\u0432\u0435\u0442!","{0} users":"{0} \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439","(hide threads from this board)":"(\u0441\u043a\u0440\u044b\u0442\u044c \u0442\u0440\u0435\u0434\u044b \u044d\u0442\u043e\u0439 \u0434\u043e\u0441\u043a\u0438)","(show threads from this board)":"(\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0442\u0440\u0435\u0434\u044b \u044d\u0442\u043e\u0439 \u0434\u043e\u0441\u043a\u0438)","No more threads to display":"\u041d\u0435\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0442\u0440\u0435\u0434\u043e\u0432 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Loading...":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430...","Save as original filename":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435","Reported post(s).":"\u0416\u0430\u043b\u043e\u0431\u044b \u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435(\u044f).","An unknown error occured!":"\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430.","Something went wrong... An unknown error occured!":"\u0427\u0442\u043e \u0442\u043e \u043d\u0435 \u0442\u0430\u043a... \u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430!","Working...":"\u0414\u0443\u043c\u0430\u044e...","Posting... (#%)":"\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430...(#%)","Posted...":"\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e...","An unknown error occured when posting!":"\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430!","Posting...":"\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430...","Upload URL":"\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c URL","Spoiler Image":"\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430-\u0441\u043f\u043e\u0439\u043b\u0435\u0440","Comment":"\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439","Quick Reply":"\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043e\u0442\u0432\u0435\u0442","Stop watching this thread":"\u041d\u0435 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0442\u0440\u0435\u0434\u043e\u043c","Watch this thread":"\u0421\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0442\u0440\u0435\u0434\u043e\u043c","Unpin this board":"\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u0434\u043e\u0441\u043a\u0443","Pin this board":"\u041f\u0440\u0438\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u0434\u043e\u0441\u043a\u0443","Stop watching this board":"\u041d\u0435 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0434\u043e\u0441\u043a\u043e\u0439","Watch this board":"\u0421\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0434\u043e\u0441\u043a\u043e\u0439","Click on any image on this site to load it into oekaki applet":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u043b\u044e\u0431\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0441\u0430\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0435\u0433\u043e \u0432 oekaki","Sunday":"\u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435","Monday":"\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a","Tuesday":"\u0412\u0442\u043e\u0440\u043d\u0438\u043a","Wednesday":"\u0421\u0440\u0435\u0434\u0430","Thursday":"\u0427\u0435\u0442\u0432\u0435\u0440\u0433","Friday":"\u041f\u044f\u0442\u043d\u0438\u0446\u0430","Saturday":"\u0421\u0443\u0431\u0431\u043e\u0442\u0430","January":"\u042f\u043d\u0432\u0430\u0440\u044c","February":"\u0424\u0435\u0432\u0440\u0430\u043b\u044c","March":"\u041c\u0430\u0440\u0442","April":"\u0410\u043f\u0440\u0435\u043b\u044c","May":"\u041c\u0430\u0439","June":"\u0418\u044e\u043d\u044c","July":"\u0418\u044e\u043b\u044c","August":"\u0410\u0432\u0433\u0443\u0441\u0442","September":"\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c","October":"\u041e\u043a\u0442\u044f\u0431\u0440\u044c","November":"\u041d\u043e\u044f\u0431\u0440\u044c","December":"\u0414\u0435\u043a\u0430\u0431\u0440\u044c","Jan":"\u042f\u043d\u0432","Feb":"\u0424\u0435\u0432","Mar":"\u041c\u0430\u0440","Apr":"\u0410\u043f\u0440","Jun":"\u0418\u044e\u043d","Jul":"\u0418\u044e\u043b","Aug":"\u0410\u0432\u0433","Sep":"\u0421\u0435\u043d","Oct":"\u041e\u043a\u0442","Nov":"\u041d\u043e\u044f","Dec":"\u0414\u0435\u043a","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"\u0422\u0432\u043e\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u0443\u043c\u0435\u0435\u0442 \u0432 HTML5 \u0432\u0438\u0434\u0435\u043e.","[play once]":"[\u0418\u0433\u0440\u0430\u0442\u044c]","[loop]":"[\u041b\u0443\u043f\u043f]","WebM Settings":"WebM \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","Expand videos inline":"\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0438\u0434\u0435\u043e","Play videos on hover":"\u041f\u0440\u043e\u0438\u0433\u0440\u0430\u0442\u044c \u043f\u0440\u0438 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u0438\u0438","Default volume":"\u0413\u0440\u043e\u043c\u043a\u043e\u0441\u0442\u044c"}; \ No newline at end of file +l10n = {"Style: ":"\u0421\u0442\u0438\u043b\u044c:","File":"\u0424\u0430\u0439\u043b","hide":"\u0441\u043a\u0440\u044b\u0442\u044c","show":"\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c","Show locked threads":"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0437\u0430\u043a\u0440\u044b\u0442\u044b\u0435 \u0442\u0440\u0435\u0434\u044b","Hide locked threads":"\u0421\u043a\u0440\u044b\u0442\u044c \u0437\u0430\u043a\u0440\u044b\u0442\u044b\u0435 \u0442\u0440\u0435\u0434\u044b","URL":"URL","Select":"\u0412\u044b\u0431\u0440\u0430\u0442\u044c","Remote":"\u0421\u0441\u044b\u043b\u043a\u0430","Embed":"\u0412\u0441\u0442\u0440\u043e\u0438\u0442\u044c","Oekaki":"Oekaki","hidden":"\u0441\u043a\u0440\u044b\u0442\u043e","Show images":"\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Hide images":"\u0421\u043a\u0440\u044b\u0442\u044c \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Password":"\u041f\u0430\u0440\u043e\u043b\u044c","Delete file only":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0444\u0430\u0439\u043b","Delete":"\u0423\u0434\u0430\u043b\u0438\u0442\u044c","Reason":"\u041f\u0440\u0438\u0447\u0438\u043d\u0430","Report":"\u0416\u0430\u043b\u043e\u0431\u0430","Click reply to view.":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043e\u0442\u0432\u0435\u0442 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.","Click to expand":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0447\u0442\u043e\u0431\u044b \u0440\u0430\u0441\u043a\u0440\u044b\u0442\u044c","Hide expanded replies":"\u0421\u043a\u0440\u044b\u0442\u044c \u0440\u0430\u0441\u043a\u0440\u044b\u0442\u044b\u0435 \u043e\u0442\u0432\u0435\u0442\u044b","Brush size":"\u0420\u0430\u0437\u043c\u0435\u0440 \u043a\u0438\u0441\u0442\u0438","Set text":"\u0422\u0435\u043a\u0441\u0442","Clear":"\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c","Save":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c","Load":"\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c","Toggle eraser":"\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043b\u0430\u0441\u0442\u0438\u043a","Get color":"\u0426\u0432\u0435\u0442","Fill":"\u0417\u0430\u043f\u043e\u043b\u043d\u0438\u0442\u044c","Use oekaki instead of file?":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c oekaki \u0432\u043c\u0435\u0441\u0442\u043e \u0444\u0430\u0439\u043b\u0430?","Edit in oekaki":"\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0432 oekaki","Enter some text":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0442\u0435\u043a\u0441\u0442","Enter font or leave empty":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0448\u0440\u0438\u0444\u0442 \u0438\u043b\u0438 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0441\u0442\u044b\u043c","Forced anonymity":"\u0412\u0441\u0435 \u0430\u043d\u043e\u043d\u0438\u043c\u043d\u043e","enabled":"\u0432\u043a\u043b\u044e\u0447\u0435\u043d\u043e ","disabled":"\u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e","Sun":"\u0412\u0441","Mon":"\u041f\u043d","Tue":"\u0412\u0442","Wed":"\u0421\u0440","Thu":"\u0427\u0442","Fri":"\u041f\u0442","Sat":"\u0421\u0431","Catalog":"\u041a\u0430\u0442\u0430\u043b\u043e\u0433","Submit":"\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c","Quick reply":"\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043e\u0442\u0432\u0435\u0442","Posting mode: Replying to >>{0}<\/small>":"\u041e\u0442\u0432\u0435\u0442 \u0432 >>{0}<\/small>","Return":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f","Expand all images":"\u0420\u0430\u0441\u043a\u0440\u044b\u0442\u044c \u0432\u0441\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Hello!":"\u041f\u0440\u0438\u0432\u0435\u0442!","{0} users":"{0} \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439","(hide threads from this board)":"(\u0441\u043a\u0440\u044b\u0442\u044c \u0442\u0440\u0435\u0434\u044b \u044d\u0442\u043e\u0439 \u0434\u043e\u0441\u043a\u0438)","(show threads from this board)":"(\u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0442\u0440\u0435\u0434\u044b \u044d\u0442\u043e\u0439 \u0434\u043e\u0441\u043a\u0438)","No more threads to display":"\u041d\u0435\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0442\u0440\u0435\u0434\u043e\u0432 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","Loading...":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430...","Save as original filename":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043e\u0440\u0438\u0433\u0438\u043d\u0430\u043b\u044c\u043d\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435","Reported post(s).":"\u0416\u0430\u043b\u043e\u0431\u044b \u043d\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435(\u044f).","An unknown error occured!":"\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430.","Something went wrong... An unknown error occured!":"\u0427\u0442\u043e \u0442\u043e \u043d\u0435 \u0442\u0430\u043a... \u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430!","Working...":"\u0414\u0443\u043c\u0430\u044e...","Posting... (#%)":"\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430...(#%)","Posted...":"\u041e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e...","An unknown error occured when posting!":"\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430!","Posting...":"\u041e\u0442\u043f\u0440\u0430\u0432\u043a\u0430...","Upload URL":"\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c URL","Spoiler Image":"\u041a\u0430\u0440\u0442\u0438\u043d\u043a\u0430-\u0441\u043f\u043e\u0439\u043b\u0435\u0440","Comment":"\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0439","Quick Reply":"\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043e\u0442\u0432\u0435\u0442","Stop watching this thread":"\u041d\u0435 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0442\u0440\u0435\u0434\u043e\u043c","Watch this thread":"\u0421\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0442\u0440\u0435\u0434\u043e\u043c","Unpin this board":"\u041e\u0442\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u0434\u043e\u0441\u043a\u0443","Pin this board":"\u041f\u0440\u0438\u043a\u0440\u0435\u043f\u0438\u0442\u044c \u0434\u043e\u0441\u043a\u0443","Stop watching this board":"\u041d\u0435 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0434\u043e\u0441\u043a\u043e\u0439","Watch this board":"\u0421\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0434\u043e\u0441\u043a\u043e\u0439","Click on any image on this site to load it into oekaki applet":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u043b\u044e\u0431\u043e\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043d\u0430 \u044d\u0442\u043e\u043c \u0441\u0430\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0435\u0433\u043e \u0432 oekaki","Sunday":"\u0412\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435","Monday":"\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a","Tuesday":"\u0412\u0442\u043e\u0440\u043d\u0438\u043a","Wednesday":"\u0421\u0440\u0435\u0434\u0430","Thursday":"\u0427\u0435\u0442\u0432\u0435\u0440\u0433","Friday":"\u041f\u044f\u0442\u043d\u0438\u0446\u0430","Saturday":"\u0421\u0443\u0431\u0431\u043e\u0442\u0430","January":"\u042f\u043d\u0432\u0430\u0440\u044c","February":"\u0424\u0435\u0432\u0440\u0430\u043b\u044c","March":"\u041c\u0430\u0440\u0442","April":"\u0410\u043f\u0440\u0435\u043b\u044c","May":"\u041c\u0430\u0439","June":"\u0418\u044e\u043d\u044c","July":"\u0418\u044e\u043b\u044c","August":"\u0410\u0432\u0433\u0443\u0441\u0442","September":"\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c","October":"\u041e\u043a\u0442\u044f\u0431\u0440\u044c","November":"\u041d\u043e\u044f\u0431\u0440\u044c","December":"\u0414\u0435\u043a\u0430\u0431\u0440\u044c","Jan":"\u042f\u043d\u0432","Feb":"\u0424\u0435\u0432","Mar":"\u041c\u0430\u0440","Apr":"\u0410\u043f\u0440","Jun":"\u0418\u044e\u043d","Jul":"\u0418\u044e\u043b","Aug":"\u0410\u0432\u0433","Sep":"\u0421\u0435\u043d","Oct":"\u041e\u043a\u0442","Nov":"\u041d\u043e\u044f","Dec":"\u0414\u0435\u043a","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"\u0422\u0432\u043e\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 \u043d\u0435 \u0443\u043c\u0435\u0435\u0442 \u0432 HTML5 \u0432\u0438\u0434\u0435\u043e.","[play once]":"[\u0418\u0433\u0440\u0430\u0442\u044c]","[loop]":"[\u041b\u0443\u043f\u043f]","WebM Settings":"WebM \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438","Expand videos inline":"\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0432\u0438\u0434\u0435\u043e","Play videos on hover":"\u041f\u0440\u043e\u0438\u0433\u0440\u0430\u0442\u044c \u043f\u0440\u0438 \u043d\u0430\u0432\u0435\u0434\u0435\u043d\u0438\u0438","Default volume":"\u0413\u0440\u043e\u043c\u043a\u043e\u0441\u0442\u044c","Tree view":"\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0434\u0435\u0440\u0435\u0432\u0430"}; \ No newline at end of file diff --git a/inc/locale/ru_RU/LC_MESSAGES/javascript.po b/inc/locale/ru_RU/LC_MESSAGES/javascript.po index 2208e32b..208cbdb7 100644 --- a/inc/locale/ru_RU/LC_MESSAGES/javascript.po +++ b/inc/locale/ru_RU/LC_MESSAGES/javascript.po @@ -4,13 +4,14 @@ # # Translators: # Assada , 2014 +# Assada , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:53+0000\n" -"Last-Translator: czaks \n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 20:11+0000\n" +"Last-Translator: Assada \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -567,4 +568,4 @@ msgstr "Громкость" #: ../../../../js/treeview.js:18 msgid "Tree view" -msgstr "" +msgstr "Просмотр дерева" diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo index eb57a241b045576a93ecda1db4ecbc50c5ccd39e..e0c61fe64fc21cb7dfe733ad8a67274aec1bf85d 100644 GIT binary patch delta 4063 zcmX}vd2r509LMnuk%-&~QIb4Cf<)3J5+tn#m2`^eF3{~3q$Fu2geDm7f-|zYD?ss<|$&I|_6Wzbo_g-eW zDv4%9Zy#d$JSUId!xpXi*<20s^hWfjgzqs7N7=Jguyrm_1sDf#EsS+ zsDT|u4fsc_OaJB?g%lcYV+)LEU<{KmUCrW*88$a@^)PQTHQ{TCz-x#CK6MFGOWxK59UYZC{C+ zNU6QQ6_ue~VdS5zn^QDst$)UDcndYs1fJ5`r=bS&5^BIX*c5Y79Zy1S-a=Hz>rkIB zK|Q|}mD#=4qxSykM&w^N&eNcdezyK@twz1@f%P%gqOQEFbYpt zdt0J1oM7vnunYBUHwC474(fwz?E@vK4{WpbL#PfaP&4}hwFfSsGIs+tp!=v9KSjOI zFWj@4gHfM%p`L4Hb+@xOGEoD`MjgKas22~m_eZ0aAkVfJSr=N@ppM&SR7d-)<){Hy zU<{r?z4tz*>-_&qA&!RhCdNF6!;pW*ZCzz8L)|}%tb)0PF8mkSF2==8EoFO*$IjL< zm`HskYN;x1`x%VV`G06{gtMa}cpw5b(-%-L?2cs9^hV8a3@TGok-p7B)QmTyp8p25 z<_A$TJ%P%=Iop02)z4K7)%kx)K`9Sm3v)z*>xYz7jQ%Ur?v% z0Vbgzy(C};YEO(p^)nGQz-f;im}+cA`%S)$^vxRN@)+eJ|7u90p*eOz?doC3KQoyhs;|I&+=2r!I-2hS zoQCbN95wTMn2X-LOz$0pdhb|%Xab8-r)ncA13R0Oe~tJc4YC3mtT~6;WYx$!jdu%A z2eHT`Oggs4{-`CGj&I=#?16Vso3cYo&;Kbor~yo{^+MDDO5GGV0A{;=;3R6zFJUrP zV^54?1E_rrY5+4(FDymPv<%rsrUL2PT*Wr%9qXA`BI=4RYODP&Wai5k%v z)Y@J`W#l*PfVa^bo3oH=Z-shM3hGp3q9&4q%E$<045k3tkER&;XO8e=2;Rgr`ZuqT z$9HJ>1U2$2s1CdszB&v*%{&y<-o~1Wno%Zd$=*f{UiO2FCGCb? zb^b?CP)fI82A)PA^yXVco6jG$7a~w=nuRnJT!2eZpL228WjtyL+M_1c1GVc% zqXtrd0XP@+Eo)X#PzSq^FGEvl>(@~;e2CgCeuU7OJB`sE+ecYyAn<#?`0+ zuebLrP^mwM>i1qE`PT#f&wCzBMvb^1YJ~ZyRLwwb&Uu)LOHnVlh<)*{ZO=;b{3}RSL7hH0*;8cEdkVGfm{JIhc-W zpN$&m8BE6usEGxpdQ#pFb&9&8GB*`Ts#)TukWJwjhM;enCq?0?dIoAqdZ02g0`-E4 zn1%CDyZSt8uT-NlcpqD0{q~-jcEA^@kHn5ximZZhU!kDi;Q|<*9*D z!BFhar)%M8)Nvb&K{y*V;N_?cZ9)xvH!3q{Q3JY&dj1iH>A=+`UuuX%txW>PVlHYR zZuCMOCB2~L+U6_{Xpl39s^&e4*h2Ioz9e+*Cb|*d5j_a4IBDk8d;T}sjI#-bVcsN` zIrjphypB7efsOlrL47)*D~~w%tmOFyg+i9(_?QFG05yn-4>&!>9G zHqEqZcby=%5}!KhK`p#CIfH`Y-DT7V5EF>Kgsug|$!8^gjX^D-i0$ z%S6nx5{DigTi$QwJKlUqtR+?u-3j)a{vZ^_yh;=k>(nA7FptdtxfFju=NA zAat!MD-N0A>ocmF6>ZT;SlG8Ji(#m>8{uSI{ e{rTxtN6!~l?X22eb*O4@Re9Bsvd)Py{{I2=(W2J? delta 4044 zcmX}v4^-CG9mnzSBY!mE;g5fSFcd;eA>e_4g3Ssd4jCe8QrRCf#X^t&8`iWvm49MO zDt-J@niiVP!X^&4>8O=y)X}xgo!NHGI;X$mtmD?U=E+Vw?fv2Tvfts$>)!kOJ->VJ z_ul)UTUUIxJpAE^*e%A@M_fWQ#G3^JW~&p`YSx`%HVO|Sx2z9`;=5iyjY-tc;&A)| zN8@?C2oqDynlKF~E=QF<6TlLp=_|nW&EM!dRS-akvmQ zuw|Hx51^iF#~?oC?m`W0KWe~l;xPKRQxr;RID@$u9BIbjtppRW1~rpLZ@(2afL5dQ`?E(d*E{;5_qZBt2HN)|4z8gZ4Wfho?^{4^e z?e|;Ug*cA(WqyAnDl=RC{w@rw;}<9>bqD-`*O4*V+o%!0@BR(Tsb4@XSuyz>i#MTW zz7&;-)u;ij@%DDqL^k{V?WhcOjwb(P-44^BwLXcp_!rbjvv^8tpNASq5o*AbaSYa@ zI-ZBxyh~9Xcc4DM3HAJTRA%?O2mJn#H1e+-M`=(;C*41}AD~|Nx%&kUq5dVR<9~bm zcc_`ivL2dg0_wR`)O$yvGMwf0Lae4<5vHJ2KY;q+27h1^>H|Bx-i7Mm5Nc+vj9^>j2-Zcp2>{$hS7(zucJYXnj;R>whUX@@P;>>X9Ft#V^%Y z;Y#elJ1{PX4T|^R71)WI`Dwfr`%xWL^HRNcI=?i5AD~XtT2ux$qXxY5Qu43DJ{lOT z^`JJ{Ddb(&kLqAJe;63NW#L4ej9P;EI0IMVjre=irW`Xq`nRM6HGr93pNASiJ8}SQ zW7r>f8MWp|umn$G1IDlc)ZT;|zD%3=>06zrmRHf zWOZ1F;Z_P7Q8#LBkDxwy46nrBVJyb8kZMmry(kTJDsoXXDM4jq3evaDM)sktLw;;G zzwX8pSdImxakkF?910rwQB((?p*s8$HS_;?dyr}Aegir13H0v{|Bgnf2#ZRZ$mDR&MXy`+DlLwn1t%M2$j-WOuz-$fo(V(V>#?H z8MOqNsJ&8*+V#^=1DTD9xEM9yRTx$WTPW})XkDm!A8LkYQJdu)D#a;9(IuIL>aZHM z#tj&Qt*C)6^7|3gDcXetUsQhojBCZ@Un8AR935F5Dn&DJ7|z0La4zZvd$1W_^Y&4p z=s(?VMv`HVp}rRmd3!&yiZ+HL#Ye0T8?gdKbyHPVgi%B@7EP8rUQJeS%B#AZ$>+nfT!S})xl%l_S!$sxMrN~6B zRXOSfHF!PFLha_~QG4W7R0faYc>D-8)A$Or?_&jCg)5M(+kVtP+1~g2;cqCU(QqY) zeKj`X9e5H`aU!1{f>o$JFc~$&X4DK?P#J1N?V(3dnRym9pgpMP-@(!NXRn__mL}i6 zr7(dTmyt&eq!9zCBcvA$UN1*F6Gu*cjH>2+AF+>UBwiqN9VBXrH;Eew<$<&goc5LY zQ(`@#VN54BM*_idfj1&K!Svg9Q-6fewVXISP>TMSMbp=HgwVlVOvDko9wM5FrwG>G z<`a8}R$?x3AhI!-p0|@y4{;MQcs(&#z+J?a$h*NYlU|{e;de-kJx$z8uutt;V(?lQ zNli-6d7SF6y=kpmhewH*h({wgB;^KPj4Vnj2>+b=EMggPh|slxcx#|!_A}H1W)lw* zTKtEJHAF9=>pDW)T$eV>rh$^#FI~RdZ4t49*h)+xDu|{ioC7M)6HAF|;>W~ZV(@y6 zLbq3v@fVS)$pwL*L>^4eow;rBA>8QYSFw-Kj=i4PPrOcikLV!oCv?RVT?Cu@|JTiw zeiZp<^2oyHyzLp(DV;_<>1`owAa3z`XQU+MimAV$Hk8oO)74H~JW%39;4vcN^#ynv zah&)e@hq`~_!XgRd(Xj?wL^QVGrox{4rPZzRb`b0q0&%jc+<4P=`C%oD_WN, 2014 +# Assada , 2014 # cookiezeater , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "MIME-Version: 1.0\n" @@ -25,6 +26,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "секунда" @@ -37,6 +39,7 @@ msgstr[2] "секунд" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "минута" @@ -49,6 +52,7 @@ msgstr[2] "минут" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "час" @@ -61,6 +65,7 @@ msgstr[2] "часа" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "день" @@ -73,6 +78,7 @@ msgstr[2] "дней" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "неделя" @@ -85,6 +91,7 @@ msgstr[2] "недель" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "год" @@ -94,6 +101,7 @@ msgstr[2] "лет" #: ../../../../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 msgid "Banned!" msgstr "Забанен!" @@ -104,7 +112,8 @@ msgstr "Забанен!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Предыдущий" @@ -115,28 +124,29 @@ msgstr "Предыдущий" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Следующий" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Ошибка" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Произошла ошибка." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Войти" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Пост слишком длинный. Нажмите вот сюда чтобы просмотреть полностью." @@ -144,41 +154,47 @@ msgstr "Пост слишком длинный. Нажмите в #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Забанить" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Забанить и удалить" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Удалить файл" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Вы точно хотите удалить этот файл?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "*** Заспойлерить файл" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Вы точно хотите поместить этот файл под спойлер?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "*** Переместить ответ на другую доску" @@ -186,6 +202,7 @@ msgstr "*** Переместить ответ на другую доску" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Редактировать пост" @@ -194,69 +211,69 @@ msgstr "Редактировать пост" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Удалить" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Вы точно хотите это удалить?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Удалить все посты с этого IP" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Вы точно хотите удалить все посты с этого IP адреса?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Удалить все посты с данного IP со всех борд" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Вы точно хотите удалить все посты с этого IP адреса на всех досках?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Открепить тред" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Прикрепить тред" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Открыть тред" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Закрыть тред" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Переместить тред в другую доску" @@ -725,6 +742,9 @@ msgstr "Логи модерации" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -899,6 +919,8 @@ msgstr "удалить пост" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -923,6 +945,7 @@ msgstr "Файл" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -980,6 +1003,11 @@ msgstr "Пaроль" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1043,6 +1071,7 @@ msgstr "" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1176,6 +1205,8 @@ msgstr "" #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1220,6 +1251,8 @@ msgstr "Адрес" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1321,6 +1354,8 @@ msgstr "Флаги" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1355,6 +1390,8 @@ msgstr "Sticky" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1389,6 +1426,8 @@ msgstr "Lock" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1470,6 +1509,10 @@ msgstr "Нет результатов" #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1597,6 +1640,7 @@ msgstr "Новый пост" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1685,6 +1729,11 @@ msgstr "" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1716,6 +1765,8 @@ msgstr "" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1765,6 +1816,8 @@ msgstr "Новая заметка" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1834,6 +1887,11 @@ msgstr "без причины" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1879,6 +1937,8 @@ msgstr "все доски" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1907,6 +1967,8 @@ msgstr "" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1943,6 +2005,8 @@ msgstr "никогда" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2006,6 +2070,8 @@ msgstr "Время" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2058,6 +2124,7 @@ msgstr "Новый бан" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2250,6 +2317,8 @@ msgstr "" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2278,6 +2347,8 @@ msgstr "" #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2295,6 +2366,8 @@ msgstr "" #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2425,7 +2498,7 @@ msgstr "Время жалобы" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 msgid "Reported by" -msgstr "" +msgstr "Отправлено" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 msgid "Discard abuse report" @@ -2530,3 +2603,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo index 782d9ee2d07f849ecdf359850566dd507efc2b96..85c98dd89885094fd4f5f92bbfa4b6f6588bb364 100644 GIT binary patch delta 2655 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 L+lGR9-=+T#Eoecb diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po index 1ab53601..3d32a805 100644 --- a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po +++ b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 23:09+0000\n" -"Last-Translator: dubcheck \n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" +"Last-Translator: czaks \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" @@ -24,6 +24,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "sekunda" @@ -36,6 +37,7 @@ msgstr[2] "sekúnd" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "minúta" @@ -48,6 +50,7 @@ msgstr[2] "minút" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "hodina" @@ -60,6 +63,7 @@ msgstr[2] "hodín" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "deň" @@ -72,6 +76,7 @@ msgstr[2] "dní" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "týždeň" @@ -84,6 +89,7 @@ msgstr[2] "týždňov" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "rok" @@ -93,6 +99,7 @@ msgstr[2] "rokov" #: ../../../../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 msgid "Banned!" msgstr "Zabanovaný!" @@ -103,7 +110,8 @@ msgstr "Zabanovaný!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Späť" @@ -114,28 +122,29 @@ msgstr "Späť" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "Ďalej" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Chyba" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Nastala chyba." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Prihlásenie" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Príliš dlhý príspevok. Klikni sem pre zobrazenie celého textu." @@ -143,41 +152,47 @@ msgstr "Príliš dlhý príspevok. Klikni sem pre zobrazenie #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Zabanovať" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Zabanovať a odstrániť" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Odstrániť súbor" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Naozaj chceš odstrániť tento súbor?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Skrytý súbor" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Naozaj chceš skryť tento súbor?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Presunúť odpoveď do inej dosky" @@ -185,6 +200,7 @@ msgstr "Presunúť odpoveď do inej dosky" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Upraviť príspevok" @@ -193,69 +209,69 @@ msgstr "Upraviť príspevok" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Odstrániť" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Naozaj to chceš odstrániť?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Odstrániť všetky príspevky od IP adresy" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Naozaj chceš odstrániť všetky príspevky tejto IP adresy?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Odstrániť všetky príspevky IP adresy na všetkých doskách" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Naozaj chceš odstrániť všetky príspevky tejto IP adresy na všetkých doskách?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Odopnúť vlákno" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Pripnúť vlákno" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Povoliť bumpovanie vlákna" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Zakázať bumpovanie vlákna" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Odomknúť vlákno" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Zamknúť vlákno" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Presunúť vlákno na inú dosku" @@ -724,6 +740,9 @@ msgstr "Log moderácie" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -898,6 +917,8 @@ msgstr "Odstrániť príspevok" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -922,6 +943,7 @@ msgstr "Súbor" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -979,6 +1001,11 @@ msgstr "Heslo" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1042,6 +1069,7 @@ msgstr "žiadny predmet" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1175,6 +1203,8 @@ msgstr "skrytých. Klikni na Odpoveď pre ich zobrazenie." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1219,6 +1249,8 @@ msgstr "E-mail" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1320,6 +1352,8 @@ msgstr "Vlajky" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1354,6 +1388,8 @@ msgstr "Pripnuté" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1388,6 +1424,8 @@ msgstr "Zamknuté" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1469,6 +1507,10 @@ msgstr "Žiadne výsledky." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1596,6 +1638,7 @@ msgstr "Nový príspevok" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1684,6 +1727,11 @@ msgstr "Prispieť do noviniek" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1715,6 +1763,8 @@ msgstr "Tím" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1764,6 +1814,8 @@ msgstr "Nová poznámka" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1833,6 +1885,11 @@ msgstr "bez dôvodu" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1878,6 +1935,8 @@ msgstr "všetky dosky" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1906,6 +1965,8 @@ msgstr "sada" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1942,6 +2003,8 @@ msgstr "nikdy" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -2005,6 +2068,8 @@ msgstr "Čas" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2057,6 +2122,7 @@ msgstr "Nový ban" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2249,6 +2315,8 @@ msgstr "Stále čaká na rozsudok" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2277,6 +2345,8 @@ msgstr "Odoslal si maximálny počet odvolaní sa na ban. Nemôžeš sa znova od #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2294,6 +2364,8 @@ msgstr "a Tvoje odvolanie sa bolo odmietnuté" #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2529,3 +2601,19 @@ msgstr "Vlajka" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "Žiadna" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo index f5f1f6e99143255e5a37d4c965632a42ae3eae73..9a62cdad360a2db8a73b7d43c52eced0d1747984 100644 GIT binary patch delta 62 zcmcb=lJWjZ#tpa4^$it_46O`Iv<-|547dXPb%RpNGK(|w^K@MjOH!>Aj0_A-bPY^& SjSLkGEv*bpH*;BBl>q>F@e*VJ delta 62 zcmcb=lJWjZ#tpa4^$ipZ46IBnwGE6647dXPb%RpNGK(|w^K@MjOH!>Aj0_A-bPY^& S4J{RnjI2yeHgj2Al>q>H1rlxm diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po index e3435ab9..844442c3 100644 --- a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:54+0000\n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-21 19:05+0000\n" "Last-Translator: czaks \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n" "MIME-Version: 1.0\n" @@ -24,6 +24,7 @@ msgstr "" #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 msgid "second" msgid_plural "seconds" msgstr[0] "saniye" @@ -34,6 +35,7 @@ msgstr[0] "saniye" #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 msgid "minute" msgid_plural "minutes" msgstr[0] "dakika" @@ -44,6 +46,7 @@ msgstr[0] "dakika" #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 msgid "hour" msgid_plural "hours" msgstr[0] "saat" @@ -54,6 +57,7 @@ msgstr[0] "saat" #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 msgid "day" msgid_plural "days" msgstr[0] "gün" @@ -64,6 +68,7 @@ msgstr[0] "gün" #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 msgid "week" msgid_plural "weeks" msgstr[0] "hafta" @@ -74,6 +79,7 @@ msgstr[0] "hafta" #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 msgid "year" msgid_plural "years" msgstr[0] "yıl" @@ -81,6 +87,7 @@ msgstr[0] "yıl" #: ../../../../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 msgid "Banned!" msgstr "Ban!" @@ -91,7 +98,8 @@ msgstr "Ban!" #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 -#: ../../../../inc/functions.php:1234 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 msgid "Previous" msgstr "Geri" @@ -102,28 +110,29 @@ msgstr "Geri" #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 -#: ../../../../inc/functions.php:1248 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 msgid "Next" msgstr "İleri" #: ../../../../inc/display.php:93 ../../../../inc/display.php:105 -#: ../../../../inc/display.php:108 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 msgid "Error" msgstr "Hata" #: ../../../../inc/display.php:94 ../../../../inc/display.php:106 -#: ../../../../inc/display.php:109 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 msgid "An error has occured." msgstr "Bi hata oluştu." #: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 #: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 -#: ../../../../inc/display.php:125 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 msgid "Login" msgstr "Giriş" #: ../../../../inc/display.php:229 ../../../../inc/display.php:241 -#: ../../../../inc/display.php:244 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 #, php-format msgid "Post too long. Click here to view the full text." msgstr "Gönderi çok uzun. Görmek için lütfen tıklayın." @@ -131,41 +140,47 @@ msgstr "Gönderi çok uzun. Görmek için lütfen tıklayın #: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 msgid "Ban" msgstr "Ban" #: ../../../../inc/display.php:372 ../../../../inc/display.php:477 #: ../../../../inc/display.php:389 ../../../../inc/display.php:499 #: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 msgid "Ban & Delete" msgstr "Banla & Sil" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Delete file" msgstr "Dosyayı sil" #: ../../../../inc/display.php:376 ../../../../inc/display.php:481 #: ../../../../inc/display.php:393 ../../../../inc/display.php:503 #: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 msgid "Are you sure you want to delete this file?" msgstr "Bu dosyayı silmek istediğinizden emin misiniz?" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Spoiler File" msgstr "Spoiler" #: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 msgid "Are you sure you want to spoiler this file?" msgstr "Spoiler eklemek istediğinizden emin misiniz?" #: ../../../../inc/display.php:384 ../../../../inc/display.php:401 -#: ../../../../inc/display.php:404 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 msgid "Move reply to another board" msgstr "Cevabı başka tahtaya taşı" @@ -173,6 +188,7 @@ msgstr "Cevabı başka tahtaya taşı" #: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 #: ../../../../inc/display.php:405 ../../../../inc/display.php:534 #: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 msgid "Edit post" msgstr "Girdiyi düzenle" @@ -181,69 +197,69 @@ msgstr "Girdiyi düzenle" #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 #: ../../../../inc/display.php:483 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Delete" msgstr "Sil" #: ../../../../inc/display.php:461 ../../../../inc/display.php:483 -#: ../../../../inc/display.php:486 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 msgid "Are you sure you want to delete this?" msgstr "Silmek istediğinizden emin misiniz?" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Delete all posts by IP" msgstr "Bu IP'den gönderilen her şeyi sil" #: ../../../../inc/display.php:465 ../../../../inc/display.php:487 -#: ../../../../inc/display.php:490 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 msgid "Are you sure you want to delete all posts by this IP address?" msgstr "Bu IP'den gönderilen her şeyi silmek istediğinizden emin misiniz?" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "Delete all posts by IP across all boards" msgstr "Bu IP'nin bütün tahtalardaki gönderilerini sil" #: ../../../../inc/display.php:469 ../../../../inc/display.php:491 -#: ../../../../inc/display.php:494 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 msgid "" "Are you sure you want to delete all posts by this IP address, across all " "boards?" msgstr "Bu IP'nin bütün tahtalardaki girdilerini silmek istediğinizden emin misiniz?" #: ../../../../inc/display.php:490 ../../../../inc/display.php:512 -#: ../../../../inc/display.php:515 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 msgid "Make thread not sticky" msgstr "Konuyu yapışmayan yap" #: ../../../../inc/display.php:492 ../../../../inc/display.php:514 -#: ../../../../inc/display.php:517 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 msgid "Make thread sticky" msgstr "Konuyu yapışkan yap" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 -#: ../../../../inc/display.php:521 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" msgstr "Konunun yukarı gitmesine izin ver." #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 -#: ../../../../inc/display.php:523 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" msgstr "Konunun yukarı gitmesini engelle" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 -#: ../../../../inc/display.php:528 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 msgid "Unlock thread" msgstr "Konunun kilidini aç" #: ../../../../inc/display.php:505 ../../../../inc/display.php:527 -#: ../../../../inc/display.php:530 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 msgid "Lock thread" msgstr "Konuyu kilitle" #: ../../../../inc/display.php:508 ../../../../inc/display.php:530 -#: ../../../../inc/display.php:533 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 msgid "Move thread to another board" msgstr "Konuyu başka bir tahtaya taşı" @@ -712,6 +728,9 @@ msgstr "Moderasyon logları" #. line 104 #. line 20 #. line 18 +#. line 104 +#. line 20 +#. line 18 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 @@ -886,6 +905,8 @@ msgstr "Girdiyi sil" #. line 3 #. line 97 #. line 3 +#. line 97 +#. line 3 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 @@ -910,6 +931,7 @@ msgstr "Dosya" #. line 131 #. line 14 #. line 144 +#. line 14 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 @@ -967,6 +989,11 @@ msgstr "Şifre" #. line 108 #. line 32 #. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 @@ -1030,6 +1057,7 @@ msgstr "konu yok" #. line 56 #. line 44 #. line 56 +#. line 44 #: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 @@ -1155,6 +1183,8 @@ msgstr "gizlendi. Görmek için cevaplaya basın." #. line 8 #. line 7 #. line 14 +#. line 8 +#. line 14 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 @@ -1199,6 +1229,8 @@ msgstr "E-posta" #. line 12 #. line 24 #. line 46 +#. line 12 +#. line 46 #: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 @@ -1300,6 +1332,8 @@ msgstr "Bayrak" #. line 116 #. line 128 #. line 129 +#. line 128 +#. line 129 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 @@ -1334,6 +1368,8 @@ msgstr "Yapışkan" #. line 120 #. line 132 #. line 133 +#. line 132 +#. line 133 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 @@ -1368,6 +1404,8 @@ msgstr "Kilitli" #. line 124 #. line 136 #. line 137 +#. line 136 +#. line 137 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 @@ -1447,6 +1485,10 @@ msgstr "Sonuç yok." #. line 13 #. line 115 #. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 #: ../../../../search.php:168 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 @@ -1574,6 +1616,7 @@ msgstr "Yeni gönderi" #. line 28 #. line 16 #. line 28 +#. line 16 #: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 msgid "Body" @@ -1662,6 +1705,11 @@ msgstr "Haber gönder" #. line 152 #. line 182 #. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 @@ -1693,6 +1741,8 @@ msgstr "Yönetim" #. line 68 #. line 25 #. line 68 +#. line 25 +#. line 68 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 @@ -1742,6 +1792,8 @@ msgstr "Yeni not" #. line 7 #. line 94 #. line 7 +#. line 94 +#. line 7 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 msgid "Status" @@ -1811,6 +1863,11 @@ msgstr "sebepsizce" #. line 184 #. line 65 #. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 @@ -1856,6 +1913,8 @@ msgstr "tüm tahtalar" #. line 50 #. line 128 #. line 43 +#. line 128 +#. line 43 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 @@ -1884,6 +1943,8 @@ msgstr "Ayarla" #. line 52 #. line 132 #. line 47 +#. line 132 +#. line 47 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 @@ -1920,6 +1981,8 @@ msgstr "hiç bir zaman" #. line 53 #. line 142 #. line 57 +#. line 142 +#. line 57 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 @@ -1983,6 +2046,8 @@ msgstr "Zaman" #. line 137 #. line 185 #. line 89 +#. line 185 +#. line 89 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 @@ -2035,6 +2100,7 @@ msgstr "Yeni Ban" #. line 2 #. line 5 #. line 2 +#. line 5 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 msgid "Phrase:" @@ -2227,6 +2293,8 @@ msgstr "Hala bekliyor" #. line 112 #. line 101 #. line 112 +#. line 101 +#. line 112 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 msgid "You appealed this ban on" @@ -2255,6 +2323,8 @@ msgstr "Müracaat sınırını aştınız ulan." #. line 121 #. line 114 #. line 121 +#. line 114 +#. line 121 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 msgid "and it was denied." @@ -2272,6 +2342,8 @@ msgstr "ve geri çevrildi." #. line 123 #. line 116 #. line 123 +#. line 116 +#. line 123 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 msgid "You may appeal this ban again. Please enter your reasoning below." @@ -2507,3 +2579,19 @@ msgstr "" #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" msgstr "" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "" + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr "" diff --git a/tools/i18n_update.sh b/tools/i18n_update.sh new file mode 100755 index 00000000..faf4478d --- /dev/null +++ b/tools/i18n_update.sh @@ -0,0 +1,3 @@ +#!/bin/sh +cd inc/locale; tx pull; cd - +cd inc/locale; K=`ls -d *_*`; cd -; for i in $K; do tools/i18n_compile.php -l $i; done From 6f56b33b2e4ff31fab9c1307b087b6b195cd5f26 Mon Sep 17 00:00:00 2001 From: cicus Date: Tue, 22 Apr 2014 13:24:37 +0200 Subject: [PATCH 06/12] update hu_HU locale --- inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo | Bin 24104 -> 24301 bytes inc/locale/hu_HU/LC_MESSAGES/tinyboard.po | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.mo index 170ec770b3d649e0906ccfe42a54ef37acefe067..cc13089b19757162d7d0c680bb7b5187b91f7922 100644 GIT binary patch delta 7136 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 delta 6950 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 diff --git a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po index 503b70d7..510e7ba0 100644 --- a/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/hu_HU/LC_MESSAGES/tinyboard.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-21 21:04+0200\n" -"PO-Revision-Date: 2014-04-22 06:48+0000\n" +"PO-Revision-Date: 2014-04-22 06:50+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" @@ -2606,4 +2606,4 @@ msgstr "Áthelyezve ide: %s." msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "Nem sikerült a RecentPosts téma létrehozása, mert nem találhatók feldolgozásra váró táblák." From cfa7862cf5f0958c208a072492ed949f8b54f481 Mon Sep 17 00:00:00 2001 From: cookiezeater Date: Tue, 22 Apr 2014 13:26:08 +0200 Subject: [PATCH 07/12] update ru_RU translation --- inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo | Bin 14742 -> 21874 bytes inc/locale/ru_RU/LC_MESSAGES/tinyboard.po | 161 +++++++++++----------- 2 files changed, 81 insertions(+), 80 deletions(-) diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo index e0c61fe64fc21cb7dfe733ad8a67274aec1bf85d..6db86266e2a5098c8ebca818839c0ec5b831219c 100644 GIT binary patch literal 21874 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 diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po index 39944cd0..1468a87f 100644 --- a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po @@ -6,13 +6,14 @@ # Assada , 2014 # Assada , 2014 # cookiezeater , 2014 +# cookiezeater , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-21 21:04+0200\n" -"PO-Revision-Date: 2014-04-21 19:05+0000\n" -"Last-Translator: czaks \n" +"PO-Revision-Date: 2014-04-22 09:09+0000\n" +"Last-Translator: cookiezeater \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -255,12 +256,12 @@ msgstr "Прикрепить тред" #: ../../../../inc/display.php:496 ../../../../inc/display.php:518 #: ../../../../inc/display.php:521 ../../../../inc/display.php:525 msgid "Allow thread to be bumped" -msgstr "" +msgstr "Разрешить бамп треда" #: ../../../../inc/display.php:498 ../../../../inc/display.php:520 #: ../../../../inc/display.php:523 ../../../../inc/display.php:527 msgid "Prevent thread from being bumped" -msgstr "" +msgstr "Запретить бамп треда" #: ../../../../inc/display.php:503 ../../../../inc/display.php:525 #: ../../../../inc/display.php:528 ../../../../inc/display.php:532 @@ -284,7 +285,7 @@ msgstr "Переместить тред в другую доску" #: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475 msgid "You have been muted for unoriginal content." -msgstr "" +msgstr "Вы получили мут за неоригинальный контент." #. The names on the post buttons. (On most imageboards, these are both just #. "Post"). @@ -309,7 +310,7 @@ msgstr "Новый ответ" msgid "" "All trademarks, copyrights, comments, and images on this page are owned by " "and are the responsibility of their respective parties." -msgstr "" +msgstr "Все права, копирайты на этой странице принадлежат правообладателям. За любую размещенную информацию несет личную ответственность лицо, загрузившее эту информацию. Все комментарии принадлежат лицам, отправившим их." #. * ==================== #. * Error messages @@ -317,7 +318,7 @@ msgstr "" #. Error messages #: ../../../../inc/config.php:866 msgid "Lurk some more before posting." -msgstr "" +msgstr "Error. Lurk some more before posting." #. * ==================== #. * Error messages @@ -368,7 +369,7 @@ msgstr "Ты должен загрузить изображение." #: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989 msgid "The server failed to handle your upload." -msgstr "" +msgstr "Произошла ошибка при загрузке файла на сервер." #: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972 @@ -386,7 +387,7 @@ msgstr "Неверная доска." #: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992 msgid "Thread specified does not exist." -msgstr "" +msgstr "Данного треда не существует." #: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975 @@ -435,21 +436,21 @@ msgstr "Не оригинальный контент." #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." -msgstr "" +msgstr "Unoriginal content! You have been muted for %d seconds." #: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 #, php-format msgid "You are muted! Expires in %d seconds." -msgstr "" +msgstr "Вы получили мут! Мут будет снят через %d секунд" #: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 #, php-format msgid "Your IP address is listed in %s." -msgstr "" +msgstr "Ваш айпи адрес числится в %s." #: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985 @@ -461,7 +462,7 @@ msgstr "Слишком много ссылок. Обнаружен флуд." #: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 msgid "Too many cites; post discarded." -msgstr "" +msgstr "Слишком много цитат; Пост отклонён." #: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987 @@ -485,7 +486,7 @@ msgstr "Ты ничего не выбрал для жалобы." #: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 msgid "You can't report that many posts at once." -msgstr "" +msgstr "Вы не можете пожаловаться на столько постов за раз." #: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991 @@ -554,7 +555,7 @@ msgstr "" #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 msgid "You seem to have mistyped the verification." -msgstr "" +msgstr "Вы ошиблись при вводе капчи." #. Moderator errors #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 @@ -564,7 +565,7 @@ msgstr "" msgid "" "You are only allowed to unban %s users at a time. You tried to unban %u " "users." -msgstr "" +msgstr "Вам разрешено разбанивать %s пользователей за раз. Вы попытались разбанить %u пользователей." #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 @@ -590,7 +591,7 @@ msgstr "" #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 msgid "Invalid/malformed cookies." -msgstr "" +msgstr "Неверные/испорченные куки." #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 @@ -617,7 +618,7 @@ msgstr "Поле %s заполнено с ошибкой. " #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #, php-format msgid "There is already a %s board." -msgstr "" +msgstr "Борда %s уже существует." #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 @@ -682,7 +683,7 @@ msgstr "Дашборд" #: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 msgid "There are no boards to search!" -msgstr "" +msgstr "Нет борд для осуществления поиска." #. $results now contains the search results #: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 @@ -705,7 +706,7 @@ msgstr "Новая доска" #: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 msgid "Noticeboard" -msgstr "" +msgstr "Блог" #: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 @@ -750,7 +751,7 @@ msgstr "Логи модерации" #: ../../../../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 @@ -774,7 +775,7 @@ msgstr "Целевая и текущая доска одинаковы." #: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 msgid "Impossible to move thread; there is only one board." -msgstr "" +msgstr "Невозможно переместить тред; здесь только одна доска." #. line 39 #: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 @@ -827,16 +828,16 @@ msgstr "Редактор настроек" #: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 msgid "Themes directory doesn't exist!" -msgstr "" +msgstr "Директории с темами не существует!" #: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 msgid "Cannot open themes directory; check permissions." -msgstr "" +msgstr "Не получается открыть директорию с шаблонами; проверьте права доступа." #: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 msgid "Manage themes" -msgstr "" +msgstr "Управлять шаблонами" #: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 #, php-format @@ -859,11 +860,11 @@ msgstr "Debug: Анти-спам" #: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 msgid "Debug: Recent posts" -msgstr "" +msgstr "Debug: Recent posts" #: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 msgid "Debug: SQL" -msgstr "" +msgstr "Debug: SQL" #. Print error #: ../../../../inc/database.php:72 ../../../../inc/database.php:94 @@ -872,7 +873,7 @@ msgstr "Ошибка базы данных:" #: ../../../../banned.php:4 msgid "Banned?" -msgstr "" +msgstr "Забанен?" #: ../../../../banned.php:5 msgid "You are not banned." @@ -1057,7 +1058,7 @@ 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 @@ -1065,7 +1066,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 @@ -1094,9 +1095,9 @@ msgstr "" #: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 msgid "1 reply" msgid_plural "%count% replies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%count% ответ" +msgstr[1] "%count% ответа" +msgstr[2] "%count% ответов" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 @@ -1153,9 +1154,9 @@ msgstr[2] "Последние %count% постов" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 msgid "1 post" msgid_plural "%count% posts" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%count% пост" +msgstr[1] "%count% поста" +msgstr[2] "%count% постов" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 @@ -1175,9 +1176,9 @@ msgstr "и" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 msgid "1 image reply" msgid_plural "%count% image replies" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +msgstr[0] "%count% ответ с картинкой" +msgstr[1] "%count% ответа с картинкой" +msgstr[2] "%count% ответов с картинкой" #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 @@ -1186,7 +1187,7 @@ msgstr[2] "" #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 msgid "omitted. Click reply to view." -msgstr "" +msgstr "обрезан. Нажмите ответить, чтобы просмотреть полностью." #. line 7 #. line 14 @@ -1286,17 +1287,17 @@ 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 @@ -1452,24 +1453,24 @@ 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[1] "" -msgstr[2] "" +msgstr[0] "%d результат в" +msgstr[1] "%d результата в" +msgstr[2] "%d результатов в" #: ../../../../search.php:163 ../../../../search.php:167 msgid "No results." @@ -1525,12 +1526,12 @@ msgstr "Поиск" #: ../../../../inc/mod/pages.php:939 msgid "Ban appeal not found!" -msgstr "" +msgstr "Жалоб на баны нету!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 msgid "Ban appeals" -msgstr "" +msgstr "Жалобы на несправедливые баны" #: ../../../../inc/mod/pages.php:1833 msgid "New user" @@ -1538,11 +1539,11 @@ msgstr "Новый пользователь" #: ../../../../inc/mod/pages.php:1888 msgid "Impossible to promote/demote user." -msgstr "" +msgstr "Невозможно повысить/понизить пользователя." #: ../../../../inc/mod/pages.php:2612 msgid "Debug: APC" -msgstr "" +msgstr "Debug: APC" #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 @@ -1550,7 +1551,7 @@ msgstr "" msgid "" "Your code contained PHP syntax errors. Please go back and correct them. PHP " "says: " -msgstr "" +msgstr "Your code contained PHP syntax errors. Please go back and correct them. PHP says: " #. line 2 #. line 6 @@ -1582,7 +1583,7 @@ msgstr "Сообщения" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 msgid "View all noticeboard entries" -msgstr "" +msgstr "Просмотреть все заметки" #. line 76 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 @@ -1605,7 +1606,7 @@ msgstr "Другое" #. line 139 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 msgid "Debug" -msgstr "" +msgstr "Дебаг" #. line 141 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 @@ -1624,7 +1625,7 @@ msgstr "SQL" #. line 164 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 msgid "User account" -msgstr "" +msgstr "Аккаунт пользователя" #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 msgid "Logout" @@ -1644,12 +1645,12 @@ 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 @@ -1674,7 +1675,7 @@ msgstr "" #. line 33 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 msgid "Post news entry" -msgstr "" +msgstr "Создать новостной пост" #. line 24 #. line 63 @@ -1974,7 +1975,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 @@ -2082,7 +2083,7 @@ msgstr "Действие" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 msgid "(or subnet)" -msgstr "" +msgstr "(или подсеть)" #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 msgid "hidden" @@ -2099,7 +2100,7 @@ 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 @@ -2169,7 +2170,7 @@ msgstr "IP адрес\\маска" #: ../../../../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 @@ -2241,19 +2242,19 @@ 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:" @@ -2276,7 +2277,7 @@ 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" @@ -2399,7 +2400,7 @@ 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 @@ -2412,23 +2413,23 @@ 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" @@ -2446,7 +2447,7 @@ msgstr "ID Треда" #. line 14 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 msgid "Leave shadow thread" -msgstr "" +msgstr "Оставить \"shadow\" тред" #. line 18 #: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 @@ -2482,7 +2483,7 @@ msgstr "Ты уверен?" #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 msgid "Click to proceed to" -msgstr "" +msgstr "* Кликните, чтобы перейти к" #. line 5 #: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 @@ -2502,11 +2503,11 @@ 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 @@ -2530,7 +2531,7 @@ 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 From 31aa30d72629ba9d6d4d5ced18aa888626450590 Mon Sep 17 00:00:00 2001 From: dubcheck Date: Tue, 22 Apr 2014 15:20:07 +0200 Subject: [PATCH 08/12] update sk_SK translation --- inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo | Bin 23844 -> 24091 bytes inc/locale/sk_SK/LC_MESSAGES/tinyboard.po | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.mo index 85c98dd89885094fd4f5f92bbfa4b6f6588bb364..0dd8f2e4dfa87ba1a9523d501d0315e7b5d6bbac 100644 GIT binary patch delta 7190 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 BBq{&^ delta 6968 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 diff --git a/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po b/inc/locale/sk_SK/LC_MESSAGES/tinyboard.po index 3d32a805..6b35297d 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-04-21 21:04+0200\n" -"PO-Revision-Date: 2014-04-21 19:05+0000\n" -"Last-Translator: czaks \n" +"PO-Revision-Date: 2014-04-22 12:20+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" @@ -2610,10 +2610,10 @@ msgstr "Žiadna" #: ../../../../inc/config.php:1211 #, php-format msgid "Moved to %s." -msgstr "" +msgstr "Presunuté do %s" #: ../../../../templates/themes/recent/theme.php:50 msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "Nieje možné zostaviť tému RecentPosts pretože neexistujú žiadne dosky, ktoré by mohla čítať." From b4d3a592a59c6d2de4c96701ae07fb99205f9d6d Mon Sep 17 00:00:00 2001 From: copypaste Date: Tue, 22 Apr 2014 23:21:22 +0200 Subject: [PATCH 09/12] update es_ES locale --- inc/locale/es_ES/LC_MESSAGES/javascript.js | 2 +- inc/locale/es_ES/LC_MESSAGES/javascript.po | 13 ++--- inc/locale/es_ES/LC_MESSAGES/tinyboard.mo | Bin 21714 -> 23244 bytes inc/locale/es_ES/LC_MESSAGES/tinyboard.po | 59 +++++++++++---------- 4 files changed, 38 insertions(+), 36 deletions(-) diff --git a/inc/locale/es_ES/LC_MESSAGES/javascript.js b/inc/locale/es_ES/LC_MESSAGES/javascript.js index e21fa37f..236e84d0 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"}; \ 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]","WebM Settings":"Configuraci\u00f3n de WebM"}; \ 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 15f4cb48..3d960470 100644 --- a/inc/locale/es_ES/LC_MESSAGES/javascript.po +++ b/inc/locale/es_ES/LC_MESSAGES/javascript.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# copypaste , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:53+0000\n" -"Last-Translator: czaks \n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-22 21:14+0000\n" +"Last-Translator: copypaste \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" @@ -538,11 +539,11 @@ msgstr "pm" #: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 msgid "Your browser does not support HTML5 video." -msgstr "" +msgstr "Su navegador no soporta a video de HTML5." #: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 msgid "[play once]" -msgstr "" +msgstr "[reproducir una vez]" #: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 msgid "[loop]" @@ -550,7 +551,7 @@ msgstr "" #: ../../../../js/webm-settings.js:42 msgid "WebM Settings" -msgstr "" +msgstr "Configuración de WebM" #: ../../../../js/webm-settings.js:44 msgid "Expand videos inline" diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo b/inc/locale/es_ES/LC_MESSAGES/tinyboard.mo index 4969ea9fd4cdbe27f991ded5fac4cd660d09e734..552affc17afb07ef22051d46c44b3f6b21030961 100644 GIT binary patch delta 8072 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 Z9dg!JF*MV6ZfK@IH}6ESFXP^2{{bX%^i}`> diff --git a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po index 39c92796..fe0497ee 100644 --- a/inc/locale/es_ES/LC_MESSAGES/tinyboard.po +++ b/inc/locale/es_ES/LC_MESSAGES/tinyboard.po @@ -3,13 +3,14 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: +# copypaste , 2014 msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-21 21:04+0200\n" -"PO-Revision-Date: 2014-04-21 19:05+0000\n" -"Last-Translator: czaks \n" +"PO-Revision-Date: 2014-04-22 21:06+0000\n" +"Last-Translator: copypaste \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" @@ -2480,115 +2481,115 @@ msgstr "Probablemente que estás viendo este mensaje porque el Javascript está #. line 7 #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 msgid "Report date" -msgstr "" +msgstr "Fecha del reporte" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 msgid "Reported by" -msgstr "" +msgstr "Reportado por" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 msgid "Discard abuse report" -msgstr "" +msgstr "Desechar reporte de abuso" #: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 msgid "Discard all abuse reports by this IP address" -msgstr "" +msgstr "Desechar todos los reportes de abuso por esta dirección IP" #. line 4 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 msgid "From" -msgstr "" +msgstr "De" #. line 34 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 msgid "Delete forever" -msgstr "" +msgstr "Borrar para siempre" #. line 39 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 msgid "Reply with quote" -msgstr "" +msgstr "Responder con cita" #. line 18 #: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 msgid "Send message" -msgstr "" +msgstr "Enviar mensaje" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 msgid "There are no themes available." -msgstr "" +msgstr "No hay ningún tema disponible." #. line 11 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 msgid "Version" -msgstr "" +msgstr "Versión" #. line 15 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 msgid "Description" -msgstr "" +msgstr "Descripción" #. line 19 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 msgid "Thumbnail" -msgstr "" +msgstr "Miniatura" #. line 27 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 msgid "Use theme" -msgstr "" +msgstr "Usar tema" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 msgid "Reconfigure" -msgstr "" +msgstr "Reconfigurar" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 msgid "Install" -msgstr "" +msgstr "Instalar" #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 msgid "Uninstall" -msgstr "" +msgstr "Desinstalar" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 msgid "new; optional" -msgstr "" +msgstr "nueva; opcional" #. line 32 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 msgid "Group" -msgstr "" +msgstr "Grupo" #. line 56 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 msgid "All boards" -msgstr "" +msgstr "Todos los tablones" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 msgid "Create user" -msgstr "" +msgstr "Crear usuario" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 msgid "Save changes" -msgstr "" +msgstr "Guardar los cambios" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 msgid "Delete user" -msgstr "" +msgstr "Borrar usuario" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 msgid "View more logs for this user." -msgstr "" +msgstr "Muestra más registros de este usuario" #. line 84 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 msgid "Flag" -msgstr "" +msgstr "Bandera" #. line 87 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" -msgstr "" +msgstr "Nada" #. When moving a thread to another board and choosing to keep a "shadow #. thread", an automated post (with @@ -2598,10 +2599,10 @@ msgstr "" #: ../../../../inc/config.php:1211 #, php-format msgid "Moved to %s." -msgstr "" +msgstr "Movido a %s." #: ../../../../templates/themes/recent/theme.php:50 msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "No se puede generar el tema de RecentPosts; no hay ningún tablón para generar." From 1a87dd4d5d0b458d3173dcd6ab9f1a81e30e0361 Mon Sep 17 00:00:00 2001 From: Assada Date: Tue, 22 Apr 2014 23:22:20 +0200 Subject: [PATCH 10/12] update ru_RU locale --- inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo | Bin 21874 -> 22090 bytes inc/locale/ru_RU/LC_MESSAGES/tinyboard.po | 28 +++++++++++----------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.mo index 6db86266e2a5098c8ebca818839c0ec5b831219c..71aea9245608d8d05e8c8049f6ecc47dad3c2d5b 100644 GIT binary patch delta 6338 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 diff --git a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po index 1468a87f..33795c37 100644 --- a/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po +++ b/inc/locale/ru_RU/LC_MESSAGES/tinyboard.po @@ -12,8 +12,8 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-21 21:04+0200\n" -"PO-Revision-Date: 2014-04-22 09:09+0000\n" -"Last-Translator: cookiezeater \n" +"PO-Revision-Date: 2014-04-22 20:14+0000\n" +"Last-Translator: Assada \n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -318,7 +318,7 @@ msgstr "Все права, копирайты на этой странице п #. Error messages #: ../../../../inc/config.php:866 msgid "Lurk some more before posting." -msgstr "Error. Lurk some more before posting." +msgstr "" #. * ==================== #. * Error messages @@ -436,7 +436,7 @@ msgstr "Не оригинальный контент." #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 #, php-format msgid "Unoriginal content! You have been muted for %d seconds." -msgstr "Unoriginal content! You have been muted for %d seconds." +msgstr "" #: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983 @@ -618,7 +618,7 @@ msgstr "Поле %s заполнено с ошибкой. " #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 #, php-format msgid "There is already a %s board." -msgstr "Борда %s уже существует." +msgstr "Доска %s уже существует." #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 @@ -643,7 +643,7 @@ msgstr "Страница не найдена." #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 #, 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 @@ -683,7 +683,7 @@ msgstr "Дашборд" #: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 msgid "There are no boards to search!" -msgstr "Нет борд для осуществления поиска." +msgstr "Нет досок для осуществления поиска." #. $results now contains the search results #: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 @@ -706,7 +706,7 @@ msgstr "Новая доска" #: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 msgid "Noticeboard" -msgstr "Блог" +msgstr "Пангель уведомлений" #: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 @@ -1526,7 +1526,7 @@ msgstr "Поиск" #: ../../../../inc/mod/pages.php:939 msgid "Ban appeal not found!" -msgstr "Жалоб на баны нету!" +msgstr "Жалоб на баны нет!" #: ../../../../inc/mod/pages.php:989 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 @@ -1945,7 +1945,7 @@ msgstr "все доски" #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 msgid "Set" -msgstr "" +msgstr "Установить" #. line 132 #. line 13 @@ -2546,7 +2546,7 @@ msgstr "Описание" #. line 19 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 msgid "Thumbnail" -msgstr "" +msgstr "Миниатюра" #. line 27 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 @@ -2567,7 +2567,7 @@ msgstr "Удалить" #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 msgid "new; optional" -msgstr "" +msgstr "новый; опционально" #. line 32 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 @@ -2603,7 +2603,7 @@ 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 @@ -2613,7 +2613,7 @@ msgstr "" #: ../../../../inc/config.php:1211 #, php-format msgid "Moved to %s." -msgstr "" +msgstr "Перемещено в %s." #: ../../../../templates/themes/recent/theme.php:50 msgid "" From 9019cbdc3055f08d6021a35d08a3cd9785f0a480 Mon Sep 17 00:00:00 2001 From: Tunai Date: Tue, 22 Apr 2014 23:23:02 +0200 Subject: [PATCH 11/12] update tr_TR locale --- inc/locale/tr_TR/LC_MESSAGES/javascript.js | 2 +- inc/locale/tr_TR/LC_MESSAGES/javascript.po | 8 ++++---- inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo | Bin 21727 -> 22025 bytes inc/locale/tr_TR/LC_MESSAGES/tinyboard.po | 12 ++++++------ 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/inc/locale/tr_TR/LC_MESSAGES/javascript.js b/inc/locale/tr_TR/LC_MESSAGES/javascript.js index f054d1be..e3b65fcc 100644 --- a/inc/locale/tr_TR/LC_MESSAGES/javascript.js +++ b/inc/locale/tr_TR/LC_MESSAGES/javascript.js @@ -1 +1 @@ -l10n = {"Style: ":"Stil: ","File":"Dosya","hide":"gizle","show":"g\u00f6ster","Show locked threads":"Kilitli konular\u0131 g\u00f6ster","Hide locked threads":"Gizli konular\u0131 kilitle","URL":"URL","Select":"Se\u00e7","Remote":"Uzak","Embed":"G\u00f6m","Oekaki":"Oekaki","hidden":"gizli","Show images":"Resimleri g\u00f6ster","Hide images":"Resimleri gizle","Password":"\u015eifre","Delete file only":"Sadece dosyay\u0131 sil","Delete":"Sil","Reason":"Sebep","Report":"\u015eikayet et","Click reply to view.":"G\u00f6rmek i\u00e7in cevaplaya bas\u0131n.","Click to expand":"Geni\u015fletmek i\u00e7in t\u0131klay\u0131n","Hide expanded replies":"Daralt","Brush size":"F\u0131r\u00e7a b\u00fcy\u00fckl\u00fc\u011f\u00fc","Set text":"Yaz\u0131y\u0131 ayarla","Clear":"Temizle","Save":"Kay\u0131t et","Load":"Y\u00fckle","Toggle eraser":"Silgi","Get color":"Rengi se\u00e7","Fill":"Doldur","Use oekaki instead of file?":"Dosya yerine oekaki kullan","Edit in oekaki":"oekaki'de d\u00fczenle","Enter some text":"Bir yaz\u0131 girin","Enter font or leave empty":"Font girin ya da bo\u015f b\u0131rak\u0131n","Forced anonymity":"Zorunlu anon","enabled":"etkin","disabled":"etkin de\u011fil","Sun":"Paz","Mon":"Pzt","Tue":"Sa","Wed":"\u00c7r\u015f","Thu":"Per","Fri":"Cu","Sat":"Cts","Catalog":"Katalog","Submit":"G\u00f6nder","Quick reply":"\u00c7abuk cevap","Posting mode: Replying to >>{0}<\/small>":"G\u00f6nderme modu: >>{0}<\/small> cevap veriyorsunuz","Return":"Geri d\u00f6n","Expand all images":"B\u00fct\u00fcn resimleri geni\u015flet","Hello!":"Merhaba!","{0} users":"{0} kullan\u0131c\u0131","(hide threads from this board)":"(bu tahtadan konular\u0131 gizle)","(show threads from this board)":"(bu tahtadan konular\u0131 g\u00f6ster)","No more threads to display":"G\u00f6sterecek ba\u015fka konu kalmad\u0131","Loading...":"Y\u00fckleniyor...","Save as original filename":"Dosya ad\u0131yla kaydet","Reported post(s).":"\u015eikayet edilen konu\/konular.","An unknown error occured!":"FATAL \u00d6R\u00d6R","Something went wrong... An unknown error occured!":"Bilemedi\u011fimiz \u00e7ok fena \u015feyler oldu!","Working...":"Yap\u0131yoruz...","Posting... (#%)":"G\u00f6nderiliyor... (#%)","Posted...":"G\u00f6nderildi...","An unknown error occured when posting!":"Hata... \u00e7ok... fena... ","Posting...":"G\u00f6nderiliyor...","Upload URL":"Y\u00fckleme linki","Spoiler Image":"Spoiler","Comment":"Yorum","Quick Reply":"\u00c7abuk Cevaplama","Stop watching this thread":"Bu konuyu takip etmeyi b\u0131rak","Watch this thread":"Bu konuyu takip et","Unpin this board":"Bu tahtan\u0131n i\u011fnesini kald\u0131r","Pin this board":"Bu tahtay\u0131 i\u011fnele","Stop watching this board":"Bu tahtay\u0131 izlemeyi b\u0131rak","Watch this board":"Bu tahtay\u0131 izle","Click on any image on this site to load it into oekaki applet":"Oekaki'ye atmak i\u00e7in website \u00fczerindeki herhangi bir resme t\u0131klay\u0131n","Sunday":"Pazar","Monday":"Pazartesi","Tuesday":"Sal","Wednesday":"\u00c7ar\u015famba","Thursday":"Per\u015fembe","Friday":"Cuma","Saturday":"Cumartesi","January":"Ocak","February":"\u015eubat","March":"Mart","April":"Nisan","May":"May\u0131s","June":"Haziran","July":"Temmuz","August":"A\u011fustos","September":"Eyl\u00fcl","October":"kim","November":"Kas\u0131m","December":"Aral\u0131k","Jan":"Oca","Feb":"\u015eub","Mar":"Mar","Apr":"Nis","Jun":"Haz","Jul":"Tem","Aug":"A\u011fu","Sep":"Eyl","Oct":"Eki","Nov":"Kas","Dec":"Ara","AM":"\u00d6\u00d6","PM":"\u00d6S","am":"\u00f6\u00f6","pm":"\u00f6s","Your browser does not support HTML5 video.":"Taray\u0131c\u0131n\u0131z HTML5 videolar\u0131 desteklemiyor","[play once]":"[bir kere oynat]","[loop]":"[devaml\u0131]","WebM Settings":"WebM Ayarlar\u0131","Expand videos inline":"Videolar\u0131 i\u00e7erde geni\u015flet","Play videos on hover":"Mouse \u00fcst\u00fcne gelince videolar oynas\u0131n","Default volume":"Ses"}; \ No newline at end of file +l10n = {"Style: ":"Stil: ","File":"Dosya","hide":"gizle","show":"g\u00f6ster","Show locked threads":"Kilitli konular\u0131 g\u00f6ster","Hide locked threads":"Gizli konular\u0131 kilitle","URL":"URL","Select":"Se\u00e7","Remote":"Uzak","Embed":"G\u00f6m","Oekaki":"Oekaki","hidden":"gizli","Show images":"Resimleri g\u00f6ster","Hide images":"Resimleri gizle","Password":"\u015eifre","Delete file only":"Sadece dosyay\u0131 sil","Delete":"Sil","Reason":"Sebep","Report":"\u015eikayet et","Click reply to view.":"G\u00f6rmek i\u00e7in cevaplaya bas\u0131n.","Click to expand":"Geni\u015fletmek i\u00e7in t\u0131klay\u0131n","Hide expanded replies":"Daralt","Brush size":"F\u0131r\u00e7a b\u00fcy\u00fckl\u00fc\u011f\u00fc","Set text":"Yaz\u0131y\u0131 ayarla","Clear":"Temizle","Save":"Kay\u0131t et","Load":"Y\u00fckle","Toggle eraser":"Silgi","Get color":"Rengi se\u00e7","Fill":"Doldur","Use oekaki instead of file?":"Dosya yerine oekaki kullan","Edit in oekaki":"oekaki'de d\u00fczenle","Enter some text":"Bir yaz\u0131 girin","Enter font or leave empty":"Font girin ya da bo\u015f b\u0131rak\u0131n","Forced anonymity":"Zorunlu anon","enabled":"etkin","disabled":"etkin de\u011fil","Sun":"Paz","Mon":"Pzt","Tue":"Sa","Wed":"\u00c7r\u015f","Thu":"Per","Fri":"Cu","Sat":"Cts","Catalog":"Katalog","Submit":"G\u00f6nder","Quick reply":"\u00c7abuk cevap","Posting mode: Replying to >>{0}<\/small>":"G\u00f6nderme modu: >>{0}<\/small> cevap veriyorsunuz","Return":"Geri d\u00f6n","Expand all images":"B\u00fct\u00fcn resimleri geni\u015flet","Hello!":"Merhaba!","{0} users":"{0} kullan\u0131c\u0131","(hide threads from this board)":"(bu tahtadan konular\u0131 gizle)","(show threads from this board)":"(bu tahtadan konular\u0131 g\u00f6ster)","No more threads to display":"G\u00f6sterecek ba\u015fka konu kalmad\u0131","Loading...":"Y\u00fckleniyor...","Save as original filename":"Dosya ad\u0131yla kaydet","Reported post(s).":"\u015eikayet edilen konu\/konular.","An unknown error occured!":"FATAL \u00d6R\u00d6R","Something went wrong... An unknown error occured!":"Bilemedi\u011fimiz \u00e7ok fena \u015feyler oldu!","Working...":"Yap\u0131yoruz...","Posting... (#%)":"G\u00f6nderiliyor... (#%)","Posted...":"G\u00f6nderildi...","An unknown error occured when posting!":"Hata... \u00e7ok... fena... ","Posting...":"G\u00f6nderiliyor...","Upload URL":"Y\u00fckleme linki","Spoiler Image":"Spoiler","Comment":"Yorum","Quick Reply":"\u00c7abuk Cevaplama","Stop watching this thread":"Bu konuyu takip etmeyi b\u0131rak","Watch this thread":"Bu konuyu takip et","Unpin this board":"Bu tahtan\u0131n i\u011fnesini kald\u0131r","Pin this board":"Bu tahtay\u0131 i\u011fnele","Stop watching this board":"Bu tahtay\u0131 izlemeyi b\u0131rak","Watch this board":"Bu tahtay\u0131 izle","Click on any image on this site to load it into oekaki applet":"Oekaki'ye atmak i\u00e7in website \u00fczerindeki herhangi bir resme t\u0131klay\u0131n","Sunday":"Pazar","Monday":"Pazartesi","Tuesday":"Sal","Wednesday":"\u00c7ar\u015famba","Thursday":"Per\u015fembe","Friday":"Cuma","Saturday":"Cumartesi","January":"Ocak","February":"\u015eubat","March":"Mart","April":"Nisan","May":"May\u0131s","June":"Haziran","July":"Temmuz","August":"A\u011fustos","September":"Eyl\u00fcl","October":"kim","November":"Kas\u0131m","December":"Aral\u0131k","Jan":"Oca","Feb":"\u015eub","Mar":"Mar","Apr":"Nis","Jun":"Haz","Jul":"Tem","Aug":"A\u011fu","Sep":"Eyl","Oct":"Eki","Nov":"Kas","Dec":"Ara","AM":"\u00d6\u00d6","PM":"\u00d6S","am":"\u00f6\u00f6","pm":"\u00f6s","Your browser does not support HTML5 video.":"Taray\u0131c\u0131n\u0131z HTML5 videolar\u0131 desteklemiyor","[play once]":"[bir kere oynat]","[loop]":"[devaml\u0131]","WebM Settings":"WebM Ayarlar\u0131","Expand videos inline":"Videolar\u0131 i\u00e7erde geni\u015flet","Play videos on hover":"Mouse \u00fcst\u00fcne gelince videolar oynas\u0131n","Default volume":"Ses","Tree view":"Gezgin g\u00f6r\u00fcn\u00fcm\u00fc"}; \ No newline at end of file diff --git a/inc/locale/tr_TR/LC_MESSAGES/javascript.po b/inc/locale/tr_TR/LC_MESSAGES/javascript.po index ce5c756d..78fb8443 100644 --- a/inc/locale/tr_TR/LC_MESSAGES/javascript.po +++ b/inc/locale/tr_TR/LC_MESSAGES/javascript.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-04-20 00:49+0200\n" -"PO-Revision-Date: 2014-04-19 22:53+0000\n" -"Last-Translator: czaks \n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-22 15:55+0000\n" +"Last-Translator: Tunai \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -567,4 +567,4 @@ msgstr "Ses" #: ../../../../js/treeview.js:18 msgid "Tree view" -msgstr "" +msgstr "Gezgin görünümü" diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.mo index 9a62cdad360a2db8a73b7d43c52eced0d1747984..8d36e9f97d56159d24d964d213273e5e3672b928 100644 GIT binary patch delta 7218 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 D!wbB{ diff --git a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po index 844442c3..d837ea9a 100644 --- a/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po +++ b/inc/locale/tr_TR/LC_MESSAGES/tinyboard.po @@ -9,8 +9,8 @@ msgstr "" "Project-Id-Version: vichan\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2014-04-21 21:04+0200\n" -"PO-Revision-Date: 2014-04-21 19:05+0000\n" -"Last-Translator: czaks \n" +"PO-Revision-Date: 2014-04-22 15:56+0000\n" +"Last-Translator: Tunai \n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -2573,12 +2573,12 @@ msgstr "Bu kullanıcı için daha fazla log görüntüle" #. line 84 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 msgid "Flag" -msgstr "" +msgstr "Bayrak" #. line 87 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 msgid "None" -msgstr "" +msgstr "Hiç" #. When moving a thread to another board and choosing to keep a "shadow #. thread", an automated post (with @@ -2588,10 +2588,10 @@ msgstr "" #: ../../../../inc/config.php:1211 #, php-format msgid "Moved to %s." -msgstr "" +msgstr "%s tahtasına yollandı." #: ../../../../templates/themes/recent/theme.php:50 msgid "" "Can't build the RecentPosts theme, because there are no boards to be " "fetched." -msgstr "" +msgstr "Son Gönderiler temasını yükleyemiyoruz, çünkü gösterebileceğimiz hiç tahta yok." From 6271cf57d60d69e2da0e48c035a358becdb75f8f Mon Sep 17 00:00:00 2001 From: neniu Date: Wed, 23 Apr 2014 23:23:57 +0200 Subject: [PATCH 12/12] Esperanto l10n --- inc/locale/eo/LC_MESSAGES/javascript.js | 1 + inc/locale/eo/LC_MESSAGES/javascript.po | 570 +++++ inc/locale/eo/LC_MESSAGES/tinyboard.mo | Bin 0 -> 11046 bytes inc/locale/eo/LC_MESSAGES/tinyboard.po | 2608 +++++++++++++++++++++++ 4 files changed, 3179 insertions(+) create mode 100644 inc/locale/eo/LC_MESSAGES/javascript.js create mode 100644 inc/locale/eo/LC_MESSAGES/javascript.po create mode 100644 inc/locale/eo/LC_MESSAGES/tinyboard.mo create mode 100644 inc/locale/eo/LC_MESSAGES/tinyboard.po diff --git a/inc/locale/eo/LC_MESSAGES/javascript.js b/inc/locale/eo/LC_MESSAGES/javascript.js new file mode 100644 index 00000000..5307e365 --- /dev/null +++ b/inc/locale/eo/LC_MESSAGES/javascript.js @@ -0,0 +1 @@ +l10n = {"Style: ":"Stilo:","File":"Dosiero","hide":"ka\u015di","show":"malka\u015di","Show locked threads":"Vidigi fermitajn fadenojn","Hide locked threads":"Ka\u015di fermitajn fadenojn","URL":"URL","Select":"Elekti","Embed":"Enmeti","Oekaki":"Oekaki","hidden":"ka\u015dita","Show images":"Vidigi bildojn","Hide images":"Ka\u015di bildojn","Password":"Pasvorto","Delete file only":"Forvi\u015di nur la dosieron","Delete":"Forvi\u015di","Reason":"Kialo","Report":"Raporti","Click reply to view.":"Klaku respondi por vidi.","Click to expand":"Klaku por grandigi","Hide expanded replies":"Ka\u015di grandigitajn respondojn","Save":"Konservi","Edit in oekaki":"Redakti en oekaki","Sun":"Dim","Mon":"Lun","Tue":"Mar","Wed":"Mer","Thu":"\u0134a\u016d","Fri":"Ven","Sat":"Sab","Quick reply":"Rapida respondo","Expand all images":"Grandigi \u0109iujn bildojn","Hello!":"Saluton!","Posting... (#%)":"Afi\u015dando... (#%)","Posted...":"Afi\u015dita...","Posting...":"Afi\u015dando...","Upload URL":"Al\u015duti URL","Spoiler Image":"Ka\u015di Bildon","Comment":"Komento","Quick Reply":"Rapida Respondo","Stop watching this thread":"\u0108esi de gvati \u0109i tiun fadenon","Watch this thread":"Gvati \u0109i tiun fadenon","Sunday":"Diman\u0109o","Monday":"Lundo","Tuesday":"Mardo","Wednesday":"Merkredo","Thursday":"\u0134a\u016ddo","Friday":"Vendredo","Saturday":"Sabato","Default volume":"Defa\u016dlta la\u016dteco","Tree view":"Arba vido"}; \ No newline at end of file diff --git a/inc/locale/eo/LC_MESSAGES/javascript.po b/inc/locale/eo/LC_MESSAGES/javascript.po new file mode 100644 index 00000000..5f9c91eb --- /dev/null +++ b/inc/locale/eo/LC_MESSAGES/javascript.po @@ -0,0 +1,570 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# neniu , 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-23 16:08+0000\n" +"Last-Translator: neniu \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 +msgid "Style: " +msgstr "Stilo:" + +#: ../../../../js/hide-images.js:50 ../../../../js/upload-selection.js:51 +#: ../../../../js/quick-post-controls.js:30 ../../../../js/hide-images.js:51 +#: ../../../../js/quick-post-controls.js:32 +#: ../../../../js/upload-selection.js:61 +msgid "File" +msgstr "Dosiero" + +#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 +msgid "hide" +msgstr "kaŝi" + +#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 +msgid "show" +msgstr "malkaŝi" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Show locked threads" +msgstr "Vidigi fermitajn fadenojn" + +#: ../../../../js/toggle-locked-threads.js:39 +#: ../../../../js/toggle-locked-threads.js:54 +#: ../../../../js/toggle-locked-threads.js:40 +#: ../../../../js/toggle-locked-threads.js:55 +#: ../../../../js/toggle-locked-threads.js:41 +#: ../../../../js/toggle-locked-threads.js:56 +msgid "Hide locked threads" +msgstr "Kaŝi fermitajn fadenojn" + +#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 +msgid "URL" +msgstr "URL" + +#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 +msgid "Select" +msgstr "Elekti" + +#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 +msgid "Remote" +msgstr "" + +#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 +msgid "Embed" +msgstr "Enmeti" + +#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 +msgid "Oekaki" +msgstr "Oekaki" + +#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 +msgid "hidden" +msgstr "kaŝita" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Show images" +msgstr "Vidigi bildojn" + +#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 +#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 +msgid "Hide images" +msgstr "Kaŝi bildojn" + +#: ../../../../js/quick-post-controls.js:27 +#: ../../../../js/quick-post-controls.js:29 +msgid "Password" +msgstr "Pasvorto" + +#: ../../../../js/quick-post-controls.js:29 +#: ../../../../js/quick-post-controls.js:31 +msgid "Delete file only" +msgstr "Forviŝi nur la dosieron" + +#: ../../../../js/quick-post-controls.js:31 +#: ../../../../js/quick-post-controls.js:33 +msgid "Delete" +msgstr "Forviŝi" + +#: ../../../../js/quick-post-controls.js:35 +#: ../../../../js/quick-post-controls.js:37 +msgid "Reason" +msgstr "Kialo" + +#: ../../../../js/quick-post-controls.js:37 +#: ../../../../js/quick-post-controls.js:39 +msgid "Report" +msgstr "Raporti" + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click reply to view." +msgstr "Klaku respondi por vidi." + +#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 +msgid "Click to expand" +msgstr "Klaku por grandigi" + +#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 +msgid "Hide expanded replies" +msgstr "Kaŝi grandigitajn respondojn" + +#: ../../../../js/oekaki.js:10 +msgid "Brush size" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Set text" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Clear" +msgstr "" + +#: ../../../../js/oekaki.js:10 +msgid "Save" +msgstr "Konservi" + +#: ../../../../js/oekaki.js:10 +msgid "Load" +msgstr "" + +#: ../../../../js/oekaki.js:11 +msgid "Toggle eraser" +msgstr "" + +#: ../../../../js/oekaki.js:11 +msgid "Get color" +msgstr "" + +#: ../../../../js/oekaki.js:11 +msgid "Fill" +msgstr "" + +#: ../../../../js/oekaki.js:12 +msgid "Use oekaki instead of file?" +msgstr "" + +#: ../../../../js/oekaki.js:21 +msgid "Edit in oekaki" +msgstr "Redakti en oekaki" + +#: ../../../../js/oekaki.js:152 +msgid "Enter some text" +msgstr "" + +#: ../../../../js/oekaki.js:153 +msgid "Enter font or leave empty" +msgstr "" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60 +#: ../../../../js/forced-anon.js:66 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +#: ../../../../js/forced-anon.js:71 +msgid "Forced anonymity" +msgstr "" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 +msgid "enabled" +msgstr "" + +#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69 +#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70 +#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 +msgid "disabled" +msgstr "" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Sun" +msgstr "Dim" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Mon" +msgstr "Lun" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Tue" +msgstr "Mar" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Wed" +msgstr "Mer" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Thu" +msgstr "Ĵaŭ" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Fri" +msgstr "Ven" + +#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 +#: ../../../../js/local-time.js:30 +msgid "Sat" +msgstr "Sab" + +#: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 +#: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 +#: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 +msgid "Catalog" +msgstr "" + +#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 +#: ../../../../js/quick-reply-old.js:23 +msgid "Submit" +msgstr "" + +#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 +#: ../../../../js/quick-reply-old.js:33 +msgid "Quick reply" +msgstr "Rapida respondo" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +#, python-brace-format +msgid "Posting mode: Replying to >>{0}" +msgstr "" + +#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 +#: ../../../../js/quick-reply-old.js:35 +msgid "Return" +msgstr "" + +#: ../../../../js/expand-all-images.js:20 +#: ../../../../js/expand-all-images.js:21 +#: ../../../../js/expand-all-images.js:22 +msgid "Expand all images" +msgstr "Grandigi ĉiujn bildojn" + +#: ../../../../templates/main.js:6 +msgid "Hello!" +msgstr "Saluton!" + +#: ../../../../templates/main.js:18 +#, python-brace-format +msgid "{0} users" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:28 +#: ../../../../templates/themes/ukko/ukko.js:39 +#: ../../../../templates/themes/ukko/ukko.js:29 +#: ../../../../templates/themes/ukko/ukko.js:40 +msgid "(hide threads from this board)" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:32 +#: ../../../../templates/themes/ukko/ukko.js:44 +#: ../../../../templates/themes/ukko/ukko.js:33 +#: ../../../../templates/themes/ukko/ukko.js:45 +msgid "(show threads from this board)" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:57 +#: ../../../../templates/themes/ukko/ukko.js:58 +msgid "No more threads to display" +msgstr "" + +#: ../../../../templates/themes/ukko/ukko.js:79 +#: ../../../../templates/themes/ukko/ukko.js:80 +msgid "Loading..." +msgstr "" + +#: ../../../../js/download-original.js:32 +#: ../../../../js/download-original.js:33 +msgid "Save as original filename" +msgstr "" + +#: ../../../../js/ajax-post-controls.js:43 +msgid "Reported post(s)." +msgstr "" + +#: ../../../../js/ajax-post-controls.js:53 +msgid "An unknown error occured!" +msgstr "" + +#: ../../../../js/ajax-post-controls.js:60 +msgid "Something went wrong... An unknown error occured!" +msgstr "" + +#: ../../../../js/ajax-post-controls.js:68 +msgid "Working..." +msgstr "" + +#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 +msgid "Posting... (#%)" +msgstr "Afiŝando... (#%)" + +#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 +msgid "Posted..." +msgstr "Afiŝita..." + +#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 +msgid "An unknown error occured when posting!" +msgstr "" + +#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 +msgid "Posting..." +msgstr "Afiŝando..." + +#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 +#: ../../../../js/quick-reply.js:225 +msgid "Upload URL" +msgstr "Alŝuti URL" + +#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 +#: ../../../../js/quick-reply.js:268 +msgid "Spoiler Image" +msgstr "Kaŝi Bildon" + +#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 +#: ../../../../js/quick-reply.js:279 +msgid "Comment" +msgstr "Komento" + +#: ../../../../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 "Rapida Respondo" + +#: ../../../../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 "Ĉesi de gvati ĉi tiun fadenon" + +#: ../../../../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 "Gvati ĉi tiun fadenon" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Unpin this board" +msgstr "" + +#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 +#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 +#: ../../../../js/watch.js:300 ../../../../js/watch.js:308 +#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 +#: ../../../../js/watch.js:350 +msgid "Pin this board" +msgstr "" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Stop watching this board" +msgstr "" + +#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 +#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 +#: ../../../../js/watch.js:306 ../../../../js/watch.js:307 +#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 +#: ../../../../js/watch.js:349 +msgid "Watch this board" +msgstr "" + +#: ../../../../js/wpaint.js:113 +msgid "Click on any image on this site to load it into oekaki applet" +msgstr "" + +#: ../../../../js/local-time.js:29 +msgid "Sunday" +msgstr "Dimanĉo" + +#: ../../../../js/local-time.js:29 +msgid "Monday" +msgstr "Lundo" + +#: ../../../../js/local-time.js:29 +msgid "Tuesday" +msgstr "Mardo" + +#: ../../../../js/local-time.js:29 +msgid "Wednesday" +msgstr "Merkredo" + +#: ../../../../js/local-time.js:29 +msgid "Thursday" +msgstr "Ĵaŭdo" + +#: ../../../../js/local-time.js:29 +msgid "Friday" +msgstr "Vendredo" + +#: ../../../../js/local-time.js:29 +msgid "Saturday" +msgstr "Sabato" + +#: ../../../../js/local-time.js:31 +msgid "January" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "February" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "March" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "April" +msgstr "" + +#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 +msgid "May" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "June" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "July" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "August" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "September" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "October" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "November" +msgstr "" + +#: ../../../../js/local-time.js:31 +msgid "December" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Jan" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Feb" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Mar" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Apr" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Jun" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Jul" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Aug" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Sep" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Oct" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Nov" +msgstr "" + +#: ../../../../js/local-time.js:32 +msgid "Dec" +msgstr "" + +#: ../../../../js/local-time.js:33 +msgid "AM" +msgstr "" + +#: ../../../../js/local-time.js:34 +msgid "PM" +msgstr "" + +#: ../../../../js/local-time.js:35 +msgid "am" +msgstr "" + +#: ../../../../js/local-time.js:36 +msgid "pm" +msgstr "" + +#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 +msgid "Your browser does not support HTML5 video." +msgstr "" + +#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 +msgid "[play once]" +msgstr "" + +#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 +msgid "[loop]" +msgstr "" + +#: ../../../../js/webm-settings.js:42 +msgid "WebM Settings" +msgstr "" + +#: ../../../../js/webm-settings.js:44 +msgid "Expand videos inline" +msgstr "" + +#: ../../../../js/webm-settings.js:45 +msgid "Play videos on hover" +msgstr "" + +#: ../../../../js/webm-settings.js:46 +msgid "Default volume" +msgstr "Defaŭlta laŭteco" + +#: ../../../../js/treeview.js:18 +msgid "Tree view" +msgstr "Arba vido" diff --git a/inc/locale/eo/LC_MESSAGES/tinyboard.mo b/inc/locale/eo/LC_MESSAGES/tinyboard.mo new file mode 100644 index 0000000000000000000000000000000000000000..40f7c1898a7aae69cfe64288585503bf6e181eb0 GIT binary patch literal 11046 zcmbuE3veCPdB+dWfI>@wgg_z5v5PQZB-w@#kT4))*$6CKwPX|LQL^{mm9+P}LINq_(Lzc9Cn=;PbtxSPOy4xk*vUXL>2y+F%3 z6srDRA$>j6cs~V?hIa?v57nQC0v`?h6R3Va0oDH3LjE^G`fo$}8TfAAKO55j0}myA z=<%LMK(%`m)VNN7s`oUA%FWq~hHB?psD6GFNEk{qz1|Nso-ae`=POY9{d&lMCh+_47s!7Rs@yAqM_}}7=NNbad>cFqZie!oc_{z5 zGo&Ae()*Lp!sj7><`6PvkMDq*pG%&-?{9jqmTE^!fsPFMJ8A|NSTVabE`Y{T3)a?|`bO64G_3 zb_$3|n>(QV`T?kVzX*HbpF>n=z8CUef@hNMp)r~?=R%d+6qpCz4K=FZk||JzV@^N {}9SP{uRoO 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, 2014 +msgid "" +msgstr "" +"Project-Id-Version: vichan\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2014-04-21 21:04+0200\n" +"PO-Revision-Date: 2014-04-23 16:16+0000\n" +"Last-Translator: neniu \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" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: ../../../../inc/functions.php:583 ../../../../inc/functions.php:600 +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 +#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660 +#: ../../../../inc/functions.php:653 ../../../../inc/functions.php:670 +msgid "second" +msgid_plural "seconds" +msgstr[0] "sekundo" +msgstr[1] "sekundoj" + +#: ../../../../inc/functions.php:585 ../../../../inc/functions.php:602 +#: ../../../../inc/functions.php:593 ../../../../inc/functions.php:610 +#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 +#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662 +#: ../../../../inc/functions.php:655 ../../../../inc/functions.php:672 +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutoj" + +#: ../../../../inc/functions.php:587 ../../../../inc/functions.php:604 +#: ../../../../inc/functions.php:595 ../../../../inc/functions.php:612 +#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 +#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 +#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 +#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664 +#: ../../../../inc/functions.php:657 ../../../../inc/functions.php:674 +msgid "hour" +msgid_plural "hours" +msgstr[0] "horo" +msgstr[1] "horoj" + +#: ../../../../inc/functions.php:589 ../../../../inc/functions.php:606 +#: ../../../../inc/functions.php:597 ../../../../inc/functions.php:614 +#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 +#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 +#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 +#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666 +#: ../../../../inc/functions.php:659 ../../../../inc/functions.php:676 +msgid "day" +msgid_plural "days" +msgstr[0] "tago" +msgstr[1] "tagoj" + +#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 +#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 +#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 +#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668 +#: ../../../../inc/functions.php:661 ../../../../inc/functions.php:678 +msgid "week" +msgid_plural "weeks" +msgstr[0] "semajno" +msgstr[1] "semajnoj" + +#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 +#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 +#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 +#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 +#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 +#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671 +#: ../../../../inc/functions.php:664 ../../../../inc/functions.php:681 +msgid "year" +msgid_plural "years" +msgstr[0] "jaro" +msgstr[1] "jaroj" + +#: ../../../../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 +msgid "Banned!" +msgstr "Malpermesita!" + +#. There is no previous page. +#: ../../../../inc/functions.php:1125 ../../../../inc/functions.php:1139 +#: ../../../../inc/functions.php:1165 ../../../../inc/functions.php:1179 +#: ../../../../inc/functions.php:1168 ../../../../inc/functions.php:1182 +#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 +#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 +#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1230 +#: ../../../../inc/functions.php:1244 +msgid "Previous" +msgstr "Antaŭa" + +#. There is no next page. +#: ../../../../inc/functions.php:1144 ../../../../inc/functions.php:1153 +#: ../../../../inc/functions.php:1184 ../../../../inc/functions.php:1193 +#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 +#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 +#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 +#: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239 +#: ../../../../inc/functions.php:1248 ../../../../inc/functions.php:1249 +#: ../../../../inc/functions.php:1258 +msgid "Next" +msgstr "Sekvanta" + +#: ../../../../inc/display.php:93 ../../../../inc/display.php:105 +#: ../../../../inc/display.php:108 ../../../../inc/display.php:112 +msgid "Error" +msgstr "Eraro" + +#: ../../../../inc/display.php:94 ../../../../inc/display.php:106 +#: ../../../../inc/display.php:109 ../../../../inc/display.php:113 +msgid "An error has occured." +msgstr "Eraro okazis." + +#: ../../../../inc/display.php:110 ../../../../inc/mod/pages.php:62 +#: ../../../../inc/mod/pages.php:60 ../../../../inc/display.php:122 +#: ../../../../inc/display.php:125 ../../../../inc/display.php:129 +msgid "Login" +msgstr "Ensaluti" + +#: ../../../../inc/display.php:229 ../../../../inc/display.php:241 +#: ../../../../inc/display.php:244 ../../../../inc/display.php:248 +#, php-format +msgid "Post too long. Click here to view the full text." +msgstr "Afiŝo tro longas. Alklaku ĉi tie por vidigi la tutan tekston." + +#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 +#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 +#: ../../../../inc/display.php:388 ../../../../inc/display.php:498 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +msgid "Ban" +msgstr "Malpermesi" + +#: ../../../../inc/display.php:372 ../../../../inc/display.php:477 +#: ../../../../inc/display.php:389 ../../../../inc/display.php:499 +#: ../../../../inc/display.php:392 ../../../../inc/display.php:502 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +msgid "Ban & Delete" +msgstr "Malpermesi & Forviŝi" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +msgid "Delete file" +msgstr "Forviŝi dosieron" + +#: ../../../../inc/display.php:376 ../../../../inc/display.php:481 +#: ../../../../inc/display.php:393 ../../../../inc/display.php:503 +#: ../../../../inc/display.php:396 ../../../../inc/display.php:506 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +msgid "Are you sure you want to delete this file?" +msgstr "Ĉu vi certas ke vi volas forviŝi ĉi tiun dosieron?" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Spoiler File" +msgstr "Cenzuri Dosieron" + +#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 +#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 +#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:514 +msgid "Are you sure you want to spoiler this file?" +msgstr "Ĉu vi certas ke vi volas cenzuri ĉi tiun dosieron?" + +#: ../../../../inc/display.php:384 ../../../../inc/display.php:401 +#: ../../../../inc/display.php:404 ../../../../inc/display.php:408 +msgid "Move reply to another board" +msgstr "Transloki respondon al alia tabulo" + +#: ../../../../inc/display.php:388 ../../../../inc/display.php:512 +#: ../../../../inc/mod/pages.php:1425 ../../../../inc/mod/pages.php:1494 +#: ../../../../inc/display.php:405 ../../../../inc/display.php:534 +#: ../../../../inc/display.php:408 ../../../../inc/display.php:537 +#: ../../../../inc/display.php:412 ../../../../inc/display.php:541 +msgid "Edit post" +msgstr "Redakti afiŝon" + +#. line 5 +#: ../../../../inc/display.php:461 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:33 +#: ../../../../inc/display.php:483 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:36 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +msgid "Delete" +msgstr "Forviŝi" + +#: ../../../../inc/display.php:461 ../../../../inc/display.php:483 +#: ../../../../inc/display.php:486 ../../../../inc/display.php:490 +msgid "Are you sure you want to delete this?" +msgstr "Ĉu vi certas ke vi volas forviŝi ĉi tion?" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +msgid "Delete all posts by IP" +msgstr "Forviŝi ĉiun afiŝon per IP" + +#: ../../../../inc/display.php:465 ../../../../inc/display.php:487 +#: ../../../../inc/display.php:490 ../../../../inc/display.php:494 +msgid "Are you sure you want to delete all posts by this IP address?" +msgstr "Ĉu vi certas ke vi volas forviŝi ĉiun afiŝon de ĉi tiu IP adreso?" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +msgid "Delete all posts by IP across all boards" +msgstr "Forviŝi ĉiujn afiŝojn per IP trans ĉiuj tabuloj" + +#: ../../../../inc/display.php:469 ../../../../inc/display.php:491 +#: ../../../../inc/display.php:494 ../../../../inc/display.php:498 +msgid "" +"Are you sure you want to delete all posts by this IP address, across all " +"boards?" +msgstr "Ĉu vi certas ke vi volas forviŝi ĉiujn afiŝojn de ĉi tiu IP adreso, trans ĉiuj tabuloj?" + +#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 +#: ../../../../inc/display.php:515 ../../../../inc/display.php:519 +msgid "Make thread not sticky" +msgstr "Malglui fadenon" + +#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 +#: ../../../../inc/display.php:517 ../../../../inc/display.php:521 +msgid "Make thread sticky" +msgstr "Glui fadenon" + +#: ../../../../inc/display.php:496 ../../../../inc/display.php:518 +#: ../../../../inc/display.php:521 ../../../../inc/display.php:525 +msgid "Allow thread to be bumped" +msgstr "Permesi altigon de la fadeno" + +#: ../../../../inc/display.php:498 ../../../../inc/display.php:520 +#: ../../../../inc/display.php:523 ../../../../inc/display.php:527 +msgid "Prevent thread from being bumped" +msgstr "Malpermesi altigon de la fadeno" + +#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 +#: ../../../../inc/display.php:528 ../../../../inc/display.php:532 +msgid "Unlock thread" +msgstr "Malfermi fadenon" + +#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 +#: ../../../../inc/display.php:530 ../../../../inc/display.php:534 +msgid "Lock thread" +msgstr "Fermi fadenon" + +#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 +#: ../../../../inc/display.php:533 ../../../../inc/display.php:537 +msgid "Move thread to another board" +msgstr "Transloki fadenon al alia tabulo" + +#. How long before Tinyboard forgets about a mute? +#. 2 weeks +#. If you want to alter the algorithm a bit. Default value is 2. +#. (n^x where x is the number of previous mutes) +#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 +#: ../../../../inc/config.php:474 ../../../../inc/config.php:475 +msgid "You have been muted for unoriginal content." +msgstr "Vi mutiĝis pro maloriginala enhavo." + +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#. The names on the post buttons. (On most imageboards, these are both just +#. "Post"). +#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 +#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 +#: ../../../../inc/config.php:776 ../../../../inc/config.php:792 +msgid "New Topic" +msgstr "Nova Temo" + +#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 +#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 +#: ../../../../inc/config.php:777 ../../../../inc/config.php:793 +msgid "New Reply" +msgstr "Nova Respondo" + +#. Additional lines added to the footer of all pages. +#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 +#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 +#: ../../../../inc/config.php:788 ../../../../inc/config.php:804 +msgid "" +"All trademarks, copyrights, comments, and images on this page are owned by " +"and are the responsibility of their respective parties." +msgstr "Ĉiuj registritaj markoj, kopirajtoj, komentoj, kaj bildoj en ĉi tiu paĝo alpartenas al kaj estas la respondeco de siaj respektivaj partioj. " + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:866 +msgid "Lurk some more before posting." +msgstr "Gvatu iom plu antaŭ afiŝando." + +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#. * ==================== +#. * Error messages +#. * ==================== +#. Error messages +#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:983 +msgid "You look like a bot." +msgstr "Vi ŝajnas kiel bot. " + +#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:984 +msgid "Your browser sent an invalid or no HTTP referer." +msgstr "Via retumilo sendis malvalidan aŭ nenian HTTP referer." + +#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:985 +#, php-format +msgid "The %s field was too long." +msgstr "La %s tekstejo tro longis." + +#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:986 +msgid "The body was too long." +msgstr "La mesaĝo tro longis." + +#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:987 +msgid "The body was too short or empty." +msgstr "La mesaĝo tro mallongis aŭ estis malplena." + +#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:988 +msgid "You must upload an image." +msgstr "Vi devas alŝuti bildon." + +#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:989 +msgid "The server failed to handle your upload." +msgstr "La servilo malsukcesis prilabori vian alŝuton." + +#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:990 +msgid "Unsupported image format." +msgstr "Malsubtenita bildotipo." + +#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:991 +msgid "Invalid board!" +msgstr "Malvalida tabulo!" + +#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:992 +msgid "Thread specified does not exist." +msgstr "Specifita fadeno ne ekzistas." + +#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:993 +msgid "Thread locked. You may not reply at this time." +msgstr "Fadeno fermita. Vi ne povas respondi nuntempe." + +#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:994 +msgid "Thread has reached its maximum reply limit." +msgstr "Fadeno atingis sian maksimuman limon de respondoj." + +#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:995 +msgid "Thread has reached its maximum image limit." +msgstr "Fadeno atingis sian maksimuman limon de bildoj." + +#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:996 +msgid "You didn't make a post." +msgstr "Vi ne faris afiŝon." + +#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:997 +msgid "Flood detected; Post discarded." +msgstr "Inundon perceptita; Afiŝon forigita." + +#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:998 +msgid "Your request looks automated; Post discarded." +msgstr "Via peto ŝajnas aŭtomata; Afiŝon forigita." + +#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:999 +msgid "Unoriginal content!" +msgstr "Maloriginala enhavo!" + +#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:1000 +#, php-format +msgid "Unoriginal content! You have been muted for %d seconds." +msgstr "Maloriginala enhavo! Vi mutiĝos dum %d sekundoj." + +#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:1001 +#, php-format +msgid "You are muted! Expires in %d seconds." +msgstr "Vi mutiĝis! Finiĝos post %d sekundoj." + +#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:1002 +#, php-format +msgid "Your IP address is listed in %s." +msgstr "Via IP adreso listiĝas en %s." + +#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:1003 +msgid "Too many links; flood detected." +msgstr "Tro da ligiloj; inundon perceptita." + +#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:1004 +msgid "Too many cites; post discarded." +msgstr "Tro da citaĵoj; afiŝon forigita." + +#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:1005 +msgid "Too many cross-board links; post discarded." +msgstr "Tro da trans-tabulaj ligoj; afiŝo forigita." + +#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:1006 +msgid "You didn't select anything to delete." +msgstr "Vi ne elektis ion por forviŝi." + +#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:1007 +msgid "You didn't select anything to report." +msgstr "Vi ne elektis ion por raporti." + +#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:1008 +msgid "You can't report that many posts at once." +msgstr "Vi ne povas raporti tiom da afiŝoj samtempe." + +#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:1009 +msgid "Wrong password…" +msgstr "Malĝusta pasvorto..." + +#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:1010 +msgid "Invalid image." +msgstr "Malvalida bildo." + +#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:1011 +msgid "Unknown file extension." +msgstr "Nekonata dosiertipo." + +#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:1012 +msgid "Maximum file size: %maxsz% bytes
Your file's size: %filesz% bytes" +msgstr "Maksimuma dosiera grandeco: %maxsz% bitokoj
Via dosiera grandeco: %filesz% bitokoj" + +#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 +#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:1013 +msgid "The file was too big." +msgstr "La dosiero tro grandis." + +#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 +#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1014 +#, php-format +msgid "That file already exists!" +msgstr "Tiu dosiero jam ekzistas!" + +#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1015 +#, php-format +msgid "That file already exists in this thread!" +msgstr "Tiu dosiero jam ekzistas en ĉi tiu fadeno!" + +#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 +#: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016 +#, php-format +msgid "You'll have to wait another %s before deleting that." +msgstr "" + +#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 +#: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017 +msgid "MIME type detection XSS exploit (IE) detected; post discarded." +msgstr "" + +#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018 +msgid "Couldn't make sense of the URL of the video you tried to embed." +msgstr "" + +#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019 +msgid "You seem to have mistyped the verification." +msgstr "" + +#. Moderator errors +#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022 +#, php-format +msgid "" +"You are only allowed to unban %s users at a time. You tried to unban %u " +"users." +msgstr "" + +#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023 +msgid "Invalid username and/or password." +msgstr "Malvalida salutnomo kaj/aŭ pasvorto." + +#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024 +msgid "You are not a mod…" +msgstr "Vi ne estas estrarano..." + +#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025 +msgid "" +"Invalid username and/or password. Your user may have been deleted or " +"changed." +msgstr "" + +#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026 +msgid "Invalid/malformed cookies." +msgstr "" + +#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027 +msgid "Your browser didn't submit an input when it should have." +msgstr "" + +#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028 +#, php-format +msgid "The %s field is required." +msgstr "" + +#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029 +#, php-format +msgid "The %s field was invalid." +msgstr "" + +#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 +#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030 +#, php-format +msgid "There is already a %s board." +msgstr "" + +#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 +#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031 +msgid "You don't have permission to do that." +msgstr "Vi ne havas permeson por fari tion." + +#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032 +msgid "That post doesn't exist…" +msgstr "Tiu afiŝo ne ekzistas..." + +#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 +#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 +#: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033 +msgid "Page not found." +msgstr "Paĝon ne trovita." + +#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 +#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 +#: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034 +#, php-format +msgid "That mod already exists!" +msgstr "" + +#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 +#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035 +msgid "That theme doesn't exist!" +msgstr "Tiu temo ne ekzistas!" + +#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 +#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 +#: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036 +msgid "Invalid security token! Please go back and try again." +msgstr "" + +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#. Default public ban message. In public ban messages, %length% is replaced +#. with "for x days" or +#. "permanently" (with %LENGTH% being the uppercase equivalent). +#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 +#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 +#: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203 +msgid "USER WAS BANNED FOR THIS POST" +msgstr "UZANTO ESTIS MALPERMESITA PRO ĈI TIU AFIŜO" + +#: ../../../../inc/mod/pages.php:66 ../../../../inc/mod/pages.php:64 +msgid "Confirm action" +msgstr "" + +#: ../../../../inc/mod/pages.php:110 ../../../../inc/mod/pages.php:108 +msgid "Could not find current version! (Check .installed)" +msgstr "" + +#: ../../../../inc/mod/pages.php:162 +msgid "Dashboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:267 ../../../../inc/mod/pages.php:265 +msgid "There are no boards to search!" +msgstr "" + +#. $results now contains the search results +#: ../../../../inc/mod/pages.php:335 ../../../../inc/mod/pages.php:334 +msgid "Search results" +msgstr "Serĉrezultoj" + +#: ../../../../inc/mod/pages.php:436 ../../../../inc/mod/pages.php:438 +msgid "Edit board" +msgstr "Redakti tabulon" + +#: ../../../../inc/mod/pages.php:486 ../../../../inc/mod/pages.php:491 +msgid "Couldn't open board after creation." +msgstr "" + +#: ../../../../inc/mod/pages.php:506 ../../../../inc/mod/pages.php:511 +msgid "New board" +msgstr "Nova tabulo" + +#. line 37 +#: ../../../../inc/mod/pages.php:553 ../../../../inc/mod/pages.php:562 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:121 +msgid "Noticeboard" +msgstr "" + +#: ../../../../inc/mod/pages.php:614 ../../../../inc/mod/pages.php:631 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:194 +msgid "News" +msgstr "Novaĵoj" + +#: ../../../../inc/mod/pages.php:654 ../../../../inc/mod/pages.php:681 +#: ../../../../inc/mod/pages.php:671 ../../../../inc/mod/pages.php:698 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:300 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:75 +msgid "Moderation log" +msgstr "" + +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 104 +#. line 20 +#. line 18 +#. line 104 +#. line 20 +#. line 18 +#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:64 +msgid "IP" +msgstr "IP" + +#. line 171 +#: ../../../../inc/mod/pages.php:848 ../../../../inc/mod/pages.php:1367 +#: ../../../../inc/mod/pages.php:862 ../../../../inc/mod/pages.php:1432 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:440 +msgid "New ban" +msgstr "Nova malpermeso" + +#: ../../../../inc/mod/pages.php:931 ../../../../inc/mod/pages.php:914 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:256 +msgid "Ban list" +msgstr "" + +#: ../../../../inc/mod/pages.php:1105 ../../../../inc/mod/pages.php:1165 +msgid "Move reply" +msgstr "" + +#: ../../../../inc/mod/pages.php:1131 ../../../../inc/mod/pages.php:1191 +msgid "Target and source board are the same." +msgstr "" + +#: ../../../../inc/mod/pages.php:1296 ../../../../inc/mod/pages.php:1357 +msgid "Impossible to move thread; there is only one board." +msgstr "" + +#. line 39 +#: ../../../../inc/mod/pages.php:1300 ../../../../inc/mod/pages.php:1361 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:114 +msgid "Move thread" +msgstr "Transloki fadenon" + +#: ../../../../inc/mod/pages.php:1698 ../../../../inc/mod/pages.php:1751 +#: ../../../../inc/mod/pages.php:1775 +msgid "Edit user" +msgstr "Redakti uzanton" + +#: ../../../../inc/mod/pages.php:1764 ../../../../inc/mod/pages.php:1855 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:274 +msgid "Manage users" +msgstr "" + +#. deleted? +#: ../../../../inc/mod/pages.php:1826 ../../../../inc/mod/pages.php:1899 +#: ../../../../inc/mod/pages.php:1945 ../../../../inc/mod/pages.php:2021 +msgid "New PM for" +msgstr "Nova PM por" + +#: ../../../../inc/mod/pages.php:1830 ../../../../inc/mod/pages.php:1952 +msgid "Private message" +msgstr "" + +#. line 68 +#: ../../../../inc/mod/pages.php:1851 ../../../../inc/mod/pages.php:1973 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:200 +msgid "PM inbox" +msgstr "" + +#: ../../../../inc/mod/pages.php:1963 ../../../../inc/mod/pages.php:1967 +#: ../../../../inc/mod/pages.php:2090 ../../../../inc/mod/pages.php:2094 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:309 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:115 +msgid "Rebuild" +msgstr "" + +#: ../../../../inc/mod/pages.php:2043 ../../../../inc/mod/pages.php:2179 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:238 +msgid "Report queue" +msgstr "" + +#: ../../../../inc/mod/pages.php:2111 ../../../../inc/mod/pages.php:2210 +#: ../../../../inc/mod/pages.php:2256 ../../../../inc/mod/pages.php:2350 +msgid "Config editor" +msgstr "" + +#: ../../../../inc/mod/pages.php:2226 ../../../../inc/mod/pages.php:2367 +msgid "Themes directory doesn't exist!" +msgstr "" + +#: ../../../../inc/mod/pages.php:2228 ../../../../inc/mod/pages.php:2369 +msgid "Cannot open themes directory; check permissions." +msgstr "" + +#: ../../../../inc/mod/pages.php:2242 ../../../../inc/mod/pages.php:2388 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:291 +msgid "Manage themes" +msgstr "" + +#: ../../../../inc/mod/pages.php:2307 ../../../../inc/mod/pages.php:2453 +#, php-format +msgid "Installed theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2318 ../../../../inc/mod/pages.php:2464 +#, php-format +msgid "Configuring theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2346 ../../../../inc/mod/pages.php:2493 +#, php-format +msgid "Rebuilt theme: %s" +msgstr "" + +#: ../../../../inc/mod/pages.php:2385 ../../../../inc/mod/pages.php:2532 +msgid "Debug: Anti-spam" +msgstr "" + +#: ../../../../inc/mod/pages.php:2409 ../../../../inc/mod/pages.php:2566 +msgid "Debug: Recent posts" +msgstr "" + +#: ../../../../inc/mod/pages.php:2433 ../../../../inc/mod/pages.php:2590 +msgid "Debug: SQL" +msgstr "" + +#. Print error +#: ../../../../inc/database.php:72 ../../../../inc/database.php:94 +msgid "Database error: " +msgstr "" + +#: ../../../../banned.php:4 +msgid "Banned?" +msgstr "" + +#: ../../../../banned.php:5 +msgid "You are not banned." +msgstr "Vi ne estas malpermesita." + +#. line 6 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:44 +msgid "Go back" +msgstr "" + +#. line 13 +#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:56 +#: ../../../../templates/cache/e1/4c/f58701138b0d44bc13ada3e46deec60da83d42ff4f39720ccd6955b641f7.php:59 +msgid "Error information" +msgstr "" + +#. line 2 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 +msgid "Delete Post" +msgstr "Forviŝi Afiŝon" + +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 84 +#. line 3 +#. line 97 +#. line 3 +#. line 97 +#. line 3 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290 +msgid "File" +msgstr "Dosiero" + +#. line 132 +#. line 14 +#. line 132 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 14 +#. line 131 +#. line 21 +#. line 14 +#. line 131 +#. line 14 +#. line 144 +#. line 14 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:31 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400 +msgid "Password" +msgstr "Pasvorto" + +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 8 +#. line 32 +#. line 23 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 8 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 9 +#. line 23 +#. line 48 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#. line 5 +#. line 8 +#. line 108 +#. line 32 +#. line 23 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:99 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:43 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:77 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:37 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:141 +msgid "Reason" +msgstr "" + +#. line 10 +#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:44 +#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:47 +msgid "Report" +msgstr "" + +#: ../../../../templates/cache/f5/e3/343716327c6183713f70a3fb57f1.php:149 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:134 +#: ../../../../templates/cache/62/8c/21348d46377c3e1b3f8c476ba376.php:65 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:137 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:153 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:68 +#: ../../../../templates/cache/e5/67/00152f100a684a6ff580e1afded8e907bdea04b4818d725ebfeb103d70d9.php:71 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:120 +#: ../../../../templates/cache/26/b3/eb11457d26f281883c21fad69f55f2c85f7cde1e4986db8692a12aaf72a5.php:138 +msgid "Return to dashboard" +msgstr "" + +#. line 39 +#. line 33 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:143 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:146 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:134 +msgid "Posting mode: Reply" +msgstr "Afiŝtipo: Respondo" + +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:147 +#: ../../../../templates/cache/aa/f6/f10fd83961bcd8c947af6ddf919d.php:200 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:150 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:203 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:138 +#: ../../../../templates/cache/b8/d9/05d4f2709538c393e80cdee33c24efe8d6fd13e68df2f5b3493356ef42e3.php:186 +msgid "Return" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:61 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:64 +msgid "(No news to show.)" +msgstr "" + +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:85 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:146 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:116 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:144 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:88 +msgid "no subject" +msgstr "" + +#. line 44 +#. line 56 +#. line 44 +#. line 56 +#. line 44 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:91 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:125 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:153 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:94 +msgid "by" +msgstr "" + +#. line 50 +#: ../../../../templates/cache/f3/ad/68dee281a64ebad9a5c774b53279.php:95 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:146 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:157 +#: ../../../../templates/cache/d2/14/70c07e4c5f648cfa0d0663a1f18973ff6f6946363b45332b2627a0fcf273.php:98 +msgid "at" +msgstr "ĉe" + +#. line 28 +#. line 26 +#: ../../../../templates/cache/4b/3e/915cc5ac5fe144c331207c656528.php:99 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:102 +#: ../../../../templates/cache/41/57/9143de5f74d921965e5ff24e0f1ce44a18317fd4937f5d8d65f56337acf3.php:88 +msgid "1 reply" +msgid_plural "%count% replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 +msgid "File:" +msgstr "Dosiero:" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:115 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:127 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:165 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:206 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:118 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:130 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:168 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:209 +#: ../../../../templates/cache/9b/6a/0d0c5add399e8dfbd5c8c097ea68815306312248498dae4682282190e561.php:128 +msgid "Spoiler Image" +msgstr "Cenzuri Bildon" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:530 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:495 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:506 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:532 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:591 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:304 +msgid "Reply" +msgstr "Respondi" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:544 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:509 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:520 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:546 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:605 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:318 +msgid "View All" +msgstr "Vidi ĉion" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:561 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:526 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:537 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:622 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:335 +msgid "Last 1 Post" +msgid_plural "Last %count% Posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:600 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:659 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:372 +msgid "1 post" +msgid_plural "%count% posts" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:116 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:606 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:665 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:378 +msgid "and" +msgstr "kaj" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:616 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:581 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:592 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:618 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:677 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:390 +msgid "1 image reply" +msgid_plural "%count% image replies" +msgstr[0] "" +msgstr[1] "" + +#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:623 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:682 +#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:395 +msgid "omitted. Click reply to view." +msgstr "" + +#. line 7 +#. line 14 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 8 +#. line 14 +#. line 7 +#. line 8 +#. line 7 +#. line 14 +#. line 8 +#. line 14 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:30 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:66 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:38 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:42 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:48 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:69 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:33 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:40 +msgid "Name" +msgstr "Nomo" + +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#. line 15 +#. line 24 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:44 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:88 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47 +msgid "Email" +msgstr "Retpoŝto" + +#. line 23 +#. line 46 +#. line 23 +#. line 46 +#. line 12 +#. line 24 +#. line 46 +#. line 23 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 12 +#. line 46 +#. line 23 +#. line 12 +#. line 24 +#. line 46 +#. line 12 +#. line 46 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:58 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:147 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:48 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:76 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:150 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:61 +msgid "Subject" +msgstr "Temo" + +#. line 27 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:68 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:71 +msgid "Update" +msgstr "Ĝisdatigi" + +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#. line 32 +#. line 57 +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:76 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:178 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:181 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:79 +msgid "Comment" +msgstr "Komento" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:97 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:100 +msgid "Currently editing raw HTML." +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:105 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:108 +msgid "Edit markup instead?" +msgstr "" + +#: ../../../../templates/cache/39/42/cbc36382096edfa72a8bc26e4514.php:115 +#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:118 +msgid "Edit raw HTML instead?" +msgstr "" + +#. line 73 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:226 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:229 +msgid "Verification" +msgstr "" + +#. line 90 +#. line 103 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302 +msgid "Or URL" +msgstr "" + +#. line 100 +#. line 113 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322 +msgid "Embed" +msgstr "Enmeti" + +#. line 112 +#. line 111 +#. line 124 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342 +msgid "Flags" +msgstr "Flagoj" + +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 116 +#. line 117 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 115 +#. line 116 +#. line 128 +#. line 129 +#. line 128 +#. line 129 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356 +msgid "Sticky" +msgstr "Glui" + +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 120 +#. line 121 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 119 +#. line 120 +#. line 132 +#. line 133 +#. line 132 +#. line 133 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370 +msgid "Lock" +msgstr "Fermi" + +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 124 +#. line 125 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 123 +#. line 124 +#. line 136 +#. line 137 +#. line 136 +#. line 137 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384 +msgid "Raw HTML" +msgstr "" + +#. line 137 +#. line 136 +#. line 141 +#. line 154 +#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415 +msgid "(For file deletion.)" +msgstr "" + +#: ../../../../search.php:5 +msgid "Post search is disabled" +msgstr "" + +#: ../../../../search.php:25 ../../../../search.php:31 +#: ../../../../search.php:29 ../../../../search.php:35 +msgid "Wait a while before searching again, please." +msgstr "" + +#: ../../../../search.php:131 ../../../../search.php:135 +msgid "Query too broad." +msgstr "" + +#: ../../../../search.php:152 ../../../../search.php:156 +#, php-format +msgid "%d result in" +msgid_plural "%d results in" +msgstr[0] "%d rezulto en" +msgstr[1] "%d rezultoj en" + +#: ../../../../search.php:163 ../../../../search.php:167 +msgid "No results." +msgstr "Neniaj rezultoj." + +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 2 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#. line 115 +#. line 16 +#. line 115 +#. line 16 +#. line 2 +#. line 13 +#: ../../../../search.php:168 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 +#: ../../../../search.php:172 +msgid "Search" +msgstr "Serĉi" + +#: ../../../../inc/mod/pages.php:939 +msgid "Ban appeal not found!" +msgstr "" + +#: ../../../../inc/mod/pages.php:989 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:265 +msgid "Ban appeals" +msgstr "" + +#: ../../../../inc/mod/pages.php:1833 +msgid "New user" +msgstr "Nova uzanto" + +#: ../../../../inc/mod/pages.php:1888 +msgid "Impossible to promote/demote user." +msgstr "" + +#: ../../../../inc/mod/pages.php:2612 +msgid "Debug: APC" +msgstr "" + +#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 +#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 +#: ../../../../inc/config.php:1037 +msgid "" +"Your code contained PHP syntax errors. Please go back and correct them. PHP " +"says: " +msgstr "" + +#. line 2 +#. line 6 +#. line 2 +#. line 6 +#. line 2 +#. line 46 +#. line 6 +#. line 2 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:25 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:38 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:139 +msgid "Boards" +msgstr "Tabuloj" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:79 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:215 +msgid "edit" +msgstr "redakti" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:97 +msgid "Create new board" +msgstr "Krei novan tabulon" + +#. line 32 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:108 +msgid "Messages" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:188 +msgid "View all noticeboard entries" +msgstr "" + +#. line 76 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:222 +msgid "Administration" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:282 +msgid "Change password" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:318 +msgid "Configuration" +msgstr "" + +#. line 127 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:357 +msgid "Other" +msgstr "" + +#. line 139 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:391 +msgid "Debug" +msgstr "" + +#. line 141 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:396 +msgid "Anti-spam" +msgstr "" + +#. line 142 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:400 +msgid "Recent posts" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:407 +msgid "SQL" +msgstr "" + +#. line 164 +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:446 +msgid "User account" +msgstr "" + +#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:454 +msgid "Logout" +msgstr "Elsaluti" + +#. line 3 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:27 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:27 +msgid "New post" +msgstr "" + +#. line 16 +#. line 28 +#. line 16 +#. line 28 +#. line 16 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:55 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:83 +msgid "Body" +msgstr "" + +#. line 21 +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:63 +msgid "Post to noticeboard" +msgstr "" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:90 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:118 +msgid "delete" +msgstr "forviŝi" + +#: ../../../../templates/cache/39/f9/8228f77b382baf1d61c1215dc0f0236e4cdf8cc5e938259785cf3e67d1ca.php:138 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:123 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:405 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:504 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:197 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:70 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:42 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:67 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:99 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:345 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:415 +msgid "deleted?" +msgstr "ĉu forviŝita?" + +#. line 33 +#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 +msgid "Post news entry" +msgstr "" + +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 15 +#. line 3 +#. line 67 +#. line 17 +#. line 54 +#. line 133 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#. line 24 +#. line 63 +#. line 152 +#. line 182 +#. line 67 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:464 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:67 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:183 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:59 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:165 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:371 +msgid "Staff" +msgstr "" + +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 18 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#. line 25 +#. line 68 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 +msgid "Note" +msgstr "" + +#. line 26 +#. line 22 +#. line 26 +#. line 19 +#. line 26 +#. line 19 +#. line 26 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:89 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:79 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:67 +msgid "Date" +msgstr "Dato" + +#. line 25 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:96 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:88 +msgid "Actions" +msgstr "Agoj" + +#. line 49 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:154 +msgid "remove" +msgstr "forigi" + +#. line 76 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:208 +msgid "New note" +msgstr "" + +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#. line 94 +#. line 7 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 +msgid "Status" +msgstr "Statuso" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:259 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:44 +msgid "Expired" +msgstr "Malaktiva" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:265 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:50 +msgid "Active" +msgstr "Aktiva" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:299 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:91 +msgid "no reason" +msgstr "" + +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 95 +#. line 118 +#. line 184 +#. line 65 +#. line 10 +#. line 6 +#. line 33 +#. line 49 +#. line 136 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#. line 3 +#. line 118 +#. line 184 +#. line 65 +#. line 33 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:47 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:101 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:38 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:26 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:145 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:383 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:263 +msgid "Board" +msgstr "Tabulo" + +#. line 71 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:323 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:169 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:133 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:115 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:73 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:100 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:227 +msgid "all boards" +msgstr "" + +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 11 +#. line 43 +#. line 50 +#. line 128 +#. line 43 +#. line 128 +#. line 43 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:149 +msgid "Set" +msgstr "" + +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 13 +#. line 47 +#. line 52 +#. line 132 +#. line 47 +#. line 132 +#. line 47 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:157 +msgid "Expires" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:357 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:173 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:149 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:155 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:267 +msgid "never" +msgstr "neniam" + +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 14 +#. line 57 +#. line 53 +#. line 142 +#. line 57 +#. line 142 +#. line 57 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:161 +msgid "Seen" +msgstr "" + +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:375 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:201 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:167 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:295 +msgid "Yes" +msgstr "Jes" + +#: ../../../../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 "Ne" + +#. line 163 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:419 +msgid "Remove ban" +msgstr "Forigi malpermeson" + +#. line 183 +#. line 5 +#. line 183 +#. line 5 +#. line 135 +#. line 94 +#. line 183 +#. line 5 +#. line 135 +#. line 183 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:468 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:34 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:379 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:259 +msgid "Time" +msgstr "" + +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 185 +#. line 89 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 96 +#. line 185 +#. line 7 +#. line 89 +#. line 137 +#. line 185 +#. line 89 +#. line 185 +#. line 89 +#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:387 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:267 +msgid "Action" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:73 +msgid "(or subnet)" +msgstr "" + +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:88 +msgid "hidden" +msgstr "kaŝita" + +#. line 41 +#. line 27 +#. line 41 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:117 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:92 +msgid "Message" +msgstr "Mesaĝo" + +#. line 46 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 +msgid "public; attached to post" +msgstr "" + +#. line 58 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 +msgid "Length" +msgstr "" + +#. line 88 +#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:212 +msgid "New Ban" +msgstr "" + +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#. line 2 +#. line 5 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 +msgid "Phrase:" +msgstr "" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:38 +msgid "Posts" +msgstr "Afiŝoj" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:49 +msgid "IP address notes" +msgstr "IP adreso notoj" + +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:62 +msgid "Bans" +msgstr "Malpermesoj" + +#. line 18 +#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:88 +msgid "" +"(Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.)" +msgstr "" + +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:25 +msgid "There are no active bans." +msgstr "" + +#. line 8 +#. line 47 +#. line 8 +#. line 47 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:39 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:137 +msgid "IP address/mask" +msgstr "" + +#. line 12 +#. line 51 +#. line 12 +#. line 51 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:153 +msgid "Duration" +msgstr "" + +#. line 92 +#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:269 +msgid "Unban selected" +msgstr "" + +#. line 6 +#. line 4 +#. line 6 +#. line 4 +#. line 11 +#. line 6 +#. line 4 +#. line 6 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:34 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:30 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:45 +msgid "Username" +msgstr "Salutnomo" + +#. line 23 +#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:60 +msgid "Continue" +msgstr "Daŭri" + +#. line 80 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:210 +msgid "Appeal time" +msgstr "" + +#. line 84 +#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:220 +msgid "Appeal reason" +msgstr "" + +#: ../../../../templates/cache/7d/63/b6fd83bf4ed7f6031a2b3373b997d2d40617bf98899fe672a0aae48520c5.php:31 +msgid "There are no reports." +msgstr "" + +#: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825 +msgid "That ban doesn't exist or is not for you." +msgstr "" + +#: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829 +msgid "You cannot appeal a ban of this length." +msgstr "" + +#: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836 +msgid "You cannot appeal this ban again." +msgstr "" + +#: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841 +msgid "There is already a pending appeal for this ban." +msgstr "" + +#: ../../../../inc/image.php:24 ../../../../inc/image.php:62 +msgid "Unsupported file format: " +msgstr "" + +#: ../../../../inc/image.php:282 ../../../../inc/image.php:288 +msgid "Failed to redraw image!" +msgstr "" + +#: ../../../../inc/image.php:324 ../../../../inc/image.php:343 +#: ../../../../inc/image.php:368 ../../../../inc/image.php:342 +#: ../../../../inc/image.php:366 +msgid "Failed to resize image!" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:35 +msgid "You were banned! ;_;" +msgstr "Vi estis malpermesita! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:41 +msgid "You are banned! ;_;" +msgstr "Vi estas malpermesita! ;_;" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 +msgid "You were banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 +msgid "You have been banned from" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 +msgid "for the following reason:" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:88 +msgid "for an unspecified reason." +msgstr "" + +#. line 32 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:110 +msgid "Your ban was filed on" +msgstr "" + +#. line 51 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:156 +msgid "has since expired. Refresh the page to continue." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:129 +msgid "expires" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:133 +msgid "from now, which is on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:183 +msgid "will not expire" +msgstr "" + +#. line 78 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:192 +msgid "Your IP address is" +msgstr "" + +#. line 86 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:215 +msgid "You were banned for the following post on" +msgstr "" + +#. line 95 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:239 +msgid "You submitted an appeal for this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:245 +msgid "It is still pending" +msgstr "" + +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#. line 101 +#. line 112 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:257 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:289 +msgid "You appealed this ban on" +msgstr "" + +#. line 103 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 +msgid "and it was denied. You may not appeal this ban again." +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 +msgid "" +"You have submitted the maximum number of ban appeals allowed. You may not " +"appeal this ban again." +msgstr "" + +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#. line 114 +#. line 121 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:297 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:318 +msgid "and it was denied." +msgstr "" + +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#. line 116 +#. line 123 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 +msgid "You may appeal this ban again. Please enter your reasoning below." +msgstr "" + +#. line 119 +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 +msgid "You last appealed this ban on" +msgstr "" + +#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:332 +msgid "You may appeal this ban. Please enter your reasoning below." +msgstr "" + +#. line 4 +#. line 16 +#. line 134 +#. line 93 +#. line 4 +#. line 16 +#. line 134 +#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:30 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:55 +#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:375 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:255 +msgid "IP address" +msgstr "IP adreso" + +#. line 3 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:26 +msgid "ID" +msgstr "ID" + +#. line 5 +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:34 +msgid "Type" +msgstr "Tipo" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:45 +msgid "Last action" +msgstr "Lasta ago" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:80 +msgid "Unknown" +msgstr "Nekonata" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:94 +msgid "none" +msgstr "neniom" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:174 +msgid "Promote" +msgstr "Promocii" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:187 +msgid "Demote" +msgstr "Malpromocii" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:191 +msgid "Are you sure you want to demote yourself?" +msgstr "Ĉu vi certas ke vi volas malpromocii vin?" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:204 +msgid "log" +msgstr "log" + +#: ../../../../templates/cache/fc/8d/2b5f6c25d93a9966c429a79ee7ebdd921957079dab214aebbc665d67b9f4.php:226 +msgid "PM" +msgstr "PM" + +#. line 6 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:36 +msgid "Thread ID" +msgstr "Fadeno ID" + +#. line 14 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:51 +msgid "Leave shadow thread" +msgstr "" + +#. line 18 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:58 +msgid "locks thread; replies to it with a link." +msgstr "" + +#. line 22 +#: ../../../../templates/cache/32/3a/d7e02cef5846ec4f1f423bb0ad2d3c307845d29f70da3f8a90a41f873e7d.php:65 +msgid "Target board" +msgstr "" + +#. line 8 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:40 +msgid "Select board" +msgstr "" + +#. line 17 +#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:73 +msgid "" +"Search is case-insensitive and based on keywords. To match exact phrases, " +"use \"quotes\". Use an asterisk (*) for wildcard.

You may apply the following filters to your searches: " +"id, thread, subject, and " +"name. To apply a filter, simply add to your query, for " +"example, name:Anonymous or subject:\"Some Thread\". " +"Wildcards cannot be used in filters." +msgstr "" + +#. line 2 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:25 +msgid "Are you sure you want to do that?" +msgstr "Ĉu vi certas ke vi volas fari tion?" + +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:31 +msgid "Click to proceed to" +msgstr "" + +#. line 5 +#: ../../../../templates/cache/57/a7/c0a734e494c78acfc595f033a070bdc87fdc3e6a28ad5aaa8666c7a1a966.php:39 +msgid "" +"You are probably seeing this message because Javascript being disabled. This" +" is a necessary security measure to prevent CSRF attacks." +msgstr "" + +#. line 7 +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:44 +msgid "Report date" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:54 +msgid "Reported by" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:73 +msgid "Discard abuse report" +msgstr "" + +#: ../../../../templates/cache/3a/62/f804928dbcf285e3d5d8d7ae31b1e3a7c78264f270efa9650d31f69c7897.php:93 +msgid "Discard all abuse reports by this IP address" +msgstr "" + +#. line 4 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:27 +msgid "From" +msgstr "" + +#. line 34 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 +msgid "Delete forever" +msgstr "" + +#. line 39 +#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 +msgid "Reply with quote" +msgstr "Respondi kun citaĵo" + +#. line 18 +#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 +msgid "Send message" +msgstr "Sendi mesaĝon" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 +msgid "There are no themes available." +msgstr "Neniaj temoj haveblas." + +#. line 11 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:50 +msgid "Version" +msgstr "Versio" + +#. line 15 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:60 +msgid "Description" +msgstr "Priskribo" + +#. line 19 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:70 +msgid "Thumbnail" +msgstr "Samplabildo" + +#. line 27 +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:93 +msgid "Use theme" +msgstr "Uzi temon" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:100 +msgid "Reconfigure" +msgstr "Rearanĝi" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:102 +msgid "Install" +msgstr "Instali" + +#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:123 +msgid "Uninstall" +msgstr "Malinstali" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:72 +msgid "new; optional" +msgstr "nova; opcia" + +#. line 32 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:98 +msgid "Group" +msgstr "Grupo" + +#. line 56 +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:161 +msgid "All boards" +msgstr "Ĉiuj tabuloj" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:223 +msgid "Create user" +msgstr "Krei uzanton" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:229 +msgid "Save changes" +msgstr "Konservi ŝanĝojn" + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:236 +msgid "Delete user" +msgstr "Forviŝi uzanton." + +#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 +msgid "View more logs for this user." +msgstr "Vidi pli da logoj de ĉi tiu uzanto." + +#. line 84 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255 +msgid "Flag" +msgstr "Flago" + +#. line 87 +#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261 +msgid "None" +msgstr "Neniom" + +#. When moving a thread to another board and choosing to keep a "shadow +#. thread", an automated post (with +#. a capcode) will be made, linking to the new location for the thread. "%s" +#. will be replaced with a +#. standard cross-board post citation (>>>/board/xxx) +#: ../../../../inc/config.php:1211 +#, php-format +msgid "Moved to %s." +msgstr "Translokita al %s." + +#: ../../../../templates/themes/recent/theme.php:50 +msgid "" +"Can't build the RecentPosts theme, because there are no boards to be " +"fetched." +msgstr ""