Merge vichan

This commit is contained in:
8chan 2014-04-21 13:46:04 +00:00
commit 03dea2173e
57 changed files with 2641 additions and 1450 deletions

View File

@ -1211,7 +1211,7 @@
// When moving a thread to another board and choosing to keep a "shadow thread", an automated post (with // 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 // 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) // standard cross-board post citation (>>>/board/xxx)
$config['mod']['shadow_mesage'] = 'Moved to %s.'; $config['mod']['shadow_mesage'] = _('Moved to %s.');
// Capcode to use when posting the above message. // Capcode to use when posting the above message.
$config['mod']['shadow_capcode'] = 'Mod'; $config['mod']['shadow_capcode'] = 'Mod';
// Name to use when posting the above message. If false, $config['anonymous'] will be used. // Name to use when posting the above message. If false, $config['anonymous'] will be used.

View File

@ -88,6 +88,10 @@ function error($message, $priority = true, $debug_stuff = false) {
$debug_stuff = array_combine(array('SQLSTATE', 'Error code', 'Error message'), $db_error); $debug_stuff = array_combine(array('SQLSTATE', 'Error code', 'Error message'), $db_error);
} }
if ($config['debug']) {
$debug_stuff['backtrace'] = debug_backtrace();
}
// Return the bad request header, necessary for AJAX posts // Return the bad request header, necessary for AJAX posts
// czaks: is it really so? the ajax errors only work when this is commented out // czaks: is it really so? the ajax errors only work when this is commented out
// better yet use it when ajax is disabled // better yet use it when ajax is disabled

View File

@ -326,13 +326,23 @@ function create_antibot($board, $thread = null) {
return _create_antibot($board, $thread); return _create_antibot($board, $thread);
} }
function rebuildThemes($action, $board = false) { function rebuildThemes($action, $boardname = false) {
global $config, $board;
// Save the global variables
$_config = $config;
$_board = $board;
// List themes // List themes
$query = query("SELECT `theme` FROM ``theme_settings`` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error()); $query = query("SELECT `theme` FROM ``theme_settings`` WHERE `name` IS NULL AND `value` IS NULL") or error(db_error());
while ($theme = $query->fetch(PDO::FETCH_ASSOC)) { while ($theme = $query->fetch(PDO::FETCH_ASSOC)) {
rebuildTheme($theme['theme'], $action, $board); rebuildTheme($theme['theme'], $action, $boardname);
} }
// Restore them
$config = $_config;
$board = $_board;
} }
@ -630,7 +640,7 @@ function listBoards($just_uri = false) {
$boards[] = $board; $boards[] = $board;
} }
} }
if ($config['cache']['enabled']) if ($config['cache']['enabled'])
cache::set($cache_name, $boards); cache::set($cache_name, $boards);

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -563,3 +563,7 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "" msgstr ""
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,13 +1,14 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/cs_CZ/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -21,6 +22,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "sekunda" msgstr[0] "sekunda"
@ -32,6 +34,7 @@ msgstr[2] "sekund"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "minuta" msgstr[0] "minuta"
@ -43,6 +46,7 @@ msgstr[2] "minut"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "hodina" msgstr[0] "hodina"
@ -54,6 +58,7 @@ msgstr[2] "hodin"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "den" msgstr[0] "den"
@ -65,6 +70,7 @@ msgstr[2] "dnů"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "týden" msgstr[0] "týden"
@ -76,6 +82,7 @@ msgstr[2] "týdnů"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "rok" msgstr[0] "rok"
@ -84,7 +91,7 @@ msgstr[2] "let"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Máš ban!" msgstr "Máš ban!"
@ -95,6 +102,7 @@ msgstr "Máš ban!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Předchozí" msgstr "Předchozí"
@ -104,7 +112,8 @@ msgstr "Předchozí"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Další" msgstr "Další"
@ -254,7 +263,7 @@ msgstr "Přesunout vlákno na jiný board"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Byl jsi umlčen za neoriginální obsah." msgstr "Byl jsi umlčen za neoriginální obsah."
@ -264,20 +273,20 @@ msgstr "Byl jsi umlčen za neoriginální obsah."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Nové téma" msgstr "Nové téma"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Nová odpověď" msgstr "Nová odpověď"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -301,237 +310,237 @@ msgstr "Než něco pošleš, zjisti si, jak to tu chodí."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Vypadáš jako robot." msgstr "Vypadáš jako robot."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Tvůj prohlížeč neposlal žádný nebo poslal neplatný HTTP referer." msgstr "Tvůj prohlížeč neposlal žádný nebo poslal neplatný HTTP referer."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "Pole %s je příliš dlouhé." msgstr "Pole %s je příliš dlouhé."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "Tělo je příliš dlouhé." msgstr "Tělo je příliš dlouhé."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "Tělo je příliš krátké nebo prázdné." msgstr "Tělo je příliš krátké nebo prázdné."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Musíš nahrát obrázek." msgstr "Musíš nahrát obrázek."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "Server nedokázal zpracovat tvůj upload." msgstr "Server nedokázal zpracovat tvůj upload."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Nepodporovaný formát obrázku." msgstr "Nepodporovaný formát obrázku."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Neplatný board!" msgstr "Neplatný board!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Dané vlákno neexistuje." msgstr "Dané vlákno neexistuje."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Vlákno bylo zamknuto. Teď na něj nemůžeš odpovídat." msgstr "Vlákno bylo zamknuto. Teď na něj nemůžeš odpovídat."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "Vlákno dosáhlo limit na počet odpovědí." msgstr "Vlákno dosáhlo limit na počet odpovědí."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "Vlákno dosáhlo limit na počet obrázků." msgstr "Vlákno dosáhlo limit na počet obrázků."
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Nic jsi neposlal." msgstr "Nic jsi neposlal."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Detekován flood; příspěvek zahozen." msgstr "Detekován flood; příspěvek zahozen."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Tvůj požadavek vypadá strojově; příspěvek zahozen." msgstr "Tvůj požadavek vypadá strojově; příspěvek zahozen."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Neoriginální obsah!" msgstr "Neoriginální obsah!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Neoriginální obsah! Byl jsi na %d sekund umlčen." msgstr "Neoriginální obsah! Byl jsi na %d sekund umlčen."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Byl jsi umlčen! Mluvit budeš moct až za %d sekund." msgstr "Byl jsi umlčen! Mluvit budeš moct až za %d sekund."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Tvoje IP adresa figuruje v %s." msgstr "Tvoje IP adresa figuruje v %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Příliš mnoho odkazů; detekován flood." msgstr "Příliš mnoho odkazů; detekován flood."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Příliš mnoho citací; příspěvek zahozen." msgstr "Příliš mnoho citací; příspěvek zahozen."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Příliš mnoho odkazů napříč boardy; příspěvek zahozen." msgstr "Příliš mnoho odkazů napříč boardy; příspěvek zahozen."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Nevybral jsi nic ke smazání." msgstr "Nevybral jsi nic ke smazání."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Nevybral jsi nic k nahlášení." msgstr "Nevybral jsi nic k nahlášení."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Nemůžeš nahlásit tolik příspěvků najednou." msgstr "Nemůžeš nahlásit tolik příspěvků najednou."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Špatné heslo…" msgstr "Špatné heslo…"
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Neplatný obrázek." msgstr "Neplatný obrázek."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Neznámá přípona souboru." msgstr "Neznámá přípona souboru."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Maximální velikost souboru: %maxsz% bajtů<br>Velikost tvého souboru: %filesz% bajtů" msgstr "Maximální velikost souboru: %maxsz% bajtů<br>Velikost tvého souboru: %filesz% bajtů"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Soubor je příliš velký." msgstr "Soubor je příliš velký."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Tenhle soubor <a href=\"%s\">už tu je</a>!" msgstr "Tenhle soubor <a href=\"%s\">už tu je</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Tenhle soubor <a href=\"%s\">tu už v tomhle vláknu je</a>!" msgstr "Tenhle soubor <a href=\"%s\">tu už v tomhle vláknu je</a>!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Než to budeš moct smazat, budeš muset počkat ještě %s." msgstr "Než to budeš moct smazat, budeš muset počkat ještě %s."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "Detekován MIME type detection XSS exploit (IE); příspěvek zahozen." msgstr "Detekován MIME type detection XSS exploit (IE); příspěvek zahozen."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "Nechápu URL videa, co jsi zkusil vložit." msgstr "Nechápu URL videa, co jsi zkusil vložit."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Asi jsi se upsal u ověření." msgstr "Asi jsi se upsal u ověření."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -540,19 +549,19 @@ msgstr "Najednou můžeš odbanovat jen %s uživatel. Zkusil jsi jich odbanovat
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Neplatné uživatelské jméno a/nebo heslo." msgstr "Neplatné uživatelské jméno a/nebo heslo."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Nejsi moderátor…" msgstr "Nejsi moderátor…"
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -560,71 +569,71 @@ msgstr "Neplatné uživatelské jméno a/nebo heslo. Tvůj uživatel mohl být s
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Neplatné cookies." msgstr "Neplatné cookies."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Tvůj prohlížeč něco neposlal, i když by měl." msgstr "Tvůj prohlížeč něco neposlal, i když by měl."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Pole %s je povinné." msgstr "Pole %s je povinné."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "Pole %s je neplatné." msgstr "Pole %s je neplatné."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Board %s už tu je." msgstr "Board %s už tu je."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Na to nemáš oprávnění." msgstr "Na to nemáš oprávnění."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Ten příspěvek neexistuje…" msgstr "Ten příspěvek neexistuje…"
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Stránka nenalezena." msgstr "Stránka nenalezena."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Tento moderátor <a href=\"?/users/%d\">už existuje</a>!" msgstr "Tento moderátor <a href=\"?/users/%d\">už existuje</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Toto téma neexistuje!" msgstr "Toto téma neexistuje!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Neplatný bezpečností token! Vrať se, prosím, a zkus to znova." msgstr "Neplatný bezpečností token! Vrať se, prosím, a zkus to znova."
@ -636,7 +645,7 @@ msgstr "Neplatný bezpečností token! Vrať se, prosím, a zkus to znova."
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "UŽIVATEL ZA PŘÍSPĚVEK DOSTAL BAN" msgstr "UŽIVATEL ZA PŘÍSPĚVEK DOSTAL BAN"
@ -711,6 +720,9 @@ msgstr "Log moderací"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -883,10 +895,13 @@ msgstr "Smazat příspěvek"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Soubor" msgstr "Soubor"
@ -905,6 +920,7 @@ msgstr "Soubor"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -912,6 +928,7 @@ msgstr "Soubor"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Heslo" msgstr "Heslo"
@ -956,6 +973,11 @@ msgstr "Heslo"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1248,22 +1270,28 @@ msgid "Verification"
msgstr "Ověření" msgstr "Ověření"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "" msgstr ""
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Vložit" msgstr "Vložit"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Flagy" msgstr "Flagy"
@ -1289,11 +1317,15 @@ msgstr "Flagy"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Přilepené" msgstr "Přilepené"
@ -1319,11 +1351,15 @@ msgstr "Přilepené"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Zamknout" msgstr "Zamknout"
@ -1349,21 +1385,27 @@ msgstr "Zamknout"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "Čisté HTML" msgstr "Čisté HTML"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Pro smazání souboru.)" msgstr "(Pro smazání souboru.)"
@ -1372,14 +1414,15 @@ msgid "Post search is disabled"
msgstr "Vyhledávání příspěvků není povolené." msgstr "Vyhledávání příspěvků není povolené."
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Před dalším pokusem o vyhledávání chvíli počkej, prosím." msgstr "Před dalším pokusem o vyhledávání chvíli počkej, prosím."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Dotaz je příliš široký." msgstr "Dotaz je příliš široký."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
@ -1387,7 +1430,7 @@ msgstr[0] "%d výsledek v"
msgstr[1] "%d výsledky v" msgstr[1] "%d výsledky v"
msgstr[2] "%d výsledků v" msgstr[2] "%d výsledků v"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Žádné výsledky." msgstr "Žádné výsledky."
@ -1423,12 +1466,15 @@ msgstr "Žádné výsledky."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Hledat" msgstr "Hledat"
@ -1455,6 +1501,7 @@ msgstr ""
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1631,6 +1678,11 @@ msgstr ""
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1660,6 +1712,8 @@ msgstr "Personál"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1708,6 +1762,7 @@ msgstr "Nová poznámka"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1772,6 +1827,11 @@ msgstr "bez důvodu"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1816,6 +1876,7 @@ msgstr "všechny boardy"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1843,6 +1904,7 @@ msgstr "Nastavit"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1878,6 +1940,7 @@ msgstr "nikdy"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1940,6 +2003,7 @@ msgstr "Čas"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1991,6 +2055,7 @@ msgstr "Nový ban"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2075,19 +2140,19 @@ msgstr ""
msgid "There are no reports." msgid "There are no reports."
msgstr "Nic nebylo nahlášeno." msgstr "Nic nebylo nahlášeno."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "" msgstr ""
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "" msgstr ""
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "" msgstr ""
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "" msgstr ""
@ -2453,3 +2518,13 @@ msgstr ""
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "" msgstr ""
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -1 +1 @@
l10n = []; l10n = {"Style: ":"Stil","File":"Datei","hide":"ausblenden","show":"zeigen","Show locked threads":"Geschlo\u00dfene F\u00e4den anzeigen","Hide locked threads":"Geschlo\u00dfene F\u00e4den ausblenden","URL":"URL","Select":"w\u00e4hlen","Remote":"Remote","Embed":"Eingebettet","Oekaki":"Oekaki","hidden":"ausgeblendet","Show images":"Bilder anzeigen","Hide images":"Bilder ausblenden","Password":"Passwort","Delete file only":"Nur die Datei l\u00f6schen","Delete":"L\u00f6schen","Reason":"Grund","Report":"Melden","Click reply to view.":"Klicke 'antworten' um den Faden anzusehen","Click to expand":"Klicken zum auspacken","Hide expanded replies":"Ausgepackte F\u00e4den ausblenden","Brush size":"Pinselgr\u00f6\u00dfe","Set text":"Text setzen","Clear":"Leeren","Save":"Speichern","Load":"Laden","Get color":"Farbe w\u00e4hlen","Fill":"F\u00fcllen","Enter some text":"Text eingeben","Enter font or leave empty":"Font w\u00e4hlen oder leer lassen","Forced anonymity":"Erzwungene Anonymit\u00e4t","enabled":"erlaubt","disabled":"unerlaubt","Sun":"So","Mon":"Mo","Tue":"Di","Wed":"Mi","Thu":"Do","Fri":"Fr","Sat":"Sa","Catalog":"Katalog","Submit":"Best\u00e4tigen","Quick reply":"Schnelllantwort","Return":"Zur\u00fcck","Expand all images":"Alle Bilder vergr\u00f6\u00dfern","Hello!":"Hallo,","{0} users":"{0} User","(hide threads from this board)":"(F\u00e4den dieses Brett's ausblenden)","(show threads from this board)":"(F\u00e4den dieses Brett's anzeigen) ","No more threads to display":"Keine F\u00e4den vorhanden","Loading...":"L\u00e4dt","Save as original filename":"Original-Dateiname speichern","Reported post(s).":"Gemeldete Posts","An unknown error occured!":"Ein unbekannter Fehler ist aufgetretten","Something went wrong... An unknown error occured!":"Irgendwas stimmt nicht... Ein unbekannter Fehler ist aufgetretten ","Working...":"Funktioniert...","Posting... (#%)":"Posting... (#%)","Posted...":"Gepostet...","An unknown error occured when posting!":"Beim posten ist ein unbekannter Fehler aufgetretten!","Posting...":"Postet...","Upload URL":"Upload URL","Spoiler Image":"Bilder spoilern","Comment":"Kommentar","Quick Reply":"Schnellantwort","Stop watching this thread":"Faden nicht l\u00e4nger verfolgen","Watch this thread":"Faden verfolgen","Unpin this board":"Brett nicht mehr anpinnen","Pin this board":"Brett anpinnen","Stop watching this board":"Brett nicht mehr verfolgen","Watch this board":"Brett verfolgen","Sunday":"Sonntag","Monday":"Montag","Tuesday":"Dienstag","Wednesday":"Mittwoch","Thursday":"Donnerstag","Friday":"Freitag","Saturday":"Samstag","January":"Januar","February":"Februar","March":"M\u00e4rz","April":"April","May":"Mai","June":"Juni","July":"Juli","August":"August","September":"September","October":"Oktober","November":"November","December":"Dezember","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dez","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Dein Browser unterst\u00fctzt keine HTML5-Videos.","[play once]":"[Abspielen]","[loop]":"[Schleife]","WebM Settings":"WebM Einstellungen","Default volume":"Standardlautst\u00e4rke"};

View File

@ -3,12 +3,13 @@
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# #
# Translators: # Translators:
# zzrutkjf <fgnthjrj@byom.de>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n" "Language-Team: German (Germany) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/de_DE/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,22 +20,22 @@ msgstr ""
#: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41 #: ../../../../js/style-select.js:40 ../../../../js/style-select.js:41
msgid "Style: " msgid "Style: "
msgstr "" msgstr "Stil"
#: ../../../../js/hide-images.js:50 ../../../../js/upload-selection.js:51 #: ../../../../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:30 ../../../../js/hide-images.js:51
#: ../../../../js/quick-post-controls.js:32 #: ../../../../js/quick-post-controls.js:32
#: ../../../../js/upload-selection.js:61 #: ../../../../js/upload-selection.js:61
msgid "File" msgid "File"
msgstr "" msgstr "Datei"
#: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51 #: ../../../../js/hide-images.js:50 ../../../../js/hide-images.js:51
msgid "hide" msgid "hide"
msgstr "" msgstr "ausblenden"
#: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57 #: ../../../../js/hide-images.js:56 ../../../../js/hide-images.js:57
msgid "show" msgid "show"
msgstr "" msgstr "zeigen"
#: ../../../../js/toggle-locked-threads.js:39 #: ../../../../js/toggle-locked-threads.js:39
#: ../../../../js/toggle-locked-threads.js:54 #: ../../../../js/toggle-locked-threads.js:54
@ -43,7 +44,7 @@ msgstr ""
#: ../../../../js/toggle-locked-threads.js:41 #: ../../../../js/toggle-locked-threads.js:41
#: ../../../../js/toggle-locked-threads.js:56 #: ../../../../js/toggle-locked-threads.js:56
msgid "Show locked threads" msgid "Show locked threads"
msgstr "" msgstr "Geschloßene Fäden anzeigen"
#: ../../../../js/toggle-locked-threads.js:39 #: ../../../../js/toggle-locked-threads.js:39
#: ../../../../js/toggle-locked-threads.js:54 #: ../../../../js/toggle-locked-threads.js:54
@ -52,98 +53,98 @@ msgstr ""
#: ../../../../js/toggle-locked-threads.js:41 #: ../../../../js/toggle-locked-threads.js:41
#: ../../../../js/toggle-locked-threads.js:56 #: ../../../../js/toggle-locked-threads.js:56
msgid "Hide locked threads" msgid "Hide locked threads"
msgstr "" msgstr "Geschloßene Fäden ausblenden"
#: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45 #: ../../../../js/upload-selection.js:32 ../../../../js/upload-selection.js:45
msgid "URL" msgid "URL"
msgstr "" msgstr "URL"
#: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60 #: ../../../../js/upload-selection.js:50 ../../../../js/upload-selection.js:60
msgid "Select" msgid "Select"
msgstr "" msgstr "wählen"
#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 #: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63
msgid "Remote" msgid "Remote"
msgstr "" msgstr "Remote"
#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 #: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66
msgid "Embed" msgid "Embed"
msgstr "" msgstr "Eingebettet"
#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 #: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69
msgid "Oekaki" msgid "Oekaki"
msgstr "" msgstr "Oekaki"
#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 #: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42
msgid "hidden" msgid "hidden"
msgstr "" msgstr "ausgeblendet"
#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
msgid "Show images" msgid "Show images"
msgstr "" msgstr "Bilder anzeigen"
#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
msgid "Hide images" msgid "Hide images"
msgstr "" msgstr "Bilder ausblenden"
#: ../../../../js/quick-post-controls.js:27 #: ../../../../js/quick-post-controls.js:27
#: ../../../../js/quick-post-controls.js:29 #: ../../../../js/quick-post-controls.js:29
msgid "Password" msgid "Password"
msgstr "" msgstr "Passwort"
#: ../../../../js/quick-post-controls.js:29 #: ../../../../js/quick-post-controls.js:29
#: ../../../../js/quick-post-controls.js:31 #: ../../../../js/quick-post-controls.js:31
msgid "Delete file only" msgid "Delete file only"
msgstr "" msgstr "Nur die Datei löschen"
#: ../../../../js/quick-post-controls.js:31 #: ../../../../js/quick-post-controls.js:31
#: ../../../../js/quick-post-controls.js:33 #: ../../../../js/quick-post-controls.js:33
msgid "Delete" msgid "Delete"
msgstr "" msgstr "Löschen"
#: ../../../../js/quick-post-controls.js:35 #: ../../../../js/quick-post-controls.js:35
#: ../../../../js/quick-post-controls.js:37 #: ../../../../js/quick-post-controls.js:37
msgid "Reason" msgid "Reason"
msgstr "" msgstr "Grund"
#: ../../../../js/quick-post-controls.js:37 #: ../../../../js/quick-post-controls.js:37
#: ../../../../js/quick-post-controls.js:39 #: ../../../../js/quick-post-controls.js:39
msgid "Report" msgid "Report"
msgstr "" msgstr "Melden"
#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 #: ../../../../js/expand.js:20 ../../../../js/expand.js:22
msgid "Click reply to view." msgid "Click reply to view."
msgstr "" msgstr "Klicke 'antworten' um den Faden anzusehen"
#: ../../../../js/expand.js:20 ../../../../js/expand.js:22 #: ../../../../js/expand.js:20 ../../../../js/expand.js:22
msgid "Click to expand" msgid "Click to expand"
msgstr "" msgstr "Klicken zum auspacken"
#: ../../../../js/expand.js:44 ../../../../js/expand.js:46 #: ../../../../js/expand.js:44 ../../../../js/expand.js:46
msgid "Hide expanded replies" msgid "Hide expanded replies"
msgstr "" msgstr "Ausgepackte Fäden ausblenden"
#: ../../../../js/oekaki.js:10 #: ../../../../js/oekaki.js:10
msgid "Brush size" msgid "Brush size"
msgstr "" msgstr "Pinselgröße"
#: ../../../../js/oekaki.js:10 #: ../../../../js/oekaki.js:10
msgid "Set text" msgid "Set text"
msgstr "" msgstr "Text setzen"
#: ../../../../js/oekaki.js:10 #: ../../../../js/oekaki.js:10
msgid "Clear" msgid "Clear"
msgstr "" msgstr "Leeren"
#: ../../../../js/oekaki.js:10 #: ../../../../js/oekaki.js:10
msgid "Save" msgid "Save"
msgstr "" msgstr "Speichern"
#: ../../../../js/oekaki.js:10 #: ../../../../js/oekaki.js:10
msgid "Load" msgid "Load"
msgstr "" msgstr "Laden"
#: ../../../../js/oekaki.js:11 #: ../../../../js/oekaki.js:11
msgid "Toggle eraser" msgid "Toggle eraser"
@ -151,11 +152,11 @@ msgstr ""
#: ../../../../js/oekaki.js:11 #: ../../../../js/oekaki.js:11
msgid "Get color" msgid "Get color"
msgstr "" msgstr "Farbe wählen"
#: ../../../../js/oekaki.js:11 #: ../../../../js/oekaki.js:11
msgid "Fill" msgid "Fill"
msgstr "" msgstr "Füllen"
#: ../../../../js/oekaki.js:12 #: ../../../../js/oekaki.js:12
msgid "Use oekaki instead of file?" msgid "Use oekaki instead of file?"
@ -167,11 +168,11 @@ msgstr ""
#: ../../../../js/oekaki.js:152 #: ../../../../js/oekaki.js:152
msgid "Enter some text" msgid "Enter some text"
msgstr "" msgstr "Text eingeben"
#: ../../../../js/oekaki.js:153 #: ../../../../js/oekaki.js:153
msgid "Enter font or leave empty" msgid "Enter font or leave empty"
msgstr "" msgstr "Font wählen oder leer lassen"
#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65
#: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60 #: ../../../../js/forced-anon.js:69 ../../../../js/forced-anon.js:60
@ -179,70 +180,70 @@ msgstr ""
#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67
#: ../../../../js/forced-anon.js:71 #: ../../../../js/forced-anon.js:71
msgid "Forced anonymity" msgid "Forced anonymity"
msgstr "" msgstr "Erzwungene Anonymität"
#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65 #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:65
#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:66
#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:67
msgid "enabled" msgid "enabled"
msgstr "" msgstr "erlaubt"
#: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69 #: ../../../../js/forced-anon.js:59 ../../../../js/forced-anon.js:69
#: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70 #: ../../../../js/forced-anon.js:60 ../../../../js/forced-anon.js:70
#: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71 #: ../../../../js/forced-anon.js:61 ../../../../js/forced-anon.js:71
msgid "disabled" msgid "disabled"
msgstr "" msgstr "unerlaubt"
#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
#: ../../../../js/local-time.js:30 #: ../../../../js/local-time.js:30
msgid "Sun" msgid "Sun"
msgstr "" msgstr "So"
#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
#: ../../../../js/local-time.js:30 #: ../../../../js/local-time.js:30
msgid "Mon" msgid "Mon"
msgstr "" msgstr "Mo"
#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
#: ../../../../js/local-time.js:30 #: ../../../../js/local-time.js:30
msgid "Tue" msgid "Tue"
msgstr "" msgstr "Di"
#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
#: ../../../../js/local-time.js:30 #: ../../../../js/local-time.js:30
msgid "Wed" msgid "Wed"
msgstr "" msgstr "Mi"
#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
#: ../../../../js/local-time.js:30 #: ../../../../js/local-time.js:30
msgid "Thu" msgid "Thu"
msgstr "" msgstr "Do"
#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
#: ../../../../js/local-time.js:30 #: ../../../../js/local-time.js:30
msgid "Fri" msgid "Fri"
msgstr "" msgstr "Fr"
#: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41 #: ../../../../js/local-time.js:40 ../../../../js/local-time.js:41
#: ../../../../js/local-time.js:30 #: ../../../../js/local-time.js:30
msgid "Sat" msgid "Sat"
msgstr "" msgstr "Sa"
#: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32 #: ../../../../js/catalog-link.js:21 ../../../../js/catalog-link.js:32
#: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33 #: ../../../../js/catalog-link.js:40 ../../../../js/catalog-link.js:33
#: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52 #: ../../../../js/catalog-link.js:44 ../../../../js/catalog-link.js:52
msgid "Catalog" msgid "Catalog"
msgstr "" msgstr "Katalog"
#: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21 #: ../../../../js/quick-reply.js:21 ../../../../js/quick-reply-old.js:21
#: ../../../../js/quick-reply-old.js:23 #: ../../../../js/quick-reply-old.js:23
msgid "Submit" msgid "Submit"
msgstr "" msgstr "Bestätigen"
#: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31 #: ../../../../js/quick-reply.js:31 ../../../../js/quick-reply-old.js:31
#: ../../../../js/quick-reply-old.js:33 #: ../../../../js/quick-reply-old.js:33
msgid "Quick reply" msgid "Quick reply"
msgstr "" msgstr "Schnelllantwort"
#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33
#: ../../../../js/quick-reply-old.js:35 #: ../../../../js/quick-reply-old.js:35
@ -253,116 +254,116 @@ msgstr ""
#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33
#: ../../../../js/quick-reply-old.js:35 #: ../../../../js/quick-reply-old.js:35
msgid "Return" msgid "Return"
msgstr "" msgstr "Zurück"
#: ../../../../js/expand-all-images.js:20 #: ../../../../js/expand-all-images.js:20
#: ../../../../js/expand-all-images.js:21 #: ../../../../js/expand-all-images.js:21
#: ../../../../js/expand-all-images.js:22 #: ../../../../js/expand-all-images.js:22
msgid "Expand all images" msgid "Expand all images"
msgstr "" msgstr "Alle Bilder vergrößern"
#: ../../../../templates/main.js:6 #: ../../../../templates/main.js:6
msgid "Hello!" msgid "Hello!"
msgstr "" msgstr "Hallo,"
#: ../../../../templates/main.js:18 #: ../../../../templates/main.js:18
#, python-brace-format #, python-brace-format
msgid "{0} users" msgid "{0} users"
msgstr "" msgstr "{0} User"
#: ../../../../templates/themes/ukko/ukko.js:28 #: ../../../../templates/themes/ukko/ukko.js:28
#: ../../../../templates/themes/ukko/ukko.js:39 #: ../../../../templates/themes/ukko/ukko.js:39
#: ../../../../templates/themes/ukko/ukko.js:29 #: ../../../../templates/themes/ukko/ukko.js:29
#: ../../../../templates/themes/ukko/ukko.js:40 #: ../../../../templates/themes/ukko/ukko.js:40
msgid "(hide threads from this board)" msgid "(hide threads from this board)"
msgstr "" msgstr "(Fäden dieses Brett's ausblenden)"
#: ../../../../templates/themes/ukko/ukko.js:32 #: ../../../../templates/themes/ukko/ukko.js:32
#: ../../../../templates/themes/ukko/ukko.js:44 #: ../../../../templates/themes/ukko/ukko.js:44
#: ../../../../templates/themes/ukko/ukko.js:33 #: ../../../../templates/themes/ukko/ukko.js:33
#: ../../../../templates/themes/ukko/ukko.js:45 #: ../../../../templates/themes/ukko/ukko.js:45
msgid "(show threads from this board)" msgid "(show threads from this board)"
msgstr "" msgstr "(Fäden dieses Brett's anzeigen) "
#: ../../../../templates/themes/ukko/ukko.js:57 #: ../../../../templates/themes/ukko/ukko.js:57
#: ../../../../templates/themes/ukko/ukko.js:58 #: ../../../../templates/themes/ukko/ukko.js:58
msgid "No more threads to display" msgid "No more threads to display"
msgstr "" msgstr "Keine Fäden vorhanden"
#: ../../../../templates/themes/ukko/ukko.js:79 #: ../../../../templates/themes/ukko/ukko.js:79
#: ../../../../templates/themes/ukko/ukko.js:80 #: ../../../../templates/themes/ukko/ukko.js:80
msgid "Loading..." msgid "Loading..."
msgstr "" msgstr "Lädt"
#: ../../../../js/download-original.js:32 #: ../../../../js/download-original.js:32
#: ../../../../js/download-original.js:33 #: ../../../../js/download-original.js:33
msgid "Save as original filename" msgid "Save as original filename"
msgstr "" msgstr "Original-Dateiname speichern"
#: ../../../../js/ajax-post-controls.js:43 #: ../../../../js/ajax-post-controls.js:43
msgid "Reported post(s)." msgid "Reported post(s)."
msgstr "" msgstr "Gemeldete Posts"
#: ../../../../js/ajax-post-controls.js:53 #: ../../../../js/ajax-post-controls.js:53
msgid "An unknown error occured!" msgid "An unknown error occured!"
msgstr "" msgstr "Ein unbekannter Fehler ist aufgetretten"
#: ../../../../js/ajax-post-controls.js:60 #: ../../../../js/ajax-post-controls.js:60
msgid "Something went wrong... An unknown error occured!" msgid "Something went wrong... An unknown error occured!"
msgstr "" msgstr "Irgendwas stimmt nicht... Ein unbekannter Fehler ist aufgetretten "
#: ../../../../js/ajax-post-controls.js:68 #: ../../../../js/ajax-post-controls.js:68
msgid "Working..." msgid "Working..."
msgstr "" msgstr "Funktioniert..."
#: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45 #: ../../../../js/ajax.js:42 ../../../../js/ajax.js:45
msgid "Posting... (#%)" msgid "Posting... (#%)"
msgstr "" msgstr "Posting... (#%)"
#: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109 #: ../../../../js/ajax.js:104 ../../../../js/ajax.js:109
msgid "Posted..." msgid "Posted..."
msgstr "" msgstr "Gepostet..."
#: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111 #: ../../../../js/ajax.js:106 ../../../../js/ajax.js:111
msgid "An unknown error occured when posting!" msgid "An unknown error occured when posting!"
msgstr "" msgstr "Beim posten ist ein unbekannter Fehler aufgetretten!"
#: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135 #: ../../../../js/ajax.js:130 ../../../../js/ajax.js:135
msgid "Posting..." msgid "Posting..."
msgstr "" msgstr "Postet..."
#: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224 #: ../../../../js/quick-reply.js:223 ../../../../js/quick-reply.js:224
#: ../../../../js/quick-reply.js:225 #: ../../../../js/quick-reply.js:225
msgid "Upload URL" msgid "Upload URL"
msgstr "" msgstr "Upload URL"
#: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267 #: ../../../../js/quick-reply.js:266 ../../../../js/quick-reply.js:267
#: ../../../../js/quick-reply.js:268 #: ../../../../js/quick-reply.js:268
msgid "Spoiler Image" msgid "Spoiler Image"
msgstr "" msgstr "Bilder spoilern"
#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 #: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278
#: ../../../../js/quick-reply.js:279 #: ../../../../js/quick-reply.js:279
msgid "Comment" msgid "Comment"
msgstr "" msgstr "Kommentar"
#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 #: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406
#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 #: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407
#: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408 #: ../../../../js/quick-reply.js:287 ../../../../js/quick-reply.js:408
msgid "Quick Reply" msgid "Quick Reply"
msgstr "" msgstr "Schnellantwort"
#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 #: ../../../../js/watch.js:249 ../../../../js/watch.js:250
#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 #: ../../../../js/watch.js:288 ../../../../js/watch.js:289
#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 #: ../../../../js/watch.js:330 ../../../../js/watch.js:331
msgid "Stop watching this thread" msgid "Stop watching this thread"
msgstr "" msgstr "Faden nicht länger verfolgen"
#: ../../../../js/watch.js:249 ../../../../js/watch.js:250 #: ../../../../js/watch.js:249 ../../../../js/watch.js:250
#: ../../../../js/watch.js:288 ../../../../js/watch.js:289 #: ../../../../js/watch.js:288 ../../../../js/watch.js:289
#: ../../../../js/watch.js:330 ../../../../js/watch.js:331 #: ../../../../js/watch.js:330 ../../../../js/watch.js:331
msgid "Watch this thread" msgid "Watch this thread"
msgstr "" msgstr "Faden verfolgen"
#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 #: ../../../../js/watch.js:260 ../../../../js/watch.js:261
#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299
@ -370,7 +371,7 @@ msgstr ""
#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
#: ../../../../js/watch.js:350 #: ../../../../js/watch.js:350
msgid "Unpin this board" msgid "Unpin this board"
msgstr "" msgstr "Brett nicht mehr anpinnen"
#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 #: ../../../../js/watch.js:260 ../../../../js/watch.js:261
#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299
@ -378,7 +379,7 @@ msgstr ""
#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
#: ../../../../js/watch.js:350 #: ../../../../js/watch.js:350
msgid "Pin this board" msgid "Pin this board"
msgstr "" msgstr "Brett anpinnen"
#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 #: ../../../../js/watch.js:262 ../../../../js/watch.js:267
#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301
@ -386,7 +387,7 @@ msgstr ""
#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 #: ../../../../js/watch.js:343 ../../../../js/watch.js:348
#: ../../../../js/watch.js:349 #: ../../../../js/watch.js:349
msgid "Stop watching this board" msgid "Stop watching this board"
msgstr "" msgstr "Brett nicht mehr verfolgen"
#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 #: ../../../../js/watch.js:262 ../../../../js/watch.js:267
#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301
@ -394,7 +395,7 @@ msgstr ""
#: ../../../../js/watch.js:343 ../../../../js/watch.js:348 #: ../../../../js/watch.js:343 ../../../../js/watch.js:348
#: ../../../../js/watch.js:349 #: ../../../../js/watch.js:349
msgid "Watch this board" msgid "Watch this board"
msgstr "" msgstr "Brett verfolgen"
#: ../../../../js/wpaint.js:113 #: ../../../../js/wpaint.js:113
msgid "Click on any image on this site to load it into oekaki applet" msgid "Click on any image on this site to load it into oekaki applet"
@ -402,155 +403,155 @@ msgstr ""
#: ../../../../js/local-time.js:29 #: ../../../../js/local-time.js:29
msgid "Sunday" msgid "Sunday"
msgstr "" msgstr "Sonntag"
#: ../../../../js/local-time.js:29 #: ../../../../js/local-time.js:29
msgid "Monday" msgid "Monday"
msgstr "" msgstr "Montag"
#: ../../../../js/local-time.js:29 #: ../../../../js/local-time.js:29
msgid "Tuesday" msgid "Tuesday"
msgstr "" msgstr "Dienstag"
#: ../../../../js/local-time.js:29 #: ../../../../js/local-time.js:29
msgid "Wednesday" msgid "Wednesday"
msgstr "" msgstr "Mittwoch"
#: ../../../../js/local-time.js:29 #: ../../../../js/local-time.js:29
msgid "Thursday" msgid "Thursday"
msgstr "" msgstr "Donnerstag"
#: ../../../../js/local-time.js:29 #: ../../../../js/local-time.js:29
msgid "Friday" msgid "Friday"
msgstr "" msgstr "Freitag"
#: ../../../../js/local-time.js:29 #: ../../../../js/local-time.js:29
msgid "Saturday" msgid "Saturday"
msgstr "" msgstr "Samstag"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "January" msgid "January"
msgstr "" msgstr "Januar"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "February" msgid "February"
msgstr "" msgstr "Februar"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "March" msgid "March"
msgstr "" msgstr "März"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "April" msgid "April"
msgstr "" msgstr "April"
#: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:31 ../../../../js/local-time.js:32
msgid "May" msgid "May"
msgstr "" msgstr "Mai"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "June" msgid "June"
msgstr "" msgstr "Juni"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "July" msgid "July"
msgstr "" msgstr "Juli"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "August" msgid "August"
msgstr "" msgstr "August"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "September" msgid "September"
msgstr "" msgstr "September"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "October" msgid "October"
msgstr "" msgstr "Oktober"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "November" msgid "November"
msgstr "" msgstr "November"
#: ../../../../js/local-time.js:31 #: ../../../../js/local-time.js:31
msgid "December" msgid "December"
msgstr "" msgstr "Dezember"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Jan" msgid "Jan"
msgstr "" msgstr "Jan"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Feb" msgid "Feb"
msgstr "" msgstr "Feb"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Mar" msgid "Mar"
msgstr "" msgstr "Mar"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Apr" msgid "Apr"
msgstr "" msgstr "Apr"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Jun" msgid "Jun"
msgstr "" msgstr "Jun"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Jul" msgid "Jul"
msgstr "" msgstr "Jul"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Aug" msgid "Aug"
msgstr "" msgstr "Aug"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Sep" msgid "Sep"
msgstr "" msgstr "Sep"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Oct" msgid "Oct"
msgstr "" msgstr "Okt"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Nov" msgid "Nov"
msgstr "" msgstr "Nov"
#: ../../../../js/local-time.js:32 #: ../../../../js/local-time.js:32
msgid "Dec" msgid "Dec"
msgstr "" msgstr "Dez"
#: ../../../../js/local-time.js:33 #: ../../../../js/local-time.js:33
msgid "AM" msgid "AM"
msgstr "" msgstr "AM"
#: ../../../../js/local-time.js:34 #: ../../../../js/local-time.js:34
msgid "PM" msgid "PM"
msgstr "" msgstr "PM"
#: ../../../../js/local-time.js:35 #: ../../../../js/local-time.js:35
msgid "am" msgid "am"
msgstr "" msgstr "am"
#: ../../../../js/local-time.js:36 #: ../../../../js/local-time.js:36
msgid "pm" msgid "pm"
msgstr "" msgstr "pm"
#: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48 #: ../../../../js/expand-video.js:45 ../../../../js/expand-video.js:48
msgid "Your browser does not support HTML5 video." msgid "Your browser does not support HTML5 video."
msgstr "" msgstr "Dein Browser unterstützt keine HTML5-Videos."
#: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192 #: ../../../../js/expand-video.js:189 ../../../../js/expand-video.js:192
msgid "[play once]" msgid "[play once]"
msgstr "" msgstr "[Abspielen]"
#: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193 #: ../../../../js/expand-video.js:190 ../../../../js/expand-video.js:193
msgid "[loop]" msgid "[loop]"
msgstr "" msgstr "[Schleife]"
#: ../../../../js/webm-settings.js:42 #: ../../../../js/webm-settings.js:42
msgid "WebM Settings" msgid "WebM Settings"
msgstr "" msgstr "WebM Einstellungen"
#: ../../../../js/webm-settings.js:44 #: ../../../../js/webm-settings.js:44
msgid "Expand videos inline" msgid "Expand videos inline"
@ -562,4 +563,8 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Standardlautstärke"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: vichan 4.4.98\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -563,3 +563,7 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "" msgstr ""
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -2,15 +2,17 @@
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan 4.4.98-pre\n" "Project-Id-Version: vichan 4.4.98\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"Language: en\n" "Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
@ -21,6 +23,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "" msgstr[0] ""
@ -31,6 +34,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "" msgstr[0] ""
@ -41,6 +45,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "" msgstr[0] ""
@ -51,40 +56,37 @@ msgstr[1] ""
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608 #: ../../../../inc/functions.php:591 ../../../../inc/functions.php:608
#: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616 #: ../../../../inc/functions.php:599 ../../../../inc/functions.php:616
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611 #: ../../../../inc/functions.php:594 ../../../../inc/functions.php:611
#: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619 #: ../../../../inc/functions.php:602 ../../../../inc/functions.php:619
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "" msgstr ""
@ -95,6 +97,7 @@ msgstr ""
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "" msgstr ""
@ -104,7 +107,8 @@ msgstr ""
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "" msgstr ""
@ -254,7 +258,7 @@ msgstr ""
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "" msgstr ""
@ -263,20 +267,20 @@ msgstr ""
#. The names on the post buttons. (On most imageboards, these are both just "Post"). #. The names on the post buttons. (On most imageboards, these are both just "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "" msgstr ""
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "" msgstr ""
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -302,237 +306,237 @@ msgstr ""
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "" msgstr ""
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "" msgstr ""
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "" msgstr ""
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "" msgstr ""
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "" msgstr ""
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "" msgstr ""
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "" msgstr ""
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "" msgstr ""
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "" msgstr ""
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "" msgstr ""
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "" msgstr ""
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "" msgstr ""
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "" msgstr ""
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "" msgstr ""
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "" msgstr ""
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "" msgstr ""
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "" msgstr ""
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "" msgstr ""
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "" msgstr ""
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "" msgstr ""
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "" msgstr ""
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "" msgstr ""
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "" msgstr ""
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "" msgstr ""
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "" msgstr ""
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "" msgstr ""
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "" msgstr ""
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "" msgstr ""
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -541,90 +545,90 @@ msgstr ""
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "" msgstr ""
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "" msgstr ""
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or changed." "Invalid username and/or password. Your user may have been deleted or changed."
msgstr "" msgstr ""
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "" msgstr ""
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "" msgstr ""
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "" msgstr ""
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "" msgstr ""
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "" msgstr ""
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "" msgstr ""
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "" msgstr ""
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "" msgstr ""
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "" msgstr ""
@ -635,7 +639,7 @@ msgstr ""
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "" msgstr ""
@ -710,6 +714,9 @@ msgstr ""
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -882,10 +889,13 @@ msgstr ""
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "" msgstr ""
@ -904,6 +914,7 @@ msgstr ""
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -911,6 +922,7 @@ msgstr ""
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "" msgstr ""
@ -955,6 +967,11 @@ msgstr ""
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1043,8 +1060,6 @@ msgid_plural "%count% replies"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:102
#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:105
msgid "File:" msgid "File:"
@ -1091,8 +1106,6 @@ msgid_plural "Last %count% Posts"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:598
#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:563
#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:574
@ -1104,8 +1117,6 @@ msgid_plural "%count% posts"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:604
#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:569
#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:580
@ -1127,8 +1138,6 @@ msgid_plural "%count% image replies"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621 #: ../../../../templates/cache/d8/f2/7780eb1adcdbda7e332659e3fb4f.php:621
#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:586
#: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597 #: ../../../../templates/cache/b5/eb/fd7d06d38210e123d492fb7f2a1891578af746ef421003f1b55da157122f.php:597
@ -1251,22 +1260,28 @@ msgid "Verification"
msgstr "" msgstr ""
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "" msgstr ""
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "" msgstr ""
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "" msgstr ""
@ -1292,11 +1307,15 @@ msgstr ""
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "" msgstr ""
@ -1322,11 +1341,15 @@ msgstr ""
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "" msgstr ""
@ -1352,21 +1375,27 @@ msgstr ""
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "" msgstr ""
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "" msgstr ""
@ -1375,23 +1404,22 @@ msgid "Post search is disabled"
msgstr "" msgstr ""
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "" msgstr ""
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "" msgstr ""
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../search.php:163 ../../../../search.php:167
#: ../../../../search.php:163
msgid "No results." msgid "No results."
msgstr "" msgstr ""
@ -1427,12 +1455,15 @@ msgstr ""
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "" msgstr ""
@ -1459,6 +1490,7 @@ msgstr ""
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1635,6 +1667,11 @@ msgstr ""
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1664,6 +1701,8 @@ msgstr ""
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1712,6 +1751,7 @@ msgstr ""
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1776,6 +1816,11 @@ msgstr ""
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1820,6 +1865,7 @@ msgstr ""
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1847,6 +1893,7 @@ msgstr ""
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1882,6 +1929,7 @@ msgstr ""
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1944,6 +1992,7 @@ msgstr ""
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1995,6 +2044,7 @@ msgstr ""
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2079,19 +2129,19 @@ msgstr ""
msgid "There are no reports." msgid "There are no reports."
msgstr "" msgstr ""
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "" msgstr ""
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "" msgstr ""
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "" msgstr ""
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "" msgstr ""
@ -2457,3 +2507,13 @@ msgstr ""
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "" msgstr ""
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n" "Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -563,3 +563,7 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "" msgstr ""
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,13 +1,14 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n" "Language-Team: English (Australia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/en_AU/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -21,6 +22,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "" msgstr[0] ""
@ -31,6 +33,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "" msgstr[0] ""
@ -41,6 +44,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "" msgstr[0] ""
@ -51,6 +55,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "" msgstr[0] ""
@ -61,6 +66,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "" msgstr[0] ""
@ -71,6 +77,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "" msgstr[0] ""
@ -78,7 +85,7 @@ msgstr[1] ""
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "" msgstr ""
@ -89,6 +96,7 @@ msgstr ""
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "" msgstr ""
@ -98,7 +106,8 @@ msgstr ""
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "" msgstr ""
@ -248,7 +257,7 @@ msgstr ""
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "" msgstr ""
@ -258,20 +267,20 @@ msgstr ""
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "" msgstr ""
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "" msgstr ""
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -295,237 +304,237 @@ msgstr ""
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "" msgstr ""
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "" msgstr ""
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "" msgstr ""
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "" msgstr ""
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "" msgstr ""
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "" msgstr ""
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "" msgstr ""
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "" msgstr ""
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "" msgstr ""
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "" msgstr ""
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "" msgstr ""
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "" msgstr ""
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "" msgstr ""
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "" msgstr ""
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "" msgstr ""
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "" msgstr ""
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "" msgstr ""
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "" msgstr ""
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "" msgstr ""
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "" msgstr ""
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "" msgstr ""
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "" msgstr ""
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "" msgstr ""
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "" msgstr ""
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "" msgstr ""
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "" msgstr ""
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "" msgstr ""
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "" msgstr ""
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -534,19 +543,19 @@ msgstr ""
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "" msgstr ""
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "" msgstr ""
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -554,71 +563,71 @@ msgstr ""
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "" msgstr ""
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "" msgstr ""
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "" msgstr ""
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "" msgstr ""
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "" msgstr ""
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "" msgstr ""
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "" msgstr ""
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "" msgstr ""
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "" msgstr ""
@ -630,7 +639,7 @@ msgstr ""
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "" msgstr ""
@ -705,6 +714,9 @@ msgstr ""
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -877,10 +889,13 @@ msgstr ""
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "" msgstr ""
@ -899,6 +914,7 @@ msgstr ""
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -906,6 +922,7 @@ msgstr ""
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "" msgstr ""
@ -950,6 +967,11 @@ msgstr ""
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1238,22 +1260,28 @@ msgid "Verification"
msgstr "" msgstr ""
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "" msgstr ""
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "" msgstr ""
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "" msgstr ""
@ -1279,11 +1307,15 @@ msgstr ""
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "" msgstr ""
@ -1309,11 +1341,15 @@ msgstr ""
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "" msgstr ""
@ -1339,21 +1375,27 @@ msgstr ""
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "" msgstr ""
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "" msgstr ""
@ -1362,21 +1404,22 @@ msgid "Post search is disabled"
msgstr "" msgstr ""
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "" msgstr ""
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "" msgstr ""
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "" msgstr ""
@ -1412,12 +1455,15 @@ msgstr ""
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "" msgstr ""
@ -1444,6 +1490,7 @@ msgstr ""
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1620,6 +1667,11 @@ msgstr ""
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1649,6 +1701,8 @@ msgstr ""
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1697,6 +1751,7 @@ msgstr ""
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1761,6 +1816,11 @@ msgstr ""
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1805,6 +1865,7 @@ msgstr ""
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1832,6 +1893,7 @@ msgstr ""
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1867,6 +1929,7 @@ msgstr ""
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1929,6 +1992,7 @@ msgstr ""
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1980,6 +2044,7 @@ msgstr ""
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2064,19 +2129,19 @@ msgstr ""
msgid "There are no reports." msgid "There are no reports."
msgstr "" msgstr ""
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "" msgstr ""
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "" msgstr ""
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "" msgstr ""
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "" msgstr ""
@ -2442,3 +2507,13 @@ msgstr ""
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "" msgstr ""
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -563,3 +563,7 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "" msgstr ""
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,13 +1,14 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/es_ES/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -21,6 +22,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "segundo" msgstr[0] "segundo"
@ -31,6 +33,7 @@ msgstr[1] "segundos"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "minuto" msgstr[0] "minuto"
@ -41,6 +44,7 @@ msgstr[1] "minutos"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "hora" msgstr[0] "hora"
@ -51,6 +55,7 @@ msgstr[1] "horas"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "día" msgstr[0] "día"
@ -61,6 +66,7 @@ msgstr[1] "días"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "semana" msgstr[0] "semana"
@ -71,6 +77,7 @@ msgstr[1] "semanas"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "año" msgstr[0] "año"
@ -78,7 +85,7 @@ msgstr[1] "años"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Baneado!" msgstr "Baneado!"
@ -89,6 +96,7 @@ msgstr "Baneado!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Anterior" msgstr "Anterior"
@ -98,7 +106,8 @@ msgstr "Anterior"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Siguiente" msgstr "Siguiente"
@ -248,7 +257,7 @@ msgstr "Mover hilo a otro tablón"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Fuiste muteado por contenido poco original." msgstr "Fuiste muteado por contenido poco original."
@ -258,20 +267,20 @@ msgstr "Fuiste muteado por contenido poco original."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Nuevo Hilo" msgstr "Nuevo Hilo"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Nueva Respuesta" msgstr "Nueva Respuesta"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -295,237 +304,237 @@ msgstr "Lurkea algo más antes de postear."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Pareces un bot." msgstr "Pareces un bot."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Tu navegador envió o no una referencia no HTTP." msgstr "Tu navegador envió o no una referencia no HTTP."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "El campo %s es muy largo." msgstr "El campo %s es muy largo."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "El mensaje es muy largo." msgstr "El mensaje es muy largo."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "El mensaje es muy corto o está vacío." msgstr "El mensaje es muy corto o está vacío."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Debes subir una imagen." msgstr "Debes subir una imagen."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "El servidor falló al subir tu imagen." msgstr "El servidor falló al subir tu imagen."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Formato de imagen no soportado." msgstr "Formato de imagen no soportado."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Tablón inválido!" msgstr "Tablón inválido!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Hilo específicado no existe." msgstr "Hilo específicado no existe."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Hilo cerrado. No puedes responder en este momento." msgstr "Hilo cerrado. No puedes responder en este momento."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "El hilo llegó al límite de respuestas." msgstr "El hilo llegó al límite de respuestas."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "El hilo llegó al máximo de imágenes permitido" msgstr "El hilo llegó al máximo de imágenes permitido"
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "No has hecho ningún post." msgstr "No has hecho ningún post."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Flood detectado; Post descartado." msgstr "Flood detectado; Post descartado."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Tu respuesta parece automática; Post descartado." msgstr "Tu respuesta parece automática; Post descartado."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Contenido poco original!" msgstr "Contenido poco original!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Contenido poco original! Fuiste muteado durante %d segundos." msgstr "Contenido poco original! Fuiste muteado durante %d segundos."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Estás muteado! Expira en %d segundos." msgstr "Estás muteado! Expira en %d segundos."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Tu dirección IP está listada en %s." msgstr "Tu dirección IP está listada en %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Muchos links; flood detectado." msgstr "Muchos links; flood detectado."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Muchas citas; post descartado." msgstr "Muchas citas; post descartado."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Muchos links de otros tablones; post descartado." msgstr "Muchos links de otros tablones; post descartado."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "No has seleccionado nada para eliminar." msgstr "No has seleccionado nada para eliminar."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "No has seleccionado nada para reportar." msgstr "No has seleccionado nada para reportar."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "No puedes reportar varios posts a la vez." msgstr "No puedes reportar varios posts a la vez."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Contraseña incorrecta..." msgstr "Contraseña incorrecta..."
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Imagen no válida." msgstr "Imagen no válida."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Extensión del archivo desconocida." msgstr "Extensión del archivo desconocida."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Peso máximo del archivo: %maxsz% bytes<br>Tu archivo pesa %filesz% bytes" msgstr "Peso máximo del archivo: %maxsz% bytes<br>Tu archivo pesa %filesz% bytes"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "El archivo es muy grande." msgstr "El archivo es muy grande."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Ese archivo <a href=\"%s\">ya existe</a>!" msgstr "Ese archivo <a href=\"%s\">ya existe</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Ese archivo <a href=\"%s\">ya existe</a> en este hilo!" msgstr "Ese archivo <a href=\"%s\">ya existe</a> en este hilo!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Tienes que esperar otros %s antes de eliminar eso." msgstr "Tienes que esperar otros %s antes de eliminar eso."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "MIME type detection XSS exploit (IE) detectado; post descartado." msgstr "MIME type detection XSS exploit (IE) detectado; post descartado."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "No tiene sentido la URL del vídeo que has intentado incrustar." msgstr "No tiene sentido la URL del vídeo que has intentado incrustar."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Parece que escribiste mal la verificación." msgstr "Parece que escribiste mal la verificación."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -534,19 +543,19 @@ msgstr "Sólo estás permitido desbanear %s usuarios a la vez. Has intentado des
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Nombre de usuario y/o contraseña no válida." msgstr "Nombre de usuario y/o contraseña no válida."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "No eres un mod..." msgstr "No eres un mod..."
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -554,71 +563,71 @@ msgstr "Nombre de usuario y/o contraseña no válida. Puede que tu usuario fue e
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Cookies no válidas/malformadas." msgstr "Cookies no válidas/malformadas."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla." msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Es necesario el campo %s." msgstr "Es necesario el campo %s."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "No es válido el campo %s." msgstr "No es válido el campo %s."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Ya hay el tablón %s." msgstr "Ya hay el tablón %s."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "No tienes permisos para hacer eso." msgstr "No tienes permisos para hacer eso."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Ese post no existe..." msgstr "Ese post no existe..."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Página no encontrada." msgstr "Página no encontrada."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Ese mod <a href=\"?/users/%d\">ya existe</a>!" msgstr "Ese mod <a href=\"?/users/%d\">ya existe</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Ese hilo no existe!" msgstr "Ese hilo no existe!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de nuevo." msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de nuevo."
@ -630,7 +639,7 @@ msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "USUARIO FUE BANEADO DE ESTE POST" msgstr "USUARIO FUE BANEADO DE ESTE POST"
@ -705,6 +714,9 @@ msgstr "Log de moderación"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -877,10 +889,13 @@ msgstr "Eleminar Post"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Archivo" msgstr "Archivo"
@ -899,6 +914,7 @@ msgstr "Archivo"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -906,6 +922,7 @@ msgstr "Archivo"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Contraseña" msgstr "Contraseña"
@ -950,6 +967,11 @@ msgstr "Contraseña"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1238,22 +1260,28 @@ msgid "Verification"
msgstr "Verificación" msgstr "Verificación"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "O URL" msgstr "O URL"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Incrustar" msgstr "Incrustar"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Banderas" msgstr "Banderas"
@ -1279,11 +1307,15 @@ msgstr "Banderas"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Marca" msgstr "Marca"
@ -1309,11 +1341,15 @@ msgstr "Marca"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Bloquear" msgstr "Bloquear"
@ -1339,21 +1375,27 @@ msgstr "Bloquear"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "HTML puro" msgstr "HTML puro"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Para eliminar archivo.)" msgstr "(Para eliminar archivo.)"
@ -1362,21 +1404,22 @@ msgid "Post search is disabled"
msgstr "El buscador de posts está desactivado" msgstr "El buscador de posts está desactivado"
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Espera un poco antes de volver a buscar, por favor." msgstr "Espera un poco antes de volver a buscar, por favor."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Query muy extenso." msgstr "Query muy extenso."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "%d resultado en" msgstr[0] "%d resultado en"
msgstr[1] "%d resultados en" msgstr[1] "%d resultados en"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Ningún resultado." msgstr "Ningún resultado."
@ -1412,12 +1455,15 @@ msgstr "Ningún resultado."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
@ -1444,6 +1490,7 @@ msgstr "Depurar: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1620,6 +1667,11 @@ msgstr "Postear nueva entrada"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1649,6 +1701,8 @@ msgstr "Staff"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1697,6 +1751,7 @@ msgstr "Nueva nota"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1761,6 +1816,11 @@ msgstr "Sin razón"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1805,6 +1865,7 @@ msgstr "Todos los tablones"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1832,6 +1893,7 @@ msgstr "Conjunto"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1867,6 +1929,7 @@ msgstr "nunca"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1929,6 +1992,7 @@ msgstr "Tiempo"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1980,6 +2044,7 @@ msgstr "Nuevo Ban"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2064,19 +2129,19 @@ msgstr "Apelar razón"
msgid "There are no reports." msgid "There are no reports."
msgstr "No hay ningún reporte." msgstr "No hay ningún reporte."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "Ese ban no existe o no es para ti." msgstr "Ese ban no existe o no es para ti."
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "No puedes apelar el ban de esa longitud." msgstr "No puedes apelar el ban de esa longitud."
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "No puedes volver a apelar este ban." msgstr "No puedes volver a apelar este ban."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "Ya hay una apelación para este ban." msgstr "Ya hay una apelación para este ban."
@ -2442,3 +2507,13 @@ msgstr ""
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "" msgstr ""
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -7,8 +7,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -563,3 +563,7 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "" msgstr ""
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,13 +1,14 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n" "Language-Team: Finnish (Finland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fi_FI/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -21,6 +22,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "segundo" msgstr[0] "segundo"
@ -31,6 +33,7 @@ msgstr[1] "segundos"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "minuto" msgstr[0] "minuto"
@ -41,6 +44,7 @@ msgstr[1] "minutos"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "hora" msgstr[0] "hora"
@ -51,6 +55,7 @@ msgstr[1] "horas"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "día" msgstr[0] "día"
@ -61,6 +66,7 @@ msgstr[1] "días"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "semana" msgstr[0] "semana"
@ -71,6 +77,7 @@ msgstr[1] "semanas"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "año" msgstr[0] "año"
@ -78,7 +85,7 @@ msgstr[1] "años"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Baneado!" msgstr "Baneado!"
@ -89,6 +96,7 @@ msgstr "Baneado!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Anterior" msgstr "Anterior"
@ -98,7 +106,8 @@ msgstr "Anterior"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Siguiente" msgstr "Siguiente"
@ -248,7 +257,7 @@ msgstr "Mover hilo a otro tablón"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Fuiste muteado por contenido poco original." msgstr "Fuiste muteado por contenido poco original."
@ -258,20 +267,20 @@ msgstr "Fuiste muteado por contenido poco original."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Nuevo Hilo" msgstr "Nuevo Hilo"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Nueva Respuesta" msgstr "Nueva Respuesta"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -295,237 +304,237 @@ msgstr "Lurkea algo más antes de postear."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Pareces un bot." msgstr "Pareces un bot."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Tu navegador envió o no una referencia no HTTP." msgstr "Tu navegador envió o no una referencia no HTTP."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "El campo %s es muy largo." msgstr "El campo %s es muy largo."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "El mensaje es muy largo." msgstr "El mensaje es muy largo."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "El mensaje es muy corto o está vacío." msgstr "El mensaje es muy corto o está vacío."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Debes subir una imagen." msgstr "Debes subir una imagen."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "El servidor falló al subir tu imagen." msgstr "El servidor falló al subir tu imagen."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Formato de imagen no soportado." msgstr "Formato de imagen no soportado."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Tablón inválido!" msgstr "Tablón inválido!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Hilo específicado no existe." msgstr "Hilo específicado no existe."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Hilo cerrado. No puedes responder en este momento." msgstr "Hilo cerrado. No puedes responder en este momento."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "El hilo llegó al límite de respuestas." msgstr "El hilo llegó al límite de respuestas."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "El hilo llegó al máximo de imágenes permitido" msgstr "El hilo llegó al máximo de imágenes permitido"
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "No has hecho ningún post." msgstr "No has hecho ningún post."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Flood detectado; Post descartado." msgstr "Flood detectado; Post descartado."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Tu respuesta parece automática; Post descartado." msgstr "Tu respuesta parece automática; Post descartado."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Contenido poco original!" msgstr "Contenido poco original!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Contenido poco original! Fuiste muteado durante %d segundos." msgstr "Contenido poco original! Fuiste muteado durante %d segundos."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Estás muteado! Expira en %d segundos." msgstr "Estás muteado! Expira en %d segundos."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Tu dirección IP está listada en %s." msgstr "Tu dirección IP está listada en %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Muchos links; flood detectado." msgstr "Muchos links; flood detectado."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Muchas citas; post descartado." msgstr "Muchas citas; post descartado."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Muchos links de otros tablones; post descartado." msgstr "Muchos links de otros tablones; post descartado."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "No has seleccionado nada para eliminar." msgstr "No has seleccionado nada para eliminar."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "No has seleccionado nada para reportar." msgstr "No has seleccionado nada para reportar."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "No puedes reportar varios posts a la vez." msgstr "No puedes reportar varios posts a la vez."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Contraseña incorrecta..." msgstr "Contraseña incorrecta..."
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Imagen no válida." msgstr "Imagen no válida."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Extensión del archivo desconocida." msgstr "Extensión del archivo desconocida."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Peso máximo del archivo: %maxsz% bytes<br>Tu archivo pesa %filesz% bytes" msgstr "Peso máximo del archivo: %maxsz% bytes<br>Tu archivo pesa %filesz% bytes"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "El archivo es muy grande." msgstr "El archivo es muy grande."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Ese archivo <a href=\"%s\">ya existe</a>!" msgstr "Ese archivo <a href=\"%s\">ya existe</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Ese archivo <a href=\"%s\">ya existe</a> en este hilo!" msgstr "Ese archivo <a href=\"%s\">ya existe</a> en este hilo!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Tienes que esperar otros %s antes de eliminar eso." msgstr "Tienes que esperar otros %s antes de eliminar eso."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "MIME type detection XSS exploit (IE) detectado; post descartado." msgstr "MIME type detection XSS exploit (IE) detectado; post descartado."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "No tiene sentido la URL del vídeo que has intentado incrustar." msgstr "No tiene sentido la URL del vídeo que has intentado incrustar."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Parece que escribiste mal la verificación." msgstr "Parece que escribiste mal la verificación."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -534,19 +543,19 @@ msgstr "Sólo estás permitido desbanear %s usuarios a la vez. Has intentado des
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Nombre de usuario y/o contraseña no válida." msgstr "Nombre de usuario y/o contraseña no válida."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "No eres un mod..." msgstr "No eres un mod..."
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -554,71 +563,71 @@ msgstr "Nombre de usuario y/o contraseña no válida. Puede que tu usuario fue e
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Cookies no válidas/malformadas." msgstr "Cookies no válidas/malformadas."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla." msgstr "Tu navegador no mostró ninguna entrada cuando debería tenerla."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Es necesario el campo %s." msgstr "Es necesario el campo %s."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "No es válido el campo %s." msgstr "No es válido el campo %s."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Ya hay el tablón %s." msgstr "Ya hay el tablón %s."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "No tienes permisos para hacer eso." msgstr "No tienes permisos para hacer eso."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Ese post no existe..." msgstr "Ese post no existe..."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Página no encontrada." msgstr "Página no encontrada."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Ese mod <a href=\"?/users/%d\">ya existe</a>!" msgstr "Ese mod <a href=\"?/users/%d\">ya existe</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Ese hilo no existe!" msgstr "Ese hilo no existe!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de nuevo." msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de nuevo."
@ -630,7 +639,7 @@ msgstr "Token de seguridad no válido! Por favor, vuelve atrás e inténtalo de
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "USUARIO FUE BANEADO DE ESTE POST" msgstr "USUARIO FUE BANEADO DE ESTE POST"
@ -705,6 +714,9 @@ msgstr "Log de moderación"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -877,10 +889,13 @@ msgstr "Eleminar Post"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Archivo" msgstr "Archivo"
@ -899,6 +914,7 @@ msgstr "Archivo"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -906,6 +922,7 @@ msgstr "Archivo"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Contraseña" msgstr "Contraseña"
@ -950,6 +967,11 @@ msgstr "Contraseña"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1238,22 +1260,28 @@ msgid "Verification"
msgstr "Verificación" msgstr "Verificación"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "O URL" msgstr "O URL"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Incrustar" msgstr "Incrustar"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Banderas" msgstr "Banderas"
@ -1279,11 +1307,15 @@ msgstr "Banderas"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Marca" msgstr "Marca"
@ -1309,11 +1341,15 @@ msgstr "Marca"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Bloquear" msgstr "Bloquear"
@ -1339,21 +1375,27 @@ msgstr "Bloquear"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "HTML puro" msgstr "HTML puro"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Para eliminar archivo.)" msgstr "(Para eliminar archivo.)"
@ -1362,21 +1404,22 @@ msgid "Post search is disabled"
msgstr "El buscador de posts está desactivado" msgstr "El buscador de posts está desactivado"
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Espera un poco antes de volver a buscar, por favor." msgstr "Espera un poco antes de volver a buscar, por favor."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Query muy extenso." msgstr "Query muy extenso."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "%d resultado en" msgstr[0] "%d resultado en"
msgstr[1] "%d resultados en" msgstr[1] "%d resultados en"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Ningún resultado." msgstr "Ningún resultado."
@ -1412,12 +1455,15 @@ msgstr "Ningún resultado."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
@ -1444,6 +1490,7 @@ msgstr "Depurar: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1620,6 +1667,11 @@ msgstr "Postear nueva entrada"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1649,6 +1701,8 @@ msgstr "Staff"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1697,6 +1751,7 @@ msgstr "Nueva nota"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1761,6 +1816,11 @@ msgstr "Sin razón"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1805,6 +1865,7 @@ msgstr "Todos los tablones"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1832,6 +1893,7 @@ msgstr "Conjunto"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1867,6 +1929,7 @@ msgstr "nunca"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1929,6 +1992,7 @@ msgstr "Tiempo"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1980,6 +2044,7 @@ msgstr "Nuevo Ban"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2064,19 +2129,19 @@ msgstr "Apelar razón"
msgid "There are no reports." msgid "There are no reports."
msgstr "No hay ningún reporte." msgstr "No hay ningún reporte."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "Ese ban no existe o no es para ti." msgstr "Ese ban no existe o no es para ti."
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "No puedes apelar el ban de esa longitud." msgstr "No puedes apelar el ban de esa longitud."
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "No puedes volver a apelar este ban." msgstr "No puedes volver a apelar este ban."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "Ya hay una apelación para este ban." msgstr "Ya hay una apelación para este ban."
@ -2442,3 +2507,13 @@ msgstr ""
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "" msgstr ""
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n" "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -564,3 +564,7 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Volume par défaut" msgstr "Volume par défaut"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,6 +1,7 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
# kaf <admin@cable6.net>, 2014 # kaf <admin@cable6.net>, 2014
# CHAFIK <admin@cable6.net>, 2014 # CHAFIK <admin@cable6.net>, 2014
@ -8,8 +9,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n" "Language-Team: French (France) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/fr_FR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -23,6 +24,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "seconde" msgstr[0] "seconde"
@ -33,6 +35,7 @@ msgstr[1] "secondes"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "minute" msgstr[0] "minute"
@ -43,6 +46,7 @@ msgstr[1] "minutes"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "heure" msgstr[0] "heure"
@ -53,6 +57,7 @@ msgstr[1] "heures"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "jour" msgstr[0] "jour"
@ -63,6 +68,7 @@ msgstr[1] "jours"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "semaine" msgstr[0] "semaine"
@ -73,6 +79,7 @@ msgstr[1] "semaines"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "année" msgstr[0] "année"
@ -80,7 +87,7 @@ msgstr[1] "années"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Banni!" msgstr "Banni!"
@ -91,6 +98,7 @@ msgstr "Banni!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Précédent" msgstr "Précédent"
@ -100,7 +108,8 @@ msgstr "Précédent"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Suivant" msgstr "Suivant"
@ -250,7 +259,7 @@ msgstr "Déplacer le fil sur une autre planche"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Vous avez été rendu muet pour cause de contenu non-original." msgstr "Vous avez été rendu muet pour cause de contenu non-original."
@ -260,20 +269,20 @@ msgstr "Vous avez été rendu muet pour cause de contenu non-original."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Nouveau Fil" msgstr "Nouveau Fil"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Nouvelle réponse" msgstr "Nouvelle réponse"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -297,237 +306,237 @@ msgstr "Rôde plus avant de poster."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Tu ressembles à un bot." msgstr "Tu ressembles à un bot."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Votre navigateur nous a envoyé un référant invalide ou aucun référant." msgstr "Votre navigateur nous a envoyé un référant invalide ou aucun référant."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "Le champ %s comporte trop de caractères." msgstr "Le champ %s comporte trop de caractères."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "Vous avez atteint la limite de caractères pour le texte." msgstr "Vous avez atteint la limite de caractères pour le texte."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "Ce texte est trop court ou vide." msgstr "Ce texte est trop court ou vide."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Vous devez mettre en ligne une image." msgstr "Vous devez mettre en ligne une image."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "Le serveur a échoué la mise en ligne de votre image." msgstr "Le serveur a échoué la mise en ligne de votre image."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Format d'image non-supporté." msgstr "Format d'image non-supporté."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Planche invalide." msgstr "Planche invalide."
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Le fil spécifié n'existe pas." msgstr "Le fil spécifié n'existe pas."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Fil verrouillé." msgstr "Fil verrouillé."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "Le fil a atteint le nombre de réponses maximum." msgstr "Le fil a atteint le nombre de réponses maximum."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "Le fil a atteint le nombre d'images maximum." msgstr "Le fil a atteint le nombre d'images maximum."
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Vous n'avez pas écrit de message." msgstr "Vous n'avez pas écrit de message."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Flood détecté ; Message ignoré." msgstr "Flood détecté ; Message ignoré."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Votre requête semble automatisée ; Message ignoré." msgstr "Votre requête semble automatisée ; Message ignoré."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Ce contenu n'est pas original." msgstr "Ce contenu n'est pas original."
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Ce contenu n'est pas original. Vous avez été muté pour %d secondes." msgstr "Ce contenu n'est pas original. Vous avez été muté pour %d secondes."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Tu as été muté. Interdiction de poster pendant %d secondes." msgstr "Tu as été muté. Interdiction de poster pendant %d secondes."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Votre addresse IP est listée en %s." msgstr "Votre addresse IP est listée en %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Trop de liens ; Flood détecté." msgstr "Trop de liens ; Flood détecté."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Trop de citations ; Message ignoré." msgstr "Trop de citations ; Message ignoré."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Trop de liens cross-planches ; message ignoré." msgstr "Trop de liens cross-planches ; message ignoré."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Vous n'avez rien sélectionné à supprimer." msgstr "Vous n'avez rien sélectionné à supprimer."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Vous n'avez rien sélectionné à reporter." msgstr "Vous n'avez rien sélectionné à reporter."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Vous ne pouvez pas reporter autant de messages à la fois." msgstr "Vous ne pouvez pas reporter autant de messages à la fois."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Mot de passe incorrect." msgstr "Mot de passe incorrect."
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Image invalide." msgstr "Image invalide."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Fichier d'extension inconnu." msgstr "Fichier d'extension inconnu."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Maximum de la taille d'un fichier requis : %maxsz% octets<br>La taille de votre fichier : %filesz% octets" msgstr "Maximum de la taille d'un fichier requis : %maxsz% octets<br>La taille de votre fichier : %filesz% octets"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Ce fichier est trop volumineux." msgstr "Ce fichier est trop volumineux."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Le fichier <a href=\"%s\">a déjà été mis en ligne ici : </a>" msgstr "Le fichier <a href=\"%s\">a déjà été mis en ligne ici : </a>"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Ce fichier <a href=\"%s\">existe déjà</a> dans ce fil." msgstr "Ce fichier <a href=\"%s\">existe déjà</a> dans ce fil."
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Vous devez attendre encore %s avant de supprimer votre message." msgstr "Vous devez attendre encore %s avant de supprimer votre message."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "Exploitation XSS de type MIME (IE) détecté; Message ignoré." msgstr "Exploitation XSS de type MIME (IE) détecté; Message ignoré."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "L'URL de votre vidéo est fausse." msgstr "L'URL de votre vidéo est fausse."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Vous semblez avoir fait une erreur lors de votre vérification." msgstr "Vous semblez avoir fait une erreur lors de votre vérification."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -536,19 +545,19 @@ msgstr "Vous n'êtes autorisé à débannir que %s utilisateur en même temps. V
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Identifiant et/ou mot de passe inválide(s)." msgstr "Identifiant et/ou mot de passe inválide(s)."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Vous n'êtes pas modérateurs." msgstr "Vous n'êtes pas modérateurs."
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -556,71 +565,71 @@ msgstr "Identifiant et/ou mot de passe inválide(s). L'identifiant a pu être su
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Cookies inválides ou mal formés." msgstr "Cookies inválides ou mal formés."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Votre navigateur n'a pas envoyé de données lorsqu'il devait le faire." msgstr "Votre navigateur n'a pas envoyé de données lorsqu'il devait le faire."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Le champ %s est obligatoire." msgstr "Le champ %s est obligatoire."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "Le champ %s est invalide." msgstr "Le champ %s est invalide."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Il existe déjà une planche %s." msgstr "Il existe déjà une planche %s."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Vous n'avez pas la permission de le faire." msgstr "Vous n'avez pas la permission de le faire."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Ce message n'existe pas." msgstr "Ce message n'existe pas."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Page introuvable." msgstr "Page introuvable."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Le modo <a href=\"?/users/%d\"> existe déjà : </a>" msgstr "Le modo <a href=\"?/users/%d\"> existe déjà : </a>"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Ce thème n'existe pas." msgstr "Ce thème n'existe pas."
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Le Token de securité est invalide. Veuillez retourner à la page précédent et recommencer." msgstr "Le Token de securité est invalide. Veuillez retourner à la page précédent et recommencer."
@ -632,7 +641,7 @@ msgstr "Le Token de securité est invalide. Veuillez retourner à la page préc
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "L'UTILISATEUR A ÉTÉ BANNI POUR CE MESSAGE" msgstr "L'UTILISATEUR A ÉTÉ BANNI POUR CE MESSAGE"
@ -707,6 +716,9 @@ msgstr "Modération"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -879,10 +891,13 @@ msgstr "Supprimer message"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Fichier" msgstr "Fichier"
@ -901,6 +916,7 @@ msgstr "Fichier"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -908,6 +924,7 @@ msgstr "Fichier"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Mot de passe" msgstr "Mot de passe"
@ -952,6 +969,11 @@ msgstr "Mot de passe"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1240,22 +1262,28 @@ msgid "Verification"
msgstr "Vérification" msgstr "Vérification"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "Ou URL" msgstr "Ou URL"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Insérer" msgstr "Insérer"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Drapeaux" msgstr "Drapeaux"
@ -1281,11 +1309,15 @@ msgstr "Drapeaux"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Épinglé" msgstr "Épinglé"
@ -1311,11 +1343,15 @@ msgstr "Épinglé"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Verrouiller" msgstr "Verrouiller"
@ -1341,21 +1377,27 @@ msgstr "Verrouiller"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "HTML Brut" msgstr "HTML Brut"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Pour supprimer le fichier)" msgstr "(Pour supprimer le fichier)"
@ -1364,21 +1406,22 @@ msgid "Post search is disabled"
msgstr "La recherche de message est désactivé" msgstr "La recherche de message est désactivé"
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Merci de patienter un moment avant d'effectuer une nouvelle recherche." msgstr "Merci de patienter un moment avant d'effectuer une nouvelle recherche."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Requête trop large." msgstr "Requête trop large."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "%d résultat en" msgstr[0] "%d résultat en"
msgstr[1] "%d résultats en" msgstr[1] "%d résultats en"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Aucun résultat." msgstr "Aucun résultat."
@ -1414,12 +1457,15 @@ msgstr "Aucun résultat."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Rechercher" msgstr "Rechercher"
@ -1446,6 +1492,7 @@ msgstr "Débogue: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1622,6 +1669,11 @@ msgstr "Poster une nouvelle"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1651,6 +1703,8 @@ msgstr "Staff"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1699,6 +1753,7 @@ msgstr "Nouvelle note"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1763,6 +1818,11 @@ msgstr "Pas de justification"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1807,6 +1867,7 @@ msgstr "Toutes les planches"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1834,6 +1895,7 @@ msgstr "Configurer"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1869,6 +1931,7 @@ msgstr "jamais"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1931,6 +1994,7 @@ msgstr ""
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1982,6 +2046,7 @@ msgstr "Nouveau ban"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2066,19 +2131,19 @@ msgstr "Raison de la contestation"
msgid "There are no reports." msgid "There are no reports."
msgstr "Il n'y a pas de reports." msgstr "Il n'y a pas de reports."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "Ce ban n'existe pas ou n'est pas pour vous." msgstr "Ce ban n'existe pas ou n'est pas pour vous."
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "Vous ne pouvez pas contester un ban de cette durée." msgstr "Vous ne pouvez pas contester un ban de cette durée."
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "Vous ne pouvez pas contester à nouveau ce ban." msgstr "Vous ne pouvez pas contester à nouveau ce ban."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "Il y a déjà une contestation en attente pour ce ban." msgstr "Il y a déjà une contestation en attente pour ce ban."
@ -2444,3 +2509,13 @@ msgstr "Supprimer l'utilisateur"
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "Voir plus de log pour cet utilisateur." msgstr "Voir plus de log pour cet utilisateur."
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -1 +1 @@
l10n = {"Style: ":"St\u00edlus:","File":"F\u00e1jl","hide":"elrejt","show":"mutat","Show locked threads":"Mutassa a lez\u00e1rt sz\u00e1lakat","Hide locked threads":"Rejtse el a lez\u00e1rt sz\u00e1lakat","URL":"URL","Select":"Kiv\u00e1laszt","Remote":"T\u00e1vir\u00e1ny\u00edt","Embed":"Be\u00e1gyaz","Oekaki":"Rajzod","hidden":"rejtett","Show images":"K\u00e9pek mutat\u00e1sa","Hide images":"K\u00e9pek elrejt\u00e9se","Password":"Jelsz\u00f3","Delete file only":"Csak a f\u00e1jlt t\u00f6r\u00f6lje","Delete":"T\u00f6rl\u00e9s","Reason":"Indok","Report":"Jelent","Click reply to view.":"Kattints a v\u00e1laszra a megjelen\u00edt\u00e9shez","Click to expand":"Kattints a nagyobb m\u00e9rethez","Hide expanded replies":"Rejtse el a nagy m\u00e9ret\u0171 v\u00e1laszokat","Brush size":"Ecsetm\u00e9ret","Set text":"Sz\u00f6veg megad\u00e1sa","Clear":"T\u00f6r\u00f6l","Save":"Ment\u00e9s","Load":"Bet\u00f6lt\u00e9s","Toggle eraser":"Rad\u00edr \u00e1tkapcsol\u00e1sa","Get color":"Sz\u00ednt kiv\u00e1laszt","Fill":"KIt\u00f6lt","Use oekaki instead of file?":"Szeretn\u00e9d a rajzodat haszn\u00e1lni f\u00e1jl helyett?","Edit in oekaki":"A rajzod szerkeszt\u00e9se","Enter some text":"\u00cdrj be sz\u00f6veget","Enter font or leave empty":"Adj meg bet\u0171t\u00edpust, vagy hagyd \u00fcresen","Forced anonymity":"Er\u0151ltetett anonimit\u00e1s","enabled":"enged\u00e9lyezett","disabled":"tiltott","Sun":"Va","Mon":"H\u00e9","Tue":"Ke","Wed":"Sze","Thu":"Cs\u00fc","Fri":"P\u00e9","Sat":"Szo","Catalog":"Katal\u00f3gus","Submit":"Elk\u00fcld","Quick reply":"Gyors v\u00e1lasz","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Hozz\u00e1sz\u00f3l\u00e1s m\u00f3dja: V\u00e1lasz a <small>&gt;&gt;{0}<\/small>","Return":"Vissza","Expand all images":"\u00d6sszes k\u00e9p nagy m\u00e9ret\u0171re","Hello!":"Szia!","{0} users":"(0) felhaszn\u00e1l\u00f3","(hide threads from this board)":"(sz\u00e1lak elrejt\u00e9se err\u0151l a t\u00e1bl\u00e1r\u00f3l)","(show threads from this board)":"(sz\u00e1lak mutat\u00e1sa err\u0151l a t\u00e1bl\u00e1r\u00f3l)","No more threads to display":"Nincs t\u00f6bb megjelen\u00edtend\u0151 sz\u00e1l","Loading...":"Bet\u00f6lt\u00e9s...","Save as original filename":"Ment\u00e9s eredeti f\u00e1jln\u00e9vvel","Reported post(s).":"Jelentett hozz\u00e1sz\u00f3l\u00e1s(ok).","An unknown error occured!":"Ismeretlen hiba t\u00f6rt\u00e9nt!","Something went wrong... An unknown error occured!":"V\u00e9g\u00e9rv\u00e9nyesen... Valami elveszett!","Working...":"Feldolgoz\u00e1s...","Posting... (#%)":"K\u00fcld\u00e9s... (#%)","Posted...":"Elk\u00fcldve...","An unknown error occured when posting!":"Ismeretlen hiba t\u00f6rt\u00e9nt k\u00fcld\u00e9s k\u00f6zben!","Posting...":"K\u00fcld\u00e9s...","Upload URL":"URL Felt\u00f6lt\u00e9se","Spoiler Image":"Spoiler K\u00e9p","Comment":"Komment","Quick Reply":"Gyors v\u00e1lasz","Stop watching this thread":"Sz\u00e1l figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this thread":"Figyelje ezt a sz\u00e1lat","Unpin this board":"T\u00e1bla kiemel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Pin this board":"T\u00e1bla kiemel\u00e9se","Stop watching this board":"T\u00e1bla figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this board":"Figyelje ezt a t\u00e1bl\u00e1t","Click on any image on this site to load it into oekaki applet":"Kattints a k\u00edv\u00e1nt k\u00e9pre ezen az oldalon a rajzprogramba bet\u00f6lt\u00e9shez","Sunday":"Vas\u00e1rnap","Monday":"H\u00e9tf\u0151","Tuesday":"Kedd","Wednesday":"Szerda","Thursday":"Cs\u00fct\u00f6rt\u00f6k","Friday":"P\u00e9ntek","Saturday":"Szombat","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"M\u00e1rcius","April":"\u00c1prilis","May":"M\u00e1jus","June":"J\u00fanius","July":"J\u00falius","August":"Augusztus","September":"Szeptember","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"M\u00e1r","Apr":"\u00c1pr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Szep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"D\u00e9lel\u0151tt","PM":"D\u00e9lut\u00e1n","am":"d\u00e9lel\u0151tt","pm":"d\u00e9lut\u00e1n","Your browser does not support HTML5 video.":"A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a HTML5 vide\u00f3t.","[play once]":"[lej\u00e1tsz\u00e1s egyszer]","[loop]":"[ism\u00e9tl\u00e9s]","WebM Settings":"WebM be\u00e1ll\u00edt\u00e1sok","Expand videos inline":"Vide\u00f3k kinagy\u00edt\u00e1sa bel\u00fcl","Play videos on hover":"Vide\u00f3k lebeg\u0151 lej\u00e1tsz\u00e1sa ","Default volume":"Alap hanger\u0151"}; l10n = {"Style: ":"St\u00edlus:","File":"F\u00e1jl","hide":"elrejt","show":"mutat","Show locked threads":"Mutassa a lez\u00e1rt sz\u00e1lakat","Hide locked threads":"Rejtse el a lez\u00e1rt sz\u00e1lakat","URL":"URL","Select":"Kiv\u00e1laszt","Remote":"K\u00fcls\u0151 link","Embed":"Be\u00e1gyaz","Oekaki":"Saj\u00e1t rajz","hidden":"rejtett","Show images":"Mutassa a k\u00e9peket","Hide images":"Rejtse el a k\u00e9peket","Password":"Jelsz\u00f3","Delete file only":"Csak a f\u00e1jlt t\u00f6r\u00f6lje","Delete":"T\u00f6rl\u00e9s","Reason":"Ok","Report":"Jelent","Click reply to view.":"Kattints a v\u00e1laszra a megjelen\u00edt\u00e9shez","Click to expand":"Kattints a nagyobb m\u00e9rethez","Hide expanded replies":"Rejtse el a nagy m\u00e9ret\u0171 v\u00e1laszokat","Brush size":"Ecsetm\u00e9ret","Set text":"Sz\u00f6veg megad\u00e1sa","Clear":"T\u00f6r\u00f6l","Save":"Ment\u00e9s","Load":"Bet\u00f6lt\u00e9s","Toggle eraser":"Rad\u00edrt kapcsol","Get color":"Sz\u00ednt kiv\u00e1laszt","Fill":"KIt\u00f6lt","Use oekaki instead of file?":"Szeretn\u00e9d a rajzodat haszn\u00e1lni f\u00e1jl helyett?","Edit in oekaki":"A rajzod szerkeszt\u00e9se","Enter some text":"\u00cdrj be sz\u00f6veget","Enter font or leave empty":"Adj meg bet\u0171t\u00edpust, vagy hagyd \u00fcresen","Forced anonymity":"Er\u0151ltetett anonimit\u00e1s","enabled":"enged\u00e9lyezett","disabled":"tiltott","Sun":"Va","Mon":"H\u00e9","Tue":"Ke","Wed":"Sze","Thu":"Cs\u00fc","Fri":"P\u00e9","Sat":"Szo","Catalog":"Katal\u00f3gus","Submit":"Elk\u00fcld","Quick reply":"Gyors v\u00e1lasz","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Hozz\u00e1sz\u00f3l\u00e1s m\u00f3dja: V\u00e1lasz erre: <small>&gt;&gt;{0}<\/small>","Return":"Vissza","Expand all images":"\u00d6sszes k\u00e9p nagy m\u00e9ret\u0171re","Hello!":"Szia!","{0} users":"(0) felhaszn\u00e1l\u00f3","(hide threads from this board)":"(sz\u00e1lak elrejt\u00e9se err\u0151l a t\u00e1bl\u00e1r\u00f3l)","(show threads from this board)":"(sz\u00e1lak mutat\u00e1sa err\u0151l a t\u00e1bl\u00e1r\u00f3l)","No more threads to display":"Nincs t\u00f6bb megjelen\u00edtend\u0151 sz\u00e1l","Loading...":"Bet\u00f6lt\u00e9s...","Save as original filename":"Ment\u00e9s eredeti f\u00e1jln\u00e9vvel","Reported post(s).":"Jelentett hozz\u00e1sz\u00f3l\u00e1s(ok).","An unknown error occured!":"Ismeretlen hiba t\u00f6rt\u00e9nt!","Something went wrong... An unknown error occured!":"V\u00e9g\u00e9rv\u00e9nyesen... Valami elveszett!","Working...":"Feldolgoz\u00e1s...","Posting... (#%)":"K\u00fcld\u00e9s... (#%)","Posted...":"Elk\u00fcldve...","An unknown error occured when posting!":"Ismeretlen hiba t\u00f6rt\u00e9nt k\u00fcld\u00e9s k\u00f6zben!","Posting...":"K\u00fcld\u00e9s...","Upload URL":"URL Felt\u00f6lt\u00e9se","Spoiler Image":"Spoiler K\u00e9p","Comment":"Hozz\u00e1sz\u00f3l\u00e1s","Quick Reply":"Gyors v\u00e1lasz","Stop watching this thread":"Sz\u00e1l figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this thread":"Figyelje ezt a sz\u00e1lat","Unpin this board":"T\u00e1bla kiemel\u00e9s megsz\u00fcntet\u00e9se","Pin this board":"Emelje ki a t\u00e1bl\u00e1t","Stop watching this board":"T\u00e1bla figyel\u00e9s\u00e9nek megsz\u00fcntet\u00e9se","Watch this board":"Figyelje ezt a t\u00e1bl\u00e1t","Click on any image on this site to load it into oekaki applet":"Kattints a k\u00edv\u00e1nt k\u00e9pre ezen az oldalon a rajzprogramba bet\u00f6lt\u00e9shez","Sunday":"Vas\u00e1rnap","Monday":"H\u00e9tf\u0151","Tuesday":"Kedd","Wednesday":"Szerda","Thursday":"Cs\u00fct\u00f6rt\u00f6k","Friday":"P\u00e9ntek","Saturday":"Szombat","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"M\u00e1rcius","April":"\u00c1prilis","May":"M\u00e1jus","June":"J\u00fanius","July":"J\u00falius","August":"Augusztus","September":"Szeptember","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"M\u00e1r","Apr":"\u00c1pr","Jun":"Jun","Jul":"Jul","Aug":"Aug","Sep":"Szep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"D\u00e9lel\u0151tt","PM":"D\u00e9lut\u00e1n","am":"d\u00e9lel\u0151tt","pm":"d\u00e9lut\u00e1n","Your browser does not support HTML5 video.":"A b\u00f6ng\u00e9sz\u0151d nem t\u00e1mogatja a HTML5 vide\u00f3t.","[play once]":"[lej\u00e1tsz\u00e1s egyszer]","[loop]":"[ism\u00e9tl\u00e9s]","WebM Settings":"WebM be\u00e1ll\u00edt\u00e1sok","Expand videos inline":"Vide\u00f3k kinagy\u00edt\u00e1sa sz\u00e1lon bel\u00fcl","Play videos on hover":"Vide\u00f3k lej\u00e1tsz\u00e1sa ha az eg\u00e9rmutat\u00f3 f\u00f6l\u00e9j\u00fck \u00e9r","Default volume":"Alap hanger\u0151","Tree view":"Fa n\u00e9zet"};

View File

@ -4,13 +4,14 @@
# #
# Translators: # Translators:
# limbobarrage <ijynyjdl@grr.la>, 2014 # limbobarrage <ijynyjdl@grr.la>, 2014
# cicus <mercurio@index.hu>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-20 15:00+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: cicus <mercurio@index.hu>\n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -65,7 +66,7 @@ msgstr "Kiválaszt"
#: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63 #: ../../../../js/upload-selection.js:53 ../../../../js/upload-selection.js:63
msgid "Remote" msgid "Remote"
msgstr "Távirányít" msgstr "Külső link"
#: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66 #: ../../../../js/upload-selection.js:56 ../../../../js/upload-selection.js:66
msgid "Embed" msgid "Embed"
@ -73,7 +74,7 @@ msgstr "Beágyaz"
#: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69 #: ../../../../js/upload-selection.js:59 ../../../../js/upload-selection.js:69
msgid "Oekaki" msgid "Oekaki"
msgstr "Rajzod" msgstr "Saját rajz"
#: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42 #: ../../../../js/toggle-images.js:41 ../../../../js/toggle-images.js:42
msgid "hidden" msgid "hidden"
@ -82,12 +83,12 @@ msgstr "rejtett"
#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
msgid "Show images" msgid "Show images"
msgstr "Képek mutatása" msgstr "Mutassa a képeket"
#: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70 #: ../../../../js/toggle-images.js:57 ../../../../js/toggle-images.js:70
#: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71 #: ../../../../js/toggle-images.js:58 ../../../../js/toggle-images.js:71
msgid "Hide images" msgid "Hide images"
msgstr "Képek elrejtése" msgstr "Rejtse el a képeket"
#: ../../../../js/quick-post-controls.js:27 #: ../../../../js/quick-post-controls.js:27
#: ../../../../js/quick-post-controls.js:29 #: ../../../../js/quick-post-controls.js:29
@ -107,7 +108,7 @@ msgstr "Törlés"
#: ../../../../js/quick-post-controls.js:35 #: ../../../../js/quick-post-controls.js:35
#: ../../../../js/quick-post-controls.js:37 #: ../../../../js/quick-post-controls.js:37
msgid "Reason" msgid "Reason"
msgstr "Indok" msgstr "Ok"
#: ../../../../js/quick-post-controls.js:37 #: ../../../../js/quick-post-controls.js:37
#: ../../../../js/quick-post-controls.js:39 #: ../../../../js/quick-post-controls.js:39
@ -148,7 +149,7 @@ msgstr "Betöltés"
#: ../../../../js/oekaki.js:11 #: ../../../../js/oekaki.js:11
msgid "Toggle eraser" msgid "Toggle eraser"
msgstr "Radír átkapcsolása" msgstr "Radírt kapcsol"
#: ../../../../js/oekaki.js:11 #: ../../../../js/oekaki.js:11
msgid "Get color" msgid "Get color"
@ -249,7 +250,7 @@ msgstr "Gyors válasz"
#: ../../../../js/quick-reply-old.js:35 #: ../../../../js/quick-reply-old.js:35
#, python-brace-format #, python-brace-format
msgid "Posting mode: Replying to <small>&gt;&gt;{0}</small>" msgid "Posting mode: Replying to <small>&gt;&gt;{0}</small>"
msgstr "Hozzászólás módja: Válasz a <small>&gt;&gt;{0}</small>" msgstr "Hozzászólás módja: Válasz erre: <small>&gt;&gt;{0}</small>"
#: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33 #: ../../../../js/quick-reply.js:33 ../../../../js/quick-reply-old.js:33
#: ../../../../js/quick-reply-old.js:35 #: ../../../../js/quick-reply-old.js:35
@ -345,7 +346,7 @@ msgstr "Spoiler Kép"
#: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278 #: ../../../../js/quick-reply.js:277 ../../../../js/quick-reply.js:278
#: ../../../../js/quick-reply.js:279 #: ../../../../js/quick-reply.js:279
msgid "Comment" msgid "Comment"
msgstr "Komment" msgstr "Hozzászólás"
#: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406 #: ../../../../js/quick-reply.js:285 ../../../../js/quick-reply.js:406
#: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407 #: ../../../../js/quick-reply.js:286 ../../../../js/quick-reply.js:407
@ -371,7 +372,7 @@ msgstr "Figyelje ezt a szálat"
#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
#: ../../../../js/watch.js:350 #: ../../../../js/watch.js:350
msgid "Unpin this board" msgid "Unpin this board"
msgstr "Tábla kiemelésének megszüntetése" msgstr "Tábla kiemelés megszüntetése"
#: ../../../../js/watch.js:260 ../../../../js/watch.js:261 #: ../../../../js/watch.js:260 ../../../../js/watch.js:261
#: ../../../../js/watch.js:269 ../../../../js/watch.js:299 #: ../../../../js/watch.js:269 ../../../../js/watch.js:299
@ -379,7 +380,7 @@ msgstr "Tábla kiemelésének megszüntetése"
#: ../../../../js/watch.js:341 ../../../../js/watch.js:342 #: ../../../../js/watch.js:341 ../../../../js/watch.js:342
#: ../../../../js/watch.js:350 #: ../../../../js/watch.js:350
msgid "Pin this board" msgid "Pin this board"
msgstr "Tábla kiemelése" msgstr "Emelje ki a táblát"
#: ../../../../js/watch.js:262 ../../../../js/watch.js:267 #: ../../../../js/watch.js:262 ../../../../js/watch.js:267
#: ../../../../js/watch.js:268 ../../../../js/watch.js:301 #: ../../../../js/watch.js:268 ../../../../js/watch.js:301
@ -555,12 +556,16 @@ msgstr "WebM beállítások"
#: ../../../../js/webm-settings.js:44 #: ../../../../js/webm-settings.js:44
msgid "Expand videos inline" msgid "Expand videos inline"
msgstr "Videók kinagyítása belül" msgstr "Videók kinagyítása szálon belül"
#: ../../../../js/webm-settings.js:45 #: ../../../../js/webm-settings.js:45
msgid "Play videos on hover" msgid "Play videos on hover"
msgstr "Videók lebegő lejátszása " msgstr "Videók lejátszása ha az egérmutató föléjük ér"
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Alap hangerő" msgstr "Alap hangerő"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr "Fa nézet"

View File

@ -1,6 +1,7 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
# limbobarrage <ijynyjdl@grr.la>, 2014 # limbobarrage <ijynyjdl@grr.la>, 2014
# cicus <mercurio@index.hu>, 2014 # cicus <mercurio@index.hu>, 2014
@ -8,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-19 10:26+0000\n" "PO-Revision-Date: 2014-04-20 19:50+0000\n"
"Last-Translator: limbobarrage <ijynyjdl@grr.la>\n" "Last-Translator: cicus <mercurio@index.hu>\n"
"Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n" "Language-Team: Hungarian (Hungary) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/hu_HU/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -23,6 +24,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "másodperc" msgstr[0] "másodperc"
@ -33,6 +35,7 @@ msgstr[1] "másodperc"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "perc" msgstr[0] "perc"
@ -43,6 +46,7 @@ msgstr[1] "perc"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "óra" msgstr[0] "óra"
@ -53,6 +57,7 @@ msgstr[1] "óra"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "nap" msgstr[0] "nap"
@ -63,6 +68,7 @@ msgstr[1] "nap"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "hét" msgstr[0] "hét"
@ -73,6 +79,7 @@ msgstr[1] "hét"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "év" msgstr[0] "év"
@ -80,7 +87,7 @@ msgstr[1] "év"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Bannolva!" msgstr "Bannolva!"
@ -91,6 +98,7 @@ msgstr "Bannolva!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Előző" msgstr "Előző"
@ -100,7 +108,8 @@ msgstr "Előző"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Következő" msgstr "Következő"
@ -124,7 +133,7 @@ msgstr "Bejelentkezés"
#: ../../../../inc/display.php:244 #: ../../../../inc/display.php:244
#, php-format #, php-format
msgid "Post too long. Click <a href=\"%s\">here</a> to view the full text." msgid "Post too long. Click <a href=\"%s\">here</a> to view the full text."
msgstr "Hozzászólás túl hosszú. Kattints <a href=\"%s\">ide</a> hogy lásd a teljes szöveget." msgstr "A hozzászólás túl hosszú. Kattints <a href=\"%s\">ide</a> hogy lásd a teljes szöveget."
#: ../../../../inc/display.php:368 ../../../../inc/display.php:473 #: ../../../../inc/display.php:368 ../../../../inc/display.php:473
#: ../../../../inc/display.php:385 ../../../../inc/display.php:495 #: ../../../../inc/display.php:385 ../../../../inc/display.php:495
@ -154,7 +163,7 @@ msgstr "Biztos, hogy törölni akarod ezt a fájlt?"
#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507
#: ../../../../inc/display.php:400 ../../../../inc/display.php:510 #: ../../../../inc/display.php:400 ../../../../inc/display.php:510
msgid "Spoiler File" msgid "Spoiler File"
msgstr "Spoiler fájl" msgstr "Fájl spoilerezése"
#: ../../../../inc/display.php:380 ../../../../inc/display.php:485 #: ../../../../inc/display.php:380 ../../../../inc/display.php:485
#: ../../../../inc/display.php:397 ../../../../inc/display.php:507 #: ../../../../inc/display.php:397 ../../../../inc/display.php:507
@ -213,7 +222,7 @@ msgstr "Biztos, hogy törölni akarod az összes hozzászólást erről az IP-r
#: ../../../../inc/display.php:490 ../../../../inc/display.php:512 #: ../../../../inc/display.php:490 ../../../../inc/display.php:512
#: ../../../../inc/display.php:515 #: ../../../../inc/display.php:515
msgid "Make thread not sticky" msgid "Make thread not sticky"
msgstr "Nem ragacsolt szál készítése" msgstr "Nem ragacsolt szál indítása"
#: ../../../../inc/display.php:492 ../../../../inc/display.php:514 #: ../../../../inc/display.php:492 ../../../../inc/display.php:514
#: ../../../../inc/display.php:517 #: ../../../../inc/display.php:517
@ -233,24 +242,24 @@ msgstr "A szál nem bumpolható"
#: ../../../../inc/display.php:503 ../../../../inc/display.php:525 #: ../../../../inc/display.php:503 ../../../../inc/display.php:525
#: ../../../../inc/display.php:528 #: ../../../../inc/display.php:528
msgid "Unlock thread" msgid "Unlock thread"
msgstr "Szálat felnyit" msgstr "Szál feloldása"
#: ../../../../inc/display.php:505 ../../../../inc/display.php:527 #: ../../../../inc/display.php:505 ../../../../inc/display.php:527
#: ../../../../inc/display.php:530 #: ../../../../inc/display.php:530
msgid "Lock thread" msgid "Lock thread"
msgstr "Szálat lezár" msgstr "Szál lezárása"
#: ../../../../inc/display.php:508 ../../../../inc/display.php:530 #: ../../../../inc/display.php:508 ../../../../inc/display.php:530
#: ../../../../inc/display.php:533 #: ../../../../inc/display.php:533
msgid "Move thread to another board" msgid "Move thread to another board"
msgstr "Szálat áthelyez másik táblára" msgstr "Szál áthelyezése másik táblára"
#. How long before Tinyboard forgets about a mute? #. How long before Tinyboard forgets about a mute?
#. 2 weeks #. 2 weeks
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Némítva lettél nem eredeti tartalom miatt." msgstr "Némítva lettél nem eredeti tartalom miatt."
@ -260,20 +269,20 @@ msgstr "Némítva lettél nem eredeti tartalom miatt."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Új Szál" msgstr "Új Szál"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Új Hozzászólás" msgstr "Új Hozzászólás"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -285,7 +294,7 @@ msgstr "Minden védjegy, védett tartalom, hozzászólás és kép ezen az oldal
#. Error messages #. Error messages
#: ../../../../inc/config.php:866 #: ../../../../inc/config.php:866
msgid "Lurk some more before posting." msgid "Lurk some more before posting."
msgstr "Ólálkodj többet mielőtt beleszólsz." msgstr "Leselkedj többet mielőtt beleszólsz."
#. * ==================== #. * ====================
#. * Error messages #. * Error messages
@ -297,237 +306,237 @@ msgstr "Ólálkodj többet mielőtt beleszólsz."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Úgy látszik nem vagy ember." msgstr "Úgy látszik nem vagy ember."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "A böngésződ nem, vagy érvénytelen HTTP hivatkozást küldött." msgstr "A böngésződ nem, vagy érvénytelen HTTP hivatkozást küldött."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "A %s mező túl rövid lett." msgstr "A %s mező túl rövid lett."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "A body túl hosszú lett." msgstr "A body túl hosszú lett."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "A body túl rövid lett, vagy üres." msgstr "A body túl rövid lett, vagy üres."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Fel kell töltened egy képet." msgstr "Fel kell töltened egy képet."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "A szerver képtelen a feltöltésed kezelni." msgstr "A szerver képtelen kezelni a feltöltésed."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Nem támogatott képformátum." msgstr "Nem támogatott képformátum."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Érvénytelen tábla!" msgstr "Érvénytelen tábla!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "A megadott szál nem létezik." msgstr "A megadott szál nem létezik."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Szál lezárva. Egyelőre nem válaszolhatsz." msgstr "Szál lezárva. Egyelőre nem válaszolhatsz."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "A szál elérte a maximális hozzászólások számát." msgstr "A szál elérte a maximális hozzászólások számát."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "A szál elérte a maximális képfeltöltések számát." msgstr "A szál elérte a maximális képfeltöltések számát."
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Nem küldtél semmit." msgstr "Nem küldtél semmit."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Flood érzékelve. Üzenet elvetve." msgstr "Flood érzékelve. Üzenet elvetve."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Az küldeményed automatizáltnak tűnik. Üzenet elvetve." msgstr "Az küldeményed automatizáltnak tűnik. Üzenet elvetve."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Nem eredeti tartalom!" msgstr "Nem eredeti tartalom!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Nem eredeti tartalom! El lettél némítva %d másodpercre." msgstr "Nem eredeti tartalom! El lettél némítva %d másodpercre."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Némítva lettél! Lejár: %d másodperc múlva." msgstr "Némítva lettél! Lejár: %d másodperc múlva."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Az IP címed listázva van itt: %s." msgstr "Az IP címed listázva van itt: %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Túl sok hivatkozás; flood érzékelve." msgstr "Túl sok hivatkozás; flood érzékelve."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Túl sok idézés; üzenet elvetve." msgstr "Túl sok idézés; üzenet elvetve."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Túl sok tábla keresztlinkelés; üzenet elvetve." msgstr "Túl sok tábla keresztlinkelés; üzenet elvetve."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Nem választottál ki semmit törlésre." msgstr "Nem választottál ki semmit törlésre."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Nem választottál ki semmit jelentésre." msgstr "Nem választottál ki semmit jelentésre."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Nem jelenthetsz ilyen sok hozzászólást egyszerre." msgstr "Nem jelenthetsz ilyen sok hozzászólást egyszerre."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Rossz jelszó..." msgstr "Rossz jelszó..."
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Érvénytelen kép." msgstr "Érvénytelen kép."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Ismeretlen fájlkiterjesztés." msgstr "Ismeretlen fájlkiterjesztés."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Maximális fájlméret: %maxsz% Byte<br>A fájlod mérete: %filesz% Byte" msgstr "Maximális fájlméret: %maxsz% Byte<br>A fájlod mérete: %filesz% Byte"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "A fájl túl nagy." msgstr "A fájl túl nagy."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "A fájl <a href=\"%s\">már fel lett töltve egyszer</a>!" msgstr "A fájl <a href=\"%s\">már fel lett töltve egyszer</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "A fájl <a href=\"%s\">már fel lett töltve egyszer</a> ebben a szálban!" msgstr "A fájl <a href=\"%s\">már fel lett töltve egyszer</a> ebben a szálban!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Várnod kell %s másodpercet mielőtt törlöd." msgstr "Várnod kell %s másodpercet mielőtt törlöd."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "MIME típus találat XSS exploit (IE) érzékelve; üzenet elvetve." msgstr "MIME típus találat XSS exploit (IE) érzékelve; üzenet elvetve."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "A videó URL-je amelyet beilleszteni próbáltál, nem értelmezhető." msgstr "A videó URL-je amelyet beilleszteni próbáltál, nem értelmezhető."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Úgy látszik elírtad az ellenőrzést." msgstr "Úgy látszik elírtad az ellenőrzést."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -536,19 +545,19 @@ msgstr "Csak %s felhasználó kitiltását vonhatod vissza egyszerre. Te %u felh
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Érvénytelen felhasználónév és/vagy jelszó." msgstr "Érvénytelen felhasználónév és/vagy jelszó."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Nem vagy moderátor..." msgstr "Nem vagy moderátor..."
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -556,71 +565,71 @@ msgstr "Érvénytelen felhasználónév és/vagy jelszó. A fiókod talán tör
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Érvénytelen vagy hibás sütik." msgstr "Érvénytelen vagy hibás sütik."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "A böngésződ nem küldött bemenetet amikor kellett volna." msgstr "A böngésződ nem küldött bemenetet amikor kellett volna."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "A %s mező szükséges." msgstr "A %s mező szükséges."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "A %s mező érvénytelen." msgstr "A %s mező érvénytelen."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Már létezik %s tábla." msgstr "Már létezik ez a tábla: %s "
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Ehhez a funkcióhoz nincs jogosultságod." msgstr "Ehhez a funkcióhoz nincs jogosultságod."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "A hozzászólás nem létezik." msgstr "A hozzászólás nem létezik."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Oldal nem található." msgstr "Az oldal nem található."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Ez a moderátor <a href=\"?/users/%d\">már létezik</a>!" msgstr "Ez a moderátor <a href=\"?/users/%d\">már létezik</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Ez a téma már létezik!" msgstr "Nincs ilyen téma!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Érvénytelen biztonsági azonosító! Lépj vissza és próbáld újra." msgstr "Érvénytelen biztonsági azonosító! Lépj vissza és próbáld újra."
@ -632,7 +641,7 @@ msgstr "Érvénytelen biztonsági azonosító! Lépj vissza és próbáld újra.
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "BÁNTOTTUK" msgstr "BÁNTOTTUK"
@ -707,6 +716,9 @@ msgstr "Moderációs napló"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -838,7 +850,7 @@ msgstr "Kitiltva?"
#: ../../../../banned.php:5 #: ../../../../banned.php:5
msgid "You are not banned." msgid "You are not banned."
msgstr "Ki vagy tiltva." msgstr "Nem vagy kitiltva."
#. line 6 #. line 6
#: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41 #: ../../../../templates/cache/3c/80/0ebbee302f4fad8d0d7f13e62db5.php:41
@ -856,7 +868,7 @@ msgstr "Hiba részletei"
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:22
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:25
msgid "Delete Post" msgid "Delete Post"
msgstr "Hozzászólást Töröl" msgstr "Hozzászólás Törölése"
#. line 3 #. line 3
#. line 84 #. line 84
@ -879,10 +891,13 @@ msgstr "Hozzászólást Töröl"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Fájl" msgstr "Fájl"
@ -901,6 +916,7 @@ msgstr "Fájl"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -908,6 +924,7 @@ msgstr "Fájl"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Jelszó" msgstr "Jelszó"
@ -952,6 +969,11 @@ msgstr "Jelszó"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1168,7 +1190,7 @@ msgstr "Név"
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:91
#: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47 #: ../../../../templates/cache/d1/2d/e4ea563232b42da227befa9cf03fef935e472b1268221e2399d8d6af1cd5.php:47
msgid "Email" msgid "Email"
msgstr "Drótposta" msgstr "Email"
#. line 23 #. line 23
#. line 46 #. line 46
@ -1240,24 +1262,30 @@ msgid "Verification"
msgstr "Megerősítés" msgstr "Megerősítés"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "Vagy URL" msgstr "Vagy URL"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Beilleszt" msgstr "Beágyaz"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Zászlók" msgstr "Jelölések"
#. line 116 #. line 116
#. line 117 #. line 117
@ -1281,11 +1309,15 @@ msgstr "Zászlók"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Ragacs" msgstr "Ragacs"
@ -1311,13 +1343,17 @@ msgstr "Ragacs"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Zár" msgstr "Lezár"
#. line 124 #. line 124
#. line 125 #. line 125
@ -1341,21 +1377,27 @@ msgstr "Zár"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "Nyers HTML" msgstr "Nyers HTML"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Fájl törléshez.)" msgstr "(Fájl törléshez.)"
@ -1364,21 +1406,22 @@ msgid "Post search is disabled"
msgstr "Üzenetek közötti keresés kikapcsolva" msgstr "Üzenetek közötti keresés kikapcsolva"
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Légyszíves várj egy kicsit mielőtt újra használnád a keresőt." msgstr "Légy szíves várj egy kicsit mielőtt újra használnád a keresőt."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "A bevitt adat túl széles." msgstr "A bevitt adat túl széles."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "%d találat itt:" msgstr[0] "%d találat itt:"
msgstr[1] "%d találat itt:" msgstr[1] "%d találat itt:"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Nincs megjelenítendő eredmény." msgstr "Nincs megjelenítendő eredmény."
@ -1414,12 +1457,15 @@ msgstr "Nincs megjelenítendő eredmény."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Keres" msgstr "Keres"
@ -1446,6 +1492,7 @@ msgstr "Hibakeresés: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1572,7 +1619,7 @@ msgstr "törölve?"
#. line 33 #. line 33
#: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91 #: ../../../../templates/cache/1a/7f/6eb467b2d978da59cfea2fe64f8898a5fb769be35fbb2ec50691da9a3d52.php:91
msgid "Post news entry" msgid "Post news entry"
msgstr "Küld a hírek bejegyzésbe" msgstr "Küldd a hírek bejegyzésbe"
#. line 24 #. line 24
#. line 63 #. line 63
@ -1622,6 +1669,11 @@ msgstr "Küld a hírek bejegyzésbe"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1651,6 +1703,8 @@ msgstr "Személyzet"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1699,6 +1753,7 @@ msgstr "Új jegyzet"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1763,6 +1818,11 @@ msgstr "nincs indok"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1807,6 +1867,7 @@ msgstr "minden tábla"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1834,6 +1895,7 @@ msgstr "Beállít"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1869,6 +1931,7 @@ msgstr "soha"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1931,6 +1994,7 @@ msgstr "Idő"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1958,7 +2022,7 @@ msgstr "Üzenet"
#. line 46 #. line 46
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:133
msgid "public; attached to post" msgid "public; attached to post"
msgstr "nyilvános: üzenethez csatolva" msgstr "nyilvános; üzenethez csatolva"
#. line 58 #. line 58
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:150
@ -1982,6 +2046,7 @@ msgstr "Új Kitiltás"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2066,19 +2131,19 @@ msgstr "Fellebbezés indoka"
msgid "There are no reports." msgid "There are no reports."
msgstr "Nincsenek jelentések" msgstr "Nincsenek jelentések"
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "A kitiltás nem létezik illetve nem téged érint." msgstr "A kitiltás nem létezik illetve nem téged érint."
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "Nem fellebbezhetsz meg egy ilyen időtartamú kitiltást." msgstr "Nem fellebbezhetsz meg egy ilyen időtartamú kitiltást."
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "Nem fellebbezheted meg ezt a kitiltást többször." msgstr "Nem fellebbezheted meg ezt a kitiltást többször."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "Már van benyújtott fellebbezés a kitiltásra." msgstr "Már van benyújtott fellebbezés a kitiltásra."
@ -2106,11 +2171,11 @@ msgstr "Ki vagy tiltva! ;__;"
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:52
msgid "You were banned from" msgid "You were banned from"
msgstr "Ki lettél tiltva a" msgstr "Ki lettél tiltva innen: "
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:58
msgid "You have been banned from" msgid "You have been banned from"
msgstr "Ki vagy tiltva a" msgstr "Ki vagy tiltva innen:"
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:82
msgid "for the following reason:" msgid "for the following reason:"
@ -2182,13 +2247,13 @@ msgstr "Megfellebbezted a kitiltást"
#. line 103 #. line 103
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:265
msgid "and it was denied. You may not appeal this ban again." msgid "and it was denied. You may not appeal this ban again."
msgstr "és el lett utasítva. Nem fellebbezhetsz többet a ban ellen." msgstr "és el lett utasítva. Nem fellebbezhetsz többet a kitiltás ellen."
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:272
msgid "" msgid ""
"You have submitted the maximum number of ban appeals allowed. You may not " "You have submitted the maximum number of ban appeals allowed. You may not "
"appeal this ban again." "appeal this ban again."
msgstr "A maximálisan engedélyett számú fellebbezést felhasználtad a ban ellen. Többet nem fellebehetsz ellene." msgstr "A maximálisan engedélyett számú fellebbezést felhasználtad a kitiltás ellen. Többet nem fellebehetsz ellene."
#. line 114 #. line 114
#. line 121 #. line 121
@ -2222,7 +2287,7 @@ msgstr "és meg lett tagadva."
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:302
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:323
msgid "You may appeal this ban again. Please enter your reasoning below." msgid "You may appeal this ban again. Please enter your reasoning below."
msgstr "Még fellebbezhetsz a ban ellen. Írd meg az indokot alább!" msgstr "Még fellebbezhetsz a kitiltás ellen. Írd meg az indokot alább!"
#. line 119 #. line 119
#: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310 #: ../../../../templates/cache/b7/ae/f9663c9ca58d1e218de29e04d0fa229f6263f4e68b613ce608bc023897a2.php:310
@ -2367,7 +2432,7 @@ msgstr "Innen"
#. line 34 #. line 34
#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:105
msgid "Delete forever" msgid "Delete forever"
msgstr "Törlés mindig" msgstr "Törlés örökre"
#. line 39 #. line 39
#: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119 #: ../../../../templates/cache/f9/e9/d592e3c89e2f76520cf989aa8359d3d143d8fa4996ff1d97b3be51f87a05.php:119
@ -2377,7 +2442,7 @@ msgstr "Válasz idézettel"
#. line 18 #. line 18
#: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62 #: ../../../../templates/cache/1f/f5/c63468797b4f93a8005563716a720117a6d51a804f2124a4c5158ca78525.php:62
msgid "Send message" msgid "Send message"
msgstr "Üzenetet elküld" msgstr "Üzenet küldése"
#: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25 #: ../../../../templates/cache/ae/30/5b1888bb2e8ab6981af945fea88c1ecb021b0dfa8a068ee7adeb9dd3ee7d.php:25
msgid "There are no themes available." msgid "There are no themes available."
@ -2443,4 +2508,14 @@ msgstr "Felhasználót töröl"
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "Több naplóbejegyzés mutatása a felhasználótól" msgstr "Több naplóbejegyzés mutatása ettől a felhasználótól."
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr "Megjelöl"
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr "Egyik sem"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -564,3 +564,7 @@ msgstr ""
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "" msgstr ""
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,13 +1,14 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/lt_LT/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -21,6 +22,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "" msgstr[0] ""
@ -32,6 +34,7 @@ msgstr[2] ""
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "" msgstr[0] ""
@ -43,6 +46,7 @@ msgstr[2] ""
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "" msgstr[0] ""
@ -54,6 +58,7 @@ msgstr[2] ""
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "" msgstr[0] ""
@ -65,6 +70,7 @@ msgstr[2] ""
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "" msgstr[0] ""
@ -76,6 +82,7 @@ msgstr[2] ""
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "" msgstr[0] ""
@ -84,7 +91,7 @@ msgstr[2] ""
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "" msgstr ""
@ -95,6 +102,7 @@ msgstr ""
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Atgal" msgstr "Atgal"
@ -104,7 +112,8 @@ msgstr "Atgal"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Pirmyn" msgstr "Pirmyn"
@ -254,7 +263,7 @@ msgstr ""
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "" msgstr ""
@ -264,20 +273,20 @@ msgstr ""
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "" msgstr ""
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "" msgstr ""
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -301,237 +310,237 @@ msgstr "Panaršyk ilgiau prieš rašydamas."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Tu atrodai kaip botas." msgstr "Tu atrodai kaip botas."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Tavo naršyklė nusiuntė netinkama arba nėra HTTP referer." msgstr "Tavo naršyklė nusiuntė netinkama arba nėra HTTP referer."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "Laukas %s buvo per ilgas." msgstr "Laukas %s buvo per ilgas."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "Kūnas buvo per ilgas." msgstr "Kūnas buvo per ilgas."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "Kūnas buvo per trumpas arba tuščias." msgstr "Kūnas buvo per trumpas arba tuščias."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Tu privalai įkelti paveiksliuką." msgstr "Tu privalai įkelti paveiksliuką."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "Serveriui nepavyko apdoroti tavo įkėlimo." msgstr "Serveriui nepavyko apdoroti tavo įkėlimo."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Nepalaikomas paveiksliuko formatas." msgstr "Nepalaikomas paveiksliuko formatas."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Neteisinga lenta!" msgstr "Neteisinga lenta!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Nurodyta diskusija neegzistuoja." msgstr "Nurodyta diskusija neegzistuoja."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Diskusija užrakinta. Šiuo metu negali parašyti atsiliepimo." msgstr "Diskusija užrakinta. Šiuo metu negali parašyti atsiliepimo."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "" msgstr ""
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "" msgstr ""
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Tu nesukūrei komentaro." msgstr "Tu nesukūrei komentaro."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Perpildymas aptiktas; komentaras išmestas." msgstr "Perpildymas aptiktas; komentaras išmestas."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Tavo užklausa atrodo automatizuota; komentaras išmestas." msgstr "Tavo užklausa atrodo automatizuota; komentaras išmestas."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Neoriginalus turinys!" msgstr "Neoriginalus turinys!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Neoriginalus turinys! Tu buvai užtildytas %d sekundėms." msgstr "Neoriginalus turinys! Tu buvai užtildytas %d sekundėms."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Tu esi užtildytas! Užtildymas pasibaigs po %d sekundžių." msgstr "Tu esi užtildytas! Užtildymas pasibaigs po %d sekundžių."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Tavo IP adresas yra įtrauktas į %s." msgstr "Tavo IP adresas yra įtrauktas į %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Per daug nuorodų; aptiktas perpildimas." msgstr "Per daug nuorodų; aptiktas perpildimas."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Per daug citatų; komentaras išmestas." msgstr "Per daug citatų; komentaras išmestas."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Per daug tarplentinių nuorodų; komentaras išmestas." msgstr "Per daug tarplentinių nuorodų; komentaras išmestas."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Tu nepasirinkai nieko, ką ištrinti." msgstr "Tu nepasirinkai nieko, ką ištrinti."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Tu nepasirinkai nieko, ką pranešti." msgstr "Tu nepasirinkai nieko, ką pranešti."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Tu negali pranešti tiek komentarų iškart." msgstr "Tu negali pranešti tiek komentarų iškart."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Neteisingas slaptažodis..." msgstr "Neteisingas slaptažodis..."
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Neteisingas paveiksliukas." msgstr "Neteisingas paveiksliukas."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Nežinoma failo plėtinys." msgstr "Nežinoma failo plėtinys."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Maksimalus failo didys: %maxsz% baitai<br>Tavo failo didys: %filesz% baitai" msgstr "Maksimalus failo didys: %maxsz% baitai<br>Tavo failo didys: %filesz% baitai"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Failas buvo per didelis." msgstr "Failas buvo per didelis."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Tas failas <a href=\"%s\">jau egzistuoja</a>!" msgstr "Tas failas <a href=\"%s\">jau egzistuoja</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Tas failas <a href=\"%s\">jau egzistuoja</a> šioje diskusijoje!" msgstr "Tas failas <a href=\"%s\">jau egzistuoja</a> šioje diskusijoje!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Tu turėsi palaukti dar %s prieš ištrindamas šitai." msgstr "Tu turėsi palaukti dar %s prieš ištrindamas šitai."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "MIME tipo detekcija XSS eksploitas (IE) aptiktas; komentaras išmestas." msgstr "MIME tipo detekcija XSS eksploitas (IE) aptiktas; komentaras išmestas."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "Tavo video URL, kurį bandei patalpinti, buvo nesuprastas." msgstr "Tavo video URL, kurį bandei patalpinti, buvo nesuprastas."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Atrodo tu įvedei neteisingą patvirtinimą." msgstr "Atrodo tu įvedei neteisingą patvirtinimą."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -540,19 +549,19 @@ msgstr ""
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Neteisingas slapyvardis ir/ar slaptažodis." msgstr "Neteisingas slapyvardis ir/ar slaptažodis."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Tu nesi moderatorius..." msgstr "Tu nesi moderatorius..."
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -560,71 +569,71 @@ msgstr "Neteisingas slapyvardis ir/ar slaptažodis. Tavo vartotojas buvo ištrin
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Neteisingi/netaip suformuoti slapukai." msgstr "Neteisingi/netaip suformuoti slapukai."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Tavo naršyklė nepateikė įvesties, kai turėjo." msgstr "Tavo naršyklė nepateikė įvesties, kai turėjo."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Laukas %s reikalingas." msgstr "Laukas %s reikalingas."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "Laukas %s buvo neteisingas." msgstr "Laukas %s buvo neteisingas."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Jau egzistuoja %s lenta." msgstr "Jau egzistuoja %s lenta."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Tu neturi teisių tai padaryti." msgstr "Tu neturi teisių tai padaryti."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Tas komentaras neegzistuoja..." msgstr "Tas komentaras neegzistuoja..."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Nerastas puslapis." msgstr "Nerastas puslapis."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Tas moderatorius <a href=\"?/users/%d\">jau egzistuoja</a>!" msgstr "Tas moderatorius <a href=\"?/users/%d\">jau egzistuoja</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Ta tema neegzistuoja!" msgstr "Ta tema neegzistuoja!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl." msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl."
@ -636,7 +645,7 @@ msgstr "Neteisinga apsaugos žymė! Prašome sugrįžti ir bandyti vėl."
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "" msgstr ""
@ -711,6 +720,9 @@ msgstr "Moderacijos žurnalas"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -883,10 +895,13 @@ msgstr "Ištrinti komentarą"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Failas" msgstr "Failas"
@ -905,6 +920,7 @@ msgstr "Failas"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -912,6 +928,7 @@ msgstr "Failas"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Slaptažodis" msgstr "Slaptažodis"
@ -956,6 +973,11 @@ msgstr "Slaptažodis"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1248,22 +1270,28 @@ msgid "Verification"
msgstr "Patvirtinimas" msgstr "Patvirtinimas"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "" msgstr ""
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Įterpti" msgstr "Įterpti"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Vėliavos" msgstr "Vėliavos"
@ -1289,11 +1317,15 @@ msgstr "Vėliavos"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Sticky" msgstr "Sticky"
@ -1319,11 +1351,15 @@ msgstr "Sticky"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Užrakinti" msgstr "Užrakinti"
@ -1349,21 +1385,27 @@ msgstr "Užrakinti"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "Grynas HTML" msgstr "Grynas HTML"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Failų trynimui.)" msgstr "(Failų trynimui.)"
@ -1372,14 +1414,15 @@ msgid "Post search is disabled"
msgstr "" msgstr ""
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "" msgstr ""
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "" msgstr ""
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
@ -1387,7 +1430,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
msgstr[2] "" msgstr[2] ""
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "" msgstr ""
@ -1423,12 +1466,15 @@ msgstr ""
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Ieškoti" msgstr "Ieškoti"
@ -1455,6 +1501,7 @@ msgstr ""
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1631,6 +1678,11 @@ msgstr "Patalpinti naujienų įvęstį"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1660,6 +1712,8 @@ msgstr "Administracija"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1708,6 +1762,7 @@ msgstr "Nauja pastaba"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1772,6 +1827,11 @@ msgstr "jokios priežasties"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1816,6 +1876,7 @@ msgstr "visos lentos"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1843,6 +1904,7 @@ msgstr "Nustatyti"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1878,6 +1940,7 @@ msgstr "niekada"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1940,6 +2003,7 @@ msgstr ""
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1991,6 +2055,7 @@ msgstr "Naujas draudimas"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2075,19 +2140,19 @@ msgstr ""
msgid "There are no reports." msgid "There are no reports."
msgstr "Nėra pranešimų." msgstr "Nėra pranešimų."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "" msgstr ""
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "" msgstr ""
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "" msgstr ""
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "" msgstr ""
@ -2453,3 +2518,13 @@ msgstr ""
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "" msgstr ""
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -1 +1 @@
l10n = {"Style: ":"Styl: ","File":"Plik","hide":"ukryj","show":"poka\u017c","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Sun":"nie","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Catalog":"Katalog","Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Tryb postowania: Odpowied\u017a na <small>&gt;&gt;{0}<\/small>","Return":"Powr\u00f3t","Expand all images":"Rozwi\u0144 wszystkie obrazki","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 oberwowa\u0107 ten board","Watch this board":"Obserwuj ten board","Click on any image on this site to load it into oekaki applet":"Kliknij w jakikolwiek obrazek na tej stronie aby za\u0142adowa\u0107 go do apletu oekaki","Sunday":"Niedziela","Monday":"Poniedzia\u0142ek","Tuesday":"Wtorek","Wednesday":"\u015aroda","Thursday":"Czwartek","Friday":"Pi\u0105tek","Saturday":"Sobota","January":"stycznia","February":"lutego","March":"marca","April":"kwietnia","May":"maj","June":"czerwca","July":"lipca","August":"sierpnia","September":"wrze\u015bnia","October":"pa\u017adziernika","November":"listopada","December":"grudnia","Jan":"sty","Feb":"lut","Mar":"mar","Apr":"kwi","Jun":"cze","Jul":"lip","Aug":"sie","Sep":"wrz","Oct":"pa\u017a","Nov":"lis","Dec":"gru","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Twoja przegl\u0105darka nie obs\u0142uguje wideo HTML5.","[play once]":"[pu\u015b\u0107 raz]","[loop]":"[zap\u0119tl]","WebM Settings":"Ustawienia WebM","Expand videos inline":"Rozwi\u0144 wideo w miejscu","Play videos on hover":"Puszczaj wideo po najechaniu","Default volume":"Domy\u015blna g\u0142o\u015bno\u015b\u0107"}; l10n = {"Style: ":"Styl: ","File":"Plik","hide":"ukryj","show":"poka\u017c","Show locked threads":"Poka\u017c zablokowane tematy","Hide locked threads":"Schowaj zablokowane tematy","URL":"URL","Select":"Wybierz","Remote":"Zdalny","Embed":"Osad\u017a","Oekaki":"Oekaki","hidden":"ukryte","Show images":"Poka\u017c obrazki","Hide images":"Ukryj obrazki","Password":"Has\u0142o","Delete file only":"Usu\u0144 tylko plik","Delete":"Usu\u0144","Reason":"Pow\u00f3d","Report":"Zg\u0142oszenie","Click reply to view.":"Kliknij Odpowied\u017a aby zobaczy\u0107.","Click to expand":"Kliknij aby rozwin\u0105\u0107","Hide expanded replies":"Schowaj rozwini\u0119te odpowiedzi","Brush size":"Rozmiar p\u0119dzla","Set text":"Ustaw tekst","Clear":"Wyczy\u015b\u0107","Save":"Zapisz","Load":"Za\u0142aduj","Toggle eraser":"Prze\u0142\u0105cz gumk\u0119","Get color":"Wybierz kolor","Fill":"Wype\u0142nij","Use oekaki instead of file?":"U\u017cy\u0107 oekaki zamiast pliku?","Edit in oekaki":"Edytuj w oekaki","Enter some text":"Podaj jaki\u015b tekst","Enter font or leave empty":"Podaj czcionk\u0119, b\u0105d\u017a pozostaw puste","Forced anonymity":"Wymuszona anonimowo\u015b\u0107","enabled":"w\u0142\u0105czona","disabled":"wy\u0142\u0105czona","Sun":"nie","Mon":"pon","Tue":"wto","Wed":"\u015bro","Thu":"czw","Fri":"pi\u0105","Sat":"sob","Catalog":"Katalog","Submit":"Wy\u015blij","Quick reply":"Szybka odpowied\u017a","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Tryb postowania: Odpowied\u017a na <small>&gt;&gt;{0}<\/small>","Return":"Powr\u00f3t","Expand all images":"Rozwi\u0144 wszystkie obrazki","Hello!":"Witaj!","{0} users":"{0} u\u017cytkownik\u00f3w","(hide threads from this board)":"(schowaj w\u0105tki z tego boardu)","(show threads from this board)":"(poka\u017c w\u0105tki z tego boardu)","No more threads to display":"Nie ma wi\u0119cej w\u0105tk\u00f3w do wy\u015bwietlenia","Loading...":"\u0141adowanie...","Save as original filename":"Zapisz z oryginaln\u0105 nazw\u0105 pliku","Reported post(s).":"Zaraportowano post(y).","An unknown error occured!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Something went wrong... An unknown error occured!":"Co\u015b posz\u0142o \u017ale... wyst\u0105pi\u0142 nieznany b\u0142\u0105d!","Working...":"Przetwarzanie...","Posting... (#%)":"Postowanie... (#%)","Posted...":"Zapostowano...","An unknown error occured when posting!":"Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas postowania!","Posting...":"Postowanie...","Upload URL":"Wy\u015blij URL","Spoiler Image":"Schowaj obrazek","Comment":"Komentarz","Quick Reply":"Szybka odpowied\u017a","Stop watching this thread":"Przesta\u0144 obserwowa\u0107 ten w\u0105tek","Watch this thread":"Obserwuj ten w\u0105tek","Unpin this board":"Odepnij ten board","Pin this board":"Przypnij ten board","Stop watching this board":"Przesta\u0144 oberwowa\u0107 ten board","Watch this board":"Obserwuj ten board","Click on any image on this site to load it into oekaki applet":"Kliknij w jakikolwiek obrazek na tej stronie aby za\u0142adowa\u0107 go do apletu oekaki","Sunday":"Niedziela","Monday":"Poniedzia\u0142ek","Tuesday":"Wtorek","Wednesday":"\u015aroda","Thursday":"Czwartek","Friday":"Pi\u0105tek","Saturday":"Sobota","January":"stycznia","February":"lutego","March":"marca","April":"kwietnia","May":"maj","June":"czerwca","July":"lipca","August":"sierpnia","September":"wrze\u015bnia","October":"pa\u017adziernika","November":"listopada","December":"grudnia","Jan":"sty","Feb":"lut","Mar":"mar","Apr":"kwi","Jun":"cze","Jul":"lip","Aug":"sie","Sep":"wrz","Oct":"pa\u017a","Nov":"lis","Dec":"gru","AM":"AM","PM":"PM","am":"am","pm":"pm","Your browser does not support HTML5 video.":"Twoja przegl\u0105darka nie obs\u0142uguje wideo HTML5.","[play once]":"[pu\u015b\u0107 raz]","[loop]":"[zap\u0119tl]","WebM Settings":"Ustawienia WebM","Expand videos inline":"Rozwi\u0144 wideo w miejscu","Play videos on hover":"Puszczaj wideo po najechaniu","Default volume":"Domy\u015blna g\u0142o\u015bno\u015b\u0107","Tree view":"Widok drzewa"};

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:59+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -564,3 +564,7 @@ msgstr "Puszczaj wideo po najechaniu"
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Domyślna głośność" msgstr "Domyślna głośność"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr "Widok drzewa"

View File

@ -1,14 +1,15 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
# czaks <marcin@6irc.net>, 2014 # czaks <marcin@6irc.net>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 23:00+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n" "Language-Team: Polish (Poland) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pl_PL/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -22,6 +23,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "sekunda" msgstr[0] "sekunda"
@ -33,6 +35,7 @@ msgstr[2] "sekund"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "minuta" msgstr[0] "minuta"
@ -44,6 +47,7 @@ msgstr[2] "minut"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "godzina" msgstr[0] "godzina"
@ -55,6 +59,7 @@ msgstr[2] "godzin"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "dzień" msgstr[0] "dzień"
@ -66,6 +71,7 @@ msgstr[2] "dni"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "tydzień" msgstr[0] "tydzień"
@ -77,6 +83,7 @@ msgstr[2] "tygodni"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "rok" msgstr[0] "rok"
@ -85,7 +92,7 @@ msgstr[2] "lat"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Zbanowany!" msgstr "Zbanowany!"
@ -96,6 +103,7 @@ msgstr "Zbanowany!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Wstecz" msgstr "Wstecz"
@ -105,7 +113,8 @@ msgstr "Wstecz"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Dalej" msgstr "Dalej"
@ -255,7 +264,7 @@ msgstr "Przenieś wątek na inny board"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Zostałeś wyciszony za nieoryginalną treść." msgstr "Zostałeś wyciszony za nieoryginalną treść."
@ -265,20 +274,20 @@ msgstr "Zostałeś wyciszony za nieoryginalną treść."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Nowy wątek" msgstr "Nowy wątek"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Odpowiedz" msgstr "Odpowiedz"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -302,237 +311,237 @@ msgstr "Nie postuj pierwszego dnia."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Wyglądasz jak bot." msgstr "Wyglądasz jak bot."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Twoja przeglądarka przesłała niepoprawny, bądź nie przesłała informacji o odsyłaczu w nagłówku" msgstr "Twoja przeglądarka przesłała niepoprawny, bądź nie przesłała informacji o odsyłaczu w nagłówku"
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "Pole %s jest za długie" msgstr "Pole %s jest za długie"
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "Zawartość jest za długa." msgstr "Zawartość jest za długa."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "Zawartość jest za krótka, bądź pusta." msgstr "Zawartość jest za krótka, bądź pusta."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Musisz wysłać obrazek." msgstr "Musisz wysłać obrazek."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "Nie udało się obsłużyć twojego pliku." msgstr "Nie udało się obsłużyć twojego pliku."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Niewspierany format obrazka." msgstr "Niewspierany format obrazka."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Niepoprawny board!" msgstr "Niepoprawny board!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Wybrany wątek nie istnieje." msgstr "Wybrany wątek nie istnieje."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Wątek jest zablokowany. Nie możesz w nim teraz postować." msgstr "Wątek jest zablokowany. Nie możesz w nim teraz postować."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "Ten temat osiągnął swój maksymalny limit odpowiedzi." msgstr "Ten temat osiągnął swój maksymalny limit odpowiedzi."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "Ten temat osiągnął swój maksymalny limit obrazków." msgstr "Ten temat osiągnął swój maksymalny limit obrazków."
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Nie zrobiłeś posta." msgstr "Nie zrobiłeś posta."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Wykryto flood; Post odrzucony." msgstr "Wykryto flood; Post odrzucony."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Twoje żądanie wygląda na zautomatyzowane; Post odrzucony." msgstr "Twoje żądanie wygląda na zautomatyzowane; Post odrzucony."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Nieoryginalna treść!" msgstr "Nieoryginalna treść!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Nieoryginalna treść! Zostałeś wyciszony na %d sekund." msgstr "Nieoryginalna treść! Zostałeś wyciszony na %d sekund."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Jesteś wyciszony! Wygasa w ciągu %d sekund." msgstr "Jesteś wyciszony! Wygasa w ciągu %d sekund."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Twój adres IP jest na liście %s." msgstr "Twój adres IP jest na liście %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Zbyt dużo linków; wykryto flood." msgstr "Zbyt dużo linków; wykryto flood."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Zbyt dużo cytatów; post odrzucony." msgstr "Zbyt dużo cytatów; post odrzucony."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Zbyt dużo linków między boardami; post odrzucony." msgstr "Zbyt dużo linków między boardami; post odrzucony."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Nie wybrano nic do usunięcia." msgstr "Nie wybrano nic do usunięcia."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Nie wybrano nic do zgłoszenia." msgstr "Nie wybrano nic do zgłoszenia."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Nie możesz raportować tyle postów na raz." msgstr "Nie możesz raportować tyle postów na raz."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Niepoprawne hasło" msgstr "Niepoprawne hasło"
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Niepoprawny obrazek." msgstr "Niepoprawny obrazek."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Nieznane rozszerzenie pliku." msgstr "Nieznane rozszerzenie pliku."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Maksymalny rozmiar pliku: %maxsz% bajtów<br>Rozmiar twojego pliku: %filesz% bajtów" msgstr "Maksymalny rozmiar pliku: %maxsz% bajtów<br>Rozmiar twojego pliku: %filesz% bajtów"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Plik jest za duży." msgstr "Plik jest za duży."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Ten plik <a href=\"%s\">już istnieje</a>!" msgstr "Ten plik <a href=\"%s\">już istnieje</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Ten plik <a href=\"%s\">już istnieje</a> w tym temacie!" msgstr "Ten plik <a href=\"%s\">już istnieje</a> w tym temacie!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Musisz poczekać kolejne %s przed usunięciem tego." msgstr "Musisz poczekać kolejne %s przed usunięciem tego."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "Wykryto próbę wykorzystania luki wykrywania typu MIME (XSS w IE); post odrzucony" msgstr "Wykryto próbę wykorzystania luki wykrywania typu MIME (XSS w IE); post odrzucony"
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "Nie można było zrozumieć URL-a wideo, którego próbowano zapostować." msgstr "Nie można było zrozumieć URL-a wideo, którego próbowano zapostować."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Wygląda na to, że przepisano źle weryfikację." msgstr "Wygląda na to, że przepisano źle weryfikację."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -541,19 +550,19 @@ msgstr "Możesz odbanować tylko %s użytkowników na raz. Próbowałeś odbanow
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Błędna nazwa użytkownika, bądź hasło" msgstr "Błędna nazwa użytkownika, bądź hasło"
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Nie jesteś moderatorem" msgstr "Nie jesteś moderatorem"
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -561,71 +570,71 @@ msgstr "Niepoprawna nazwa użytkownika, bądź hasło. Twoje konto mogło zosta
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Niepoprawne/zmodyfikowane pliki cookie." msgstr "Niepoprawne/zmodyfikowane pliki cookie."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Twoja przeglądarka nie wysłała pola, kiedy powinna." msgstr "Twoja przeglądarka nie wysłała pola, kiedy powinna."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Pole %s jest wymagane." msgstr "Pole %s jest wymagane."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "Pole %s jest niepoprawne." msgstr "Pole %s jest niepoprawne."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Już istnieje board %s" msgstr "Już istnieje board %s"
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Nie masz uprawnień do wykonania tej czynności." msgstr "Nie masz uprawnień do wykonania tej czynności."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Ten post nie istnieje..." msgstr "Ten post nie istnieje..."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Strona nie znaleziona." msgstr "Strona nie znaleziona."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Ten moderator <a href=\"?/users/%d\">już istnieje</a>!" msgstr "Ten moderator <a href=\"?/users/%d\">już istnieje</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Ten dodatek nie istnieje!" msgstr "Ten dodatek nie istnieje!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponownie." msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponownie."
@ -637,7 +646,7 @@ msgstr "Niepoprawny token bezpieczeństwa! Proszę cofnąć i spróbować ponown
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "UŻYTKOWNIK ZOSTAŁ ZBANOWANY ZA TEGO POSTA" msgstr "UŻYTKOWNIK ZOSTAŁ ZBANOWANY ZA TEGO POSTA"
@ -712,6 +721,9 @@ msgstr "Log moderacji"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -884,10 +896,13 @@ msgstr "Usuń post"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Plik" msgstr "Plik"
@ -906,6 +921,7 @@ msgstr "Plik"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -913,6 +929,7 @@ msgstr "Plik"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Hasło" msgstr "Hasło"
@ -957,6 +974,11 @@ msgstr "Hasło"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1249,22 +1271,28 @@ msgid "Verification"
msgstr "Weryfikacja" msgstr "Weryfikacja"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "Lub URL" msgstr "Lub URL"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Osadź" msgstr "Osadź"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Flagi" msgstr "Flagi"
@ -1290,11 +1318,15 @@ msgstr "Flagi"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Przyklejony" msgstr "Przyklejony"
@ -1320,11 +1352,15 @@ msgstr "Przyklejony"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Zablokowany" msgstr "Zablokowany"
@ -1350,21 +1386,27 @@ msgstr "Zablokowany"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "Czysty HTML" msgstr "Czysty HTML"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(do usuwania postów)" msgstr "(do usuwania postów)"
@ -1373,14 +1415,15 @@ msgid "Post search is disabled"
msgstr "Wyszukiwanie postów jest wyłączone" msgstr "Wyszukiwanie postów jest wyłączone"
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Proszę poczekać chwilę przed ponownym szukaniem." msgstr "Proszę poczekać chwilę przed ponownym szukaniem."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Zapytanie zbyt szerokie." msgstr "Zapytanie zbyt szerokie."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
@ -1388,7 +1431,7 @@ msgstr[0] "%d wynik na"
msgstr[1] "%d wyniki na" msgstr[1] "%d wyniki na"
msgstr[2] "%d wyników na" msgstr[2] "%d wyników na"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Brak wyników." msgstr "Brak wyników."
@ -1424,12 +1467,15 @@ msgstr "Brak wyników."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Szukaj" msgstr "Szukaj"
@ -1456,6 +1502,7 @@ msgstr "Debug: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1632,6 +1679,11 @@ msgstr "Zapostuj newsa"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1661,6 +1713,8 @@ msgstr "Ekipa"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1709,6 +1763,7 @@ msgstr "Nowa notka"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1773,6 +1828,11 @@ msgstr "brak powodu"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1817,6 +1877,7 @@ msgstr "wszystkie boardy"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1844,6 +1905,7 @@ msgstr "Ustawione"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1879,6 +1941,7 @@ msgstr "nigdy"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1941,6 +2004,7 @@ msgstr "Czas"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1992,6 +2056,7 @@ msgstr "Nowy ban"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2076,19 +2141,19 @@ msgstr "Powód apelacji"
msgid "There are no reports." msgid "There are no reports."
msgstr "Nie ma żadnych raportów." msgstr "Nie ma żadnych raportów."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "Ten ban nie istnieje, lub nie należy do Ciebie." msgstr "Ten ban nie istnieje, lub nie należy do Ciebie."
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "Nie możesz apelować o zdjęcie bana o tej długości." msgstr "Nie możesz apelować o zdjęcie bana o tej długości."
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "Nie możesz ponownie apelować o zdjęcie tego bana." msgstr "Nie możesz ponownie apelować o zdjęcie tego bana."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "W tej chwili oczekuje apelacja o zdjęcie tego bana." msgstr "W tej chwili oczekuje apelacja o zdjęcie tego bana."
@ -2454,3 +2519,13 @@ msgstr "Usuń użytkownika"
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "Zobacz więcej logów tego użytkownika" msgstr "Zobacz więcej logów tego użytkownika"
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr "Flaga"
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr "Brak"

View File

@ -10,9 +10,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 22:49+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: anaodev <xmas@yopmail.com>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -566,3 +566,7 @@ msgstr "Reproduz vídeos em foco"
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Volume padrão" msgstr "Volume padrão"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,6 +1,7 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
# anaodev <xmas@yopmail.com>, 2014 # anaodev <xmas@yopmail.com>, 2014
# hitmonkey <sac@55ch.org>, 2014 # hitmonkey <sac@55ch.org>, 2014
@ -9,9 +10,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 23:04+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: anaodev <xmas@yopmail.com>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/pt_BR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -24,6 +25,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "segundos" msgstr[0] "segundos"
@ -34,6 +36,7 @@ msgstr[1] "segundos"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "segundos" msgstr[0] "segundos"
@ -44,6 +47,7 @@ msgstr[1] "minutos"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "hora" msgstr[0] "hora"
@ -54,6 +58,7 @@ msgstr[1] "horas"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "dia" msgstr[0] "dia"
@ -64,6 +69,7 @@ msgstr[1] "dias"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "semana" msgstr[0] "semana"
@ -74,6 +80,7 @@ msgstr[1] "semanas"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "ano" msgstr[0] "ano"
@ -81,7 +88,7 @@ msgstr[1] "anos"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Banido!" msgstr "Banido!"
@ -92,6 +99,7 @@ msgstr "Banido!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Anterior" msgstr "Anterior"
@ -101,7 +109,8 @@ msgstr "Anterior"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Proximo" msgstr "Proximo"
@ -251,7 +260,7 @@ msgstr "Mover tópico para outra board"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Você foi silenciado por conteúdo repetido." msgstr "Você foi silenciado por conteúdo repetido."
@ -261,20 +270,20 @@ msgstr "Você foi silenciado por conteúdo repetido."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Novo tópico" msgstr "Novo tópico"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Responder" msgstr "Responder"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -298,237 +307,237 @@ msgstr "Lurke mais antes de postar."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Você não parece humano." msgstr "Você não parece humano."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Seu browser enviou um referial HTTP inválido ou não enviou o referencial." msgstr "Seu browser enviou um referial HTTP inválido ou não enviou o referencial."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "O campo %s é longo demais." msgstr "O campo %s é longo demais."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "O corpo do texto é longo demais." msgstr "O corpo do texto é longo demais."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "O corpo do texto é pequeno demais ou inexistente." msgstr "O corpo do texto é pequeno demais ou inexistente."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Você deve fazer upload de uma imagem." msgstr "Você deve fazer upload de uma imagem."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "O servidor não conseguiu processar seu upload." msgstr "O servidor não conseguiu processar seu upload."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Formato de arquivo não aceito" msgstr "Formato de arquivo não aceito"
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Board inválida!" msgstr "Board inválida!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "O tópico especificado não existe.." msgstr "O tópico especificado não existe.."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Tópico trancado, você não pode responde-lo." msgstr "Tópico trancado, você não pode responde-lo."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "O tópico atingiu o limite de respostas." msgstr "O tópico atingiu o limite de respostas."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "O tópico alcançou o limite máximo de imagens" msgstr "O tópico alcançou o limite máximo de imagens"
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Você não escreveu uma mensagem." msgstr "Você não escreveu uma mensagem."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Flood detectado; Sua mensagem foi descartada." msgstr "Flood detectado; Sua mensagem foi descartada."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Sua requisição parece automatizada; Mensagem descartada." msgstr "Sua requisição parece automatizada; Mensagem descartada."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Conteudo não original!" msgstr "Conteudo não original!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Conteudo não original! Você está impedido de postar por %d segundos." msgstr "Conteudo não original! Você está impedido de postar por %d segundos."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Você está impedido de postar! Expira em %d segundos." msgstr "Você está impedido de postar! Expira em %d segundos."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Seu IP está listado em %s." msgstr "Seu IP está listado em %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Links demais; Flood detectado." msgstr "Links demais; Flood detectado."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Citações demais; Post descartado." msgstr "Citações demais; Post descartado."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Links entre boards demais; Post descartado." msgstr "Links entre boards demais; Post descartado."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Você não selecionou nada para deletar." msgstr "Você não selecionou nada para deletar."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Você não selecionou nada para denunciar." msgstr "Você não selecionou nada para denunciar."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Você não pode denunciar tantas mensagens ao mesmo tempo." msgstr "Você não pode denunciar tantas mensagens ao mesmo tempo."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Senha incorreta…" msgstr "Senha incorreta…"
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Imagem inválida." msgstr "Imagem inválida."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Extenção de arquivo desconhecida." msgstr "Extenção de arquivo desconhecida."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Tamanho maximo de arquivos: %maxsz% bytes<br>O tamanho do seu arquivo: %filesz% bytes" msgstr "Tamanho maximo de arquivos: %maxsz% bytes<br>O tamanho do seu arquivo: %filesz% bytes"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Seu arquivo é grande demais." msgstr "Seu arquivo é grande demais."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "O arquivo <a href=\"%s\">já existe</a>!" msgstr "O arquivo <a href=\"%s\">já existe</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "O arquivo <a href=\"%s\">já existe</a> neste tópico!" msgstr "O arquivo <a href=\"%s\">já existe</a> neste tópico!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Você terá que esperar %s segundos antes de deletar isso." msgstr "Você terá que esperar %s segundos antes de deletar isso."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "Exploit XSS do tipo MIME (IE) detectado; mensagem descartada." msgstr "Exploit XSS do tipo MIME (IE) detectado; mensagem descartada."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "Não foi possivel processar a URL do video que você tentou integrar." msgstr "Não foi possivel processar a URL do video que você tentou integrar."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Você errou o codigo de verificação." msgstr "Você errou o codigo de verificação."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -537,19 +546,19 @@ msgstr "Você só tem permissão para retirar o ban de %s usuários por vez, e v
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Login e/ou senha inválido(s)." msgstr "Login e/ou senha inválido(s)."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Você não é mod…" msgstr "Você não é mod…"
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -557,71 +566,71 @@ msgstr "Login e/ou senha inválido(s). Seu login deve ter sido mudado ou removid
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Cookies inválidos ou mal formados." msgstr "Cookies inválidos ou mal formados."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Seu browser não enviou nada, quando ele deveria." msgstr "Seu browser não enviou nada, quando ele deveria."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "O campo %s é necessário." msgstr "O campo %s é necessário."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "O campo %s é inválido." msgstr "O campo %s é inválido."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "A board %s já existe." msgstr "A board %s já existe."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Você não tem permissão para fazer isso." msgstr "Você não tem permissão para fazer isso."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Esse post não existe..." msgstr "Esse post não existe..."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Pagina não encontrada." msgstr "Pagina não encontrada."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Este mod <a href=\"?/users/%d\">já existe</a>!" msgstr "Este mod <a href=\"?/users/%d\">já existe</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Este tema não existe!" msgstr "Este tema não existe!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Token de segurança inválido! Retorne e tente novamente" msgstr "Token de segurança inválido! Retorne e tente novamente"
@ -633,7 +642,7 @@ msgstr "Token de segurança inválido! Retorne e tente novamente"
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "O USUÁRIO FOI BANIDO POR ESTA MENSAGEM" msgstr "O USUÁRIO FOI BANIDO POR ESTA MENSAGEM"
@ -708,6 +717,9 @@ msgstr "Log da moderação"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -880,10 +892,13 @@ msgstr "Deletar Mensagem"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Arquivo" msgstr "Arquivo"
@ -902,6 +917,7 @@ msgstr "Arquivo"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -909,6 +925,7 @@ msgstr "Arquivo"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Senha" msgstr "Senha"
@ -953,6 +970,11 @@ msgstr "Senha"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1241,22 +1263,28 @@ msgid "Verification"
msgstr "Verificação" msgstr "Verificação"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "Ou URL" msgstr "Ou URL"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Inserir" msgstr "Inserir"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Sinalizações" msgstr "Sinalizações"
@ -1282,11 +1310,15 @@ msgstr "Sinalizações"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Fixar" msgstr "Fixar"
@ -1312,11 +1344,15 @@ msgstr "Fixar"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Trancar" msgstr "Trancar"
@ -1342,21 +1378,27 @@ msgstr "Trancar"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "HTML Puro" msgstr "HTML Puro"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Para excluir arquivos)" msgstr "(Para excluir arquivos)"
@ -1365,21 +1407,22 @@ msgid "Post search is disabled"
msgstr "A pesquisa de mensagens está desativada." msgstr "A pesquisa de mensagens está desativada."
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Aguarde um momento antes de pesquisar novamente, por favor." msgstr "Aguarde um momento antes de pesquisar novamente, por favor."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Pesquisa pouco especifica." msgstr "Pesquisa pouco especifica."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "%d resultado em" msgstr[0] "%d resultado em"
msgstr[1] "%d resultados em" msgstr[1] "%d resultados em"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Sem resultados." msgstr "Sem resultados."
@ -1415,12 +1458,15 @@ msgstr "Sem resultados."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Procurar" msgstr "Procurar"
@ -1447,6 +1493,7 @@ msgstr "Debug: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1623,6 +1670,11 @@ msgstr "Postar nova notícia"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1652,6 +1704,8 @@ msgstr "Equipe"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1700,6 +1754,7 @@ msgstr "Nova nota"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1764,6 +1819,11 @@ msgstr "sem razão especificada"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1808,6 +1868,7 @@ msgstr "todas as boards"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1835,6 +1896,7 @@ msgstr "Configurar"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1870,6 +1932,7 @@ msgstr "nunca"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1932,6 +1995,7 @@ msgstr "Tempo"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1983,6 +2047,7 @@ msgstr "Nova Expulsão"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2067,19 +2132,19 @@ msgstr "Motivo de apelo"
msgid "There are no reports." msgid "There are no reports."
msgstr "Não há denúncias no momento." msgstr "Não há denúncias no momento."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "Este ban não existe, ou não é pra você." msgstr "Este ban não existe, ou não é pra você."
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "Você não pode apelar um ban desta duração." msgstr "Você não pode apelar um ban desta duração."
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "Você não pode apelar novamente." msgstr "Você não pode apelar novamente."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "Já existe um apelo pendente a este ban." msgstr "Já existe um apelo pendente a este ban."
@ -2445,3 +2510,13 @@ msgstr "Deletar usuário"
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "Ver mais logs deste usuário." msgstr "Ver mais logs deste usuário."
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -8,9 +8,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-19 11:20+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: Assada <assada@mail.ua>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -564,3 +564,7 @@ msgstr "Проиграть при наведении"
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Громкость" msgstr "Громкость"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,6 +1,7 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
# Assada <assada@mail.ua>, 2014 # Assada <assada@mail.ua>, 2014
# cookiezeater <cookiezeater@mail.ru>, 2014 # cookiezeater <cookiezeater@mail.ru>, 2014
@ -8,9 +9,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-19 11:04+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: Assada <assada@mail.ua>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n" "Language-Team: Russian (Russia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/ru_RU/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -23,6 +24,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "секунда" msgstr[0] "секунда"
@ -34,6 +36,7 @@ msgstr[2] "секунд"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "минута" msgstr[0] "минута"
@ -45,6 +48,7 @@ msgstr[2] "минут"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "час" msgstr[0] "час"
@ -56,6 +60,7 @@ msgstr[2] "часа"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "день" msgstr[0] "день"
@ -67,6 +72,7 @@ msgstr[2] "дней"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "неделя" msgstr[0] "неделя"
@ -78,6 +84,7 @@ msgstr[2] "недель"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "год" msgstr[0] "год"
@ -86,7 +93,7 @@ msgstr[2] "лет"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Забанен!" msgstr "Забанен!"
@ -97,6 +104,7 @@ msgstr "Забанен!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Предыдущий" msgstr "Предыдущий"
@ -106,7 +114,8 @@ msgstr "Предыдущий"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Следующий" msgstr "Следующий"
@ -256,7 +265,7 @@ msgstr "Переместить тред в другую доску"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "" msgstr ""
@ -266,20 +275,20 @@ msgstr ""
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Новый тред" msgstr "Новый тред"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Новый ответ" msgstr "Новый ответ"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -303,237 +312,237 @@ msgstr ""
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Ты похож на бота." msgstr "Ты похож на бота."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Твой браузер послал ошибочный HTTP referer. Ну или совсем его не отправил." msgstr "Твой браузер послал ошибочный HTTP referer. Ну или совсем его не отправил."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "Поле %s слишком длинное." msgstr "Поле %s слишком длинное."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "Содержимое очень большое." msgstr "Содержимое очень большое."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "Содержимое очень короткое или отсутствует" msgstr "Содержимое очень короткое или отсутствует"
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Ты должен загрузить изображение." msgstr "Ты должен загрузить изображение."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "" msgstr ""
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Не поддерживаемый формат изображения." msgstr "Не поддерживаемый формат изображения."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Неверная доска." msgstr "Неверная доска."
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "" msgstr ""
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Тред закрыт. Ты не можешь писать сюда." msgstr "Тред закрыт. Ты не можешь писать сюда."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "Тред достиг максимального количества ответов." msgstr "Тред достиг максимального количества ответов."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "Тред достиг максимального количества изображений." msgstr "Тред достиг максимального количества изображений."
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Ты не можешь создать тред." msgstr "Ты не можешь создать тред."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Обнаружен флуд. Пост отклонен." msgstr "Обнаружен флуд. Пост отклонен."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Ваш запрос похож на автоматический. Пост отклонен." msgstr "Ваш запрос похож на автоматический. Пост отклонен."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Не оригинальный контент." msgstr "Не оригинальный контент."
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "" msgstr ""
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "" msgstr ""
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "" msgstr ""
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Слишком много ссылок. Обнаружен флуд." msgstr "Слишком много ссылок. Обнаружен флуд."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Слишком много отсылок на доски. Отклонено." msgstr "Слишком много отсылок на доски. Отклонено."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Ты не выбрал ничего для удаления." msgstr "Ты не выбрал ничего для удаления."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Ты ничего не выбрал для жалобы." msgstr "Ты ничего не выбрал для жалобы."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "" msgstr ""
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Ошибка пароля. " msgstr "Ошибка пароля. "
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Неверное изображение" msgstr "Неверное изображение"
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Неизвестное расширение файла." msgstr "Неизвестное расширение файла."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Максимальный размер файла: %maxsz% байт<br> А твой файл: %filesz% байт." msgstr "Максимальный размер файла: %maxsz% байт<br> А твой файл: %filesz% байт."
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Этот файл слишком большой." msgstr "Этот файл слишком большой."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Этот файл <a href=\"%s\">уже существует</a>!" msgstr "Этот файл <a href=\"%s\">уже существует</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Этот файл <a href=\"%s\">уже существует</a> в этом треде." msgstr "Этот файл <a href=\"%s\">уже существует</a> в этом треде."
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "" msgstr ""
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "" msgstr ""
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "" msgstr ""
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "" msgstr ""
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -542,19 +551,19 @@ msgstr ""
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Ошибочный логин и\\или пароль." msgstr "Ошибочный логин и\\или пароль."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Ты не модератор..." msgstr "Ты не модератор..."
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -562,71 +571,71 @@ msgstr ""
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "" msgstr ""
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "" msgstr ""
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Необходимо заполнить поле %s" msgstr "Необходимо заполнить поле %s"
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "Поле %s заполнено с ошибкой. " msgstr "Поле %s заполнено с ошибкой. "
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "" msgstr ""
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "У тебя нет прав для этого." msgstr "У тебя нет прав для этого."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Такого поста не существует." msgstr "Такого поста не существует."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Страница не найдена." msgstr "Страница не найдена."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "" msgstr ""
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Этой темы не существует." msgstr "Этой темы не существует."
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Ошибка безопасности. Вернись назад и попробуй снова." msgstr "Ошибка безопасности. Вернись назад и попробуй снова."
@ -638,7 +647,7 @@ msgstr "Ошибка безопасности. Вернись назад и по
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "АВТОР ЭТОГО ПОСТА ЗАБЛОКИРОВАН" msgstr "АВТОР ЭТОГО ПОСТА ЗАБЛОКИРОВАН"
@ -713,6 +722,9 @@ msgstr "Логи модерации"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -885,10 +897,13 @@ msgstr "удалить пост"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Файл" msgstr "Файл"
@ -907,6 +922,7 @@ msgstr "Файл"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -914,6 +930,7 @@ msgstr "Файл"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Пaроль" msgstr "Пaроль"
@ -958,6 +975,11 @@ msgstr "Пaроль"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1250,22 +1272,28 @@ msgid "Verification"
msgstr "Подтверждение" msgstr "Подтверждение"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "Или URL" msgstr "Или URL"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Вставить медиа" msgstr "Вставить медиа"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Флаги" msgstr "Флаги"
@ -1291,11 +1319,15 @@ msgstr "Флаги"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Sticky" msgstr "Sticky"
@ -1321,11 +1353,15 @@ msgstr "Sticky"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Lock" msgstr "Lock"
@ -1351,21 +1387,27 @@ msgstr "Lock"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "Сырой HTML" msgstr "Сырой HTML"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Для удаления файлов.)" msgstr "(Для удаления файлов.)"
@ -1374,14 +1416,15 @@ msgid "Post search is disabled"
msgstr "" msgstr ""
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "" msgstr ""
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "" msgstr ""
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
@ -1389,7 +1432,7 @@ msgstr[0] ""
msgstr[1] "" msgstr[1] ""
msgstr[2] "" msgstr[2] ""
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Нет результатов" msgstr "Нет результатов"
@ -1425,12 +1468,15 @@ msgstr "Нет результатов"
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Поиск" msgstr "Поиск"
@ -1457,6 +1503,7 @@ msgstr ""
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1633,6 +1680,11 @@ msgstr ""
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1662,6 +1714,8 @@ msgstr ""
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1710,6 +1764,7 @@ msgstr "Новая заметка"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1774,6 +1829,11 @@ msgstr "без причины"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1818,6 +1878,7 @@ msgstr "все доски"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1845,6 +1906,7 @@ msgstr ""
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1880,6 +1942,7 @@ msgstr "никогда"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1942,6 +2005,7 @@ msgstr "Время"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1993,6 +2057,7 @@ msgstr "Новый бан"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2077,19 +2142,19 @@ msgstr ""
msgid "There are no reports." msgid "There are no reports."
msgstr "" msgstr ""
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "" msgstr ""
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "" msgstr ""
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "" msgstr ""
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "" msgstr ""
@ -2455,3 +2520,13 @@ msgstr "Удалить"
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "Показать все логи этого пользователя." msgstr "Показать все логи этого пользователя."
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -1 +1 @@
l10n = {"Style: ":"\u0160t\u00fdl:","File":"S\u00fabor","hide":"skry\u0165","show":"uk\u00e1za\u0165","Show locked threads":"Zobrazi\u0165 zamknut\u00e9 vl\u00e1kna","Hide locked threads":"Skry\u0165 zamknut\u00e9 vl\u00e1kna","URL":"Adresa","Select":"Vybra\u0165","Remote":"Vzdialen\u00fd","Embed":"Vlo\u017ei\u0165","Oekaki":"Oekaki","hidden":"skryt\u00fd","Show images":"Zobrazi\u0165 obr\u00e1zky","Hide images":"Skry\u0165 obr\u00e1zky","Password":"Heslo","Delete file only":"Odstr\u00e1ni\u0165 iba s\u00fabor","Delete":"Odstr\u00e1ni\u0165","Reason":"D\u00f4vod","Report":"Nahl\u00e1si\u0165","Click reply to view.":"Klikni na Odpove\u010f pre ich zobrazenie.","Click to expand":"Klikni sem pre zobrazenie","Hide expanded replies":"Skry\u0165 zobrazen\u00e9 odpovede","Brush size":"Ve\u013ekos\u0165 \u0161tetca","Set text":"Nastavi\u0165 text","Clear":"Vy\u010disti\u0165","Save":"Ulo\u017ei\u0165","Load":"Na\u010d\u00edta\u0165","Toggle eraser":"Zmeni\u0165 gumu","Get color":"Vybra\u0165 farbu","Fill":"Vyplni\u0165","Use oekaki instead of file?":"Pou\u017ei\u0165 miesto s\u00faboru oekaki?","Edit in oekaki":"Upravi\u0165 v oekaki","Enter some text":"Nap\u00ed\u0161 nejak\u00fd text","Enter font or leave empty":"Vlo\u017e p\u00edsmo alebo nechaj pr\u00e1zdne","Forced anonymity":"Vyn\u00faten\u00e1 anonymita","enabled":"zapnut\u00e1","disabled":"vypnut\u00e1","Sun":"Ne","Mon":"Po","Tue":"Ut","Wed":"St","Thu":"\u0160t","Fri":"Pi","Sat":"So","Catalog":"Katal\u00f3g","Submit":"Odosla\u0165","Quick reply":"R\u00fdchla odpove\u010f","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Re\u017eim prispievania: Odpove\u010f na <small>&gt;&gt;{0}<\/small>","Return":"N\u00e1vrat","Expand all images":"Otvori\u0165 v\u0161etky obr\u00e1zky","Hello!":"Ahoj!","{0} users":"{0} u\u017e\u00edvate\u013eov","(hide threads from this board)":"(skry\u0165 vl\u00e1kna z tejto dosky)","(show threads from this board)":"(zobrazi\u0165 vl\u00e1kna z tejto dosky)","No more threads to display":"\u017diadne \u010fal\u0161ie vl\u00e1kna na zobrazenie","Loading...":"Na\u010d\u00edtanie...","Save as original filename":"Ulo\u017ei\u0165 s p\u00f4vodn\u00fdm n\u00e1zvom","Reported post(s).":"Pr\u00edspevok nahl\u00e1sen\u00fd.","An unknown error occured!":"Nastala nezn\u00e1ma chyba!","Something went wrong... An unknown error occured!":"Stalo sa nie\u010do zl\u00e9... Nastala nezn\u00e1ma chyba!","Working...":"Pracujem...","Posting... (#%)":"Odosielam... (#%)","Posted...":"Odoslan\u00e9...","An unknown error occured when posting!":"Pri odosielan\u00ed nastala nezn\u00e1ma chyba!","Posting...":"Odosielam...","Upload URL":"Adresa s\u00faboru","Spoiler Image":"Skryt\u00fd obr\u00e1zok","Comment":"Koment\u00e1r","Quick Reply":"R\u00fdchla odpove\u010f","Stop watching this thread":"Zastavi\u0165 sledovanie tohto vl\u00e1kna","Watch this thread":"Sledova\u0165 toto vl\u00e1kno","Unpin this board":"Odopn\u00fa\u0165 t\u00fato dosku","Pin this board":"Pripn\u00fa\u0165 t\u00fato dosku","Stop watching this board":"Zastavi\u0165 sledovanie tejto dosky","Watch this board":"Sledova\u0165 t\u00fato dosku","Click on any image on this site to load it into oekaki applet":"Klikni na ak\u00fdko\u013evek obr\u00e1zok na tejto str\u00e1nke pre jeho na\u010d\u00edtanie do Oekaki","Sunday":"Nede\u013ea","Monday":"Pondelok","Tuesday":"Utorok","Wednesday":"Streda","Thursday":"\u0160tvrtok","Friday":"Piatok","Saturday":"Sobota","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"Marec","April":"Apr\u00edl","May":"M\u00e1j","June":"J\u00fan","July":"J\u00fal","August":"August","September":"September","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"J\u00fan","Jul":"J\u00fal","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"Doobeda","PM":"Poobede","am":"doobeda","pm":"poobede","Your browser does not support HTML5 video.":"Tvoj prehliada\u010d nepodporuje HTML5 vide\u00e1.","[play once]":"[hra\u0165 raz]","[loop]":"[slu\u010dka]","WebM Settings":"Nastavenia WebM","Expand videos inline":"Otvori\u0165 vide\u00e1 v riadku","Play videos on hover":"Spusti\u0165 vide\u00e1 pri uk\u00e1zan\u00ed na ne","Default volume":"P\u00f4vodn\u00e1 hlasitos\u0165"}; l10n = {"Style: ":"\u0160t\u00fdl:","File":"S\u00fabor","hide":"skry\u0165","show":"uk\u00e1za\u0165","Show locked threads":"Zobrazi\u0165 zamknut\u00e9 vl\u00e1kna","Hide locked threads":"Skry\u0165 zamknut\u00e9 vl\u00e1kna","URL":"Adresa","Select":"Vybra\u0165","Remote":"Vzdialen\u00fd","Embed":"Vlo\u017ei\u0165","Oekaki":"Oekaki","hidden":"skryt\u00fd","Show images":"Zobrazi\u0165 obr\u00e1zky","Hide images":"Skry\u0165 obr\u00e1zky","Password":"Heslo","Delete file only":"Odstr\u00e1ni\u0165 iba s\u00fabor","Delete":"Odstr\u00e1ni\u0165","Reason":"D\u00f4vod","Report":"Nahl\u00e1si\u0165","Click reply to view.":"Klikni na Odpove\u010f pre ich zobrazenie.","Click to expand":"Klikni sem pre zobrazenie","Hide expanded replies":"Skry\u0165 zobrazen\u00e9 odpovede","Brush size":"Ve\u013ekos\u0165 \u0161tetca","Set text":"Nastavi\u0165 text","Clear":"Vy\u010disti\u0165","Save":"Ulo\u017ei\u0165","Load":"Na\u010d\u00edta\u0165","Toggle eraser":"Zmeni\u0165 gumu","Get color":"Vybra\u0165 farbu","Fill":"Vyplni\u0165","Use oekaki instead of file?":"Pou\u017ei\u0165 miesto s\u00faboru oekaki?","Edit in oekaki":"Upravi\u0165 v oekaki","Enter some text":"Nap\u00ed\u0161 nejak\u00fd text","Enter font or leave empty":"Vlo\u017e p\u00edsmo alebo nechaj pr\u00e1zdne","Forced anonymity":"Vyn\u00faten\u00e1 anonymita","enabled":"zapnut\u00e1","disabled":"vypnut\u00e1","Sun":"Ne","Mon":"Po","Tue":"Ut","Wed":"St","Thu":"\u0160t","Fri":"Pi","Sat":"So","Catalog":"Katal\u00f3g","Submit":"Odosla\u0165","Quick reply":"R\u00fdchla odpove\u010f","Posting mode: Replying to <small>&gt;&gt;{0}<\/small>":"Re\u017eim prispievania: Odpove\u010f na <small>&gt;&gt;{0}<\/small>","Return":"N\u00e1vrat","Expand all images":"Otvori\u0165 v\u0161etky obr\u00e1zky","Hello!":"Ahoj!","{0} users":"{0} u\u017e\u00edvate\u013eov","(hide threads from this board)":"(skry\u0165 vl\u00e1kna z tejto dosky)","(show threads from this board)":"(zobrazi\u0165 vl\u00e1kna z tejto dosky)","No more threads to display":"\u017diadne \u010fal\u0161ie vl\u00e1kna na zobrazenie","Loading...":"Na\u010d\u00edtanie...","Save as original filename":"Ulo\u017ei\u0165 s p\u00f4vodn\u00fdm n\u00e1zvom","Reported post(s).":"Pr\u00edspevok nahl\u00e1sen\u00fd.","An unknown error occured!":"Nastala nezn\u00e1ma chyba!","Something went wrong... An unknown error occured!":"Stalo sa nie\u010do zl\u00e9... Nastala nezn\u00e1ma chyba!","Working...":"Pracujem...","Posting... (#%)":"Odosielam... (#%)","Posted...":"Odoslan\u00e9...","An unknown error occured when posting!":"Pri odosielan\u00ed nastala nezn\u00e1ma chyba!","Posting...":"Odosielam...","Upload URL":"Adresa s\u00faboru","Spoiler Image":"Skryt\u00fd obr\u00e1zok","Comment":"Koment\u00e1r","Quick Reply":"R\u00fdchla odpove\u010f","Stop watching this thread":"Zastavi\u0165 sledovanie tohto vl\u00e1kna","Watch this thread":"Sledova\u0165 toto vl\u00e1kno","Unpin this board":"Odopn\u00fa\u0165 t\u00fato dosku","Pin this board":"Pripn\u00fa\u0165 t\u00fato dosku","Stop watching this board":"Zastavi\u0165 sledovanie tejto dosky","Watch this board":"Sledova\u0165 t\u00fato dosku","Click on any image on this site to load it into oekaki applet":"Klikni na ak\u00fdko\u013evek obr\u00e1zok na tejto str\u00e1nke pre jeho na\u010d\u00edtanie do Oekaki","Sunday":"Nede\u013ea","Monday":"Pondelok","Tuesday":"Utorok","Wednesday":"Streda","Thursday":"\u0160tvrtok","Friday":"Piatok","Saturday":"Sobota","January":"Janu\u00e1r","February":"Febru\u00e1r","March":"Marec","April":"Apr\u00edl","May":"M\u00e1j","June":"J\u00fan","July":"J\u00fal","August":"August","September":"September","October":"Okt\u00f3ber","November":"November","December":"December","Jan":"Jan","Feb":"Feb","Mar":"Mar","Apr":"Apr","Jun":"J\u00fan","Jul":"J\u00fal","Aug":"Aug","Sep":"Sep","Oct":"Okt","Nov":"Nov","Dec":"Dec","AM":"Doobeda","PM":"Poobede","am":"doobeda","pm":"poobede","Your browser does not support HTML5 video.":"Tvoj prehliada\u010d nepodporuje HTML5 vide\u00e1.","[play once]":"[hra\u0165 raz]","[loop]":"[slu\u010dka]","WebM Settings":"Nastavenia WebM","Expand videos inline":"Otvori\u0165 vide\u00e1 v riadku","Play videos on hover":"Spusti\u0165 vide\u00e1 pri uk\u00e1zan\u00ed na ne","Default volume":"P\u00f4vodn\u00e1 hlasitos\u0165","Tree view":"Zobrazi\u0165 ako strom"};

View File

@ -8,9 +8,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 23:20+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: dubcheck <admin@alokal.eu>\n"
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -564,3 +564,7 @@ msgstr "Spustiť videá pri ukázaní na ne"
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Pôvodná hlasitosť" msgstr "Pôvodná hlasitosť"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr "Zobraziť ako strom"

View File

@ -1,15 +1,16 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
# dubcheck <admin@alokal.eu>, 2014 # dubcheck <admin@alokal.eu>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 23:09+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: dubcheck <admin@alokal.eu>\n"
"Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n" "Language-Team: Slovak (Slovakia) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/sk_SK/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -22,6 +23,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "sekunda" msgstr[0] "sekunda"
@ -33,6 +35,7 @@ msgstr[2] "sekúnd"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "minúta" msgstr[0] "minúta"
@ -44,6 +47,7 @@ msgstr[2] "minút"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "hodina" msgstr[0] "hodina"
@ -55,6 +59,7 @@ msgstr[2] "hodín"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "deň" msgstr[0] "deň"
@ -66,6 +71,7 @@ msgstr[2] "dní"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "týždeň" msgstr[0] "týždeň"
@ -77,6 +83,7 @@ msgstr[2] "týždňov"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "rok" msgstr[0] "rok"
@ -85,7 +92,7 @@ msgstr[2] "rokov"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Zabanovaný!" msgstr "Zabanovaný!"
@ -96,6 +103,7 @@ msgstr "Zabanovaný!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Späť" msgstr "Späť"
@ -105,7 +113,8 @@ msgstr "Späť"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "Ďalej" msgstr "Ďalej"
@ -255,7 +264,7 @@ msgstr "Presunúť vlákno na inú dosku"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Bol si zablokovaný pre neoriginálny obsah." msgstr "Bol si zablokovaný pre neoriginálny obsah."
@ -265,20 +274,20 @@ msgstr "Bol si zablokovaný pre neoriginálny obsah."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Nové vlákno" msgstr "Nové vlákno"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Odpoveď" msgstr "Odpoveď"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -302,237 +311,237 @@ msgstr "Ešte tu chvíľu slieď predtým, než budeš prispievať."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Vyzeráš ako bot." msgstr "Vyzeráš ako bot."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Tvoj prehliadač odoslal vadný alebo žiadny HTTP referer." msgstr "Tvoj prehliadač odoslal vadný alebo žiadny HTTP referer."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "Pole %s bolo príliš dlhé." msgstr "Pole %s bolo príliš dlhé."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "Telo správy bolo príliš dlhé." msgstr "Telo správy bolo príliš dlhé."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "Telo správy bolo prikrátke alebo prázdne." msgstr "Telo správy bolo prikrátke alebo prázdne."
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Musíš odoslať obrázok." msgstr "Musíš odoslať obrázok."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "Serveru sa nepodarilo poradiť si s Tvojím uploadom." msgstr "Serveru sa nepodarilo poradiť si s Tvojím uploadom."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Nepodporovaný formát súboru." msgstr "Nepodporovaný formát súboru."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Nesprávna doska!" msgstr "Nesprávna doska!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Špecifikované vlákno neexistuje." msgstr "Špecifikované vlákno neexistuje."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Zamknuté vlákno. Teraz nie je možné naň odpovedať." msgstr "Zamknuté vlákno. Teraz nie je možné naň odpovedať."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "Vlákno dosiahlo svoj maximálny limit pre odpovede." msgstr "Vlákno dosiahlo svoj maximálny limit pre odpovede."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "Vlákno dosiahlo svoj maximálny limit pre obrázky." msgstr "Vlákno dosiahlo svoj maximálny limit pre obrázky."
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Príspevok nebol vytvorený." msgstr "Príspevok nebol vytvorený."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Detekovaný flood; Príspevok zrušený." msgstr "Detekovaný flood; Príspevok zrušený."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Požiadavka vyzerá byť automatizovaná; Príspevok zrušený." msgstr "Požiadavka vyzerá byť automatizovaná; Príspevok zrušený."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Neoriginálny obsah!" msgstr "Neoriginálny obsah!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Neoriginálny obsah! Bol si zablokovaný na %d sekúnd." msgstr "Neoriginálny obsah! Bol si zablokovaný na %d sekúnd."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Si zablokovaný! Vyprší za %d sekúnd." msgstr "Si zablokovaný! Vyprší za %d sekúnd."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "Tvoja IP je spomínaná v %s." msgstr "Tvoja IP je spomínaná v %s."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Priveľa odkazov; Flood detekovaný." msgstr "Priveľa odkazov; Flood detekovaný."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Priveľa citátov; Príspevok zrušený." msgstr "Priveľa citátov; Príspevok zrušený."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Priveľa medzidoskových odkazov; Príspevok zrušený." msgstr "Priveľa medzidoskových odkazov; Príspevok zrušený."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Nevybral si nič pre odstránenie." msgstr "Nevybral si nič pre odstránenie."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Nevybral si nič pre nahlásenie." msgstr "Nevybral si nič pre nahlásenie."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Nie je možné nahlásiť tak veľa príspevkov naraz." msgstr "Nie je možné nahlásiť tak veľa príspevkov naraz."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Neplatné heslo…" msgstr "Neplatné heslo…"
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Neplatný obrázok." msgstr "Neplatný obrázok."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Neznámy formát súboru." msgstr "Neznámy formát súboru."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Maximálna veľkosť súboru: %maxsz% bajtov<br>Veľkosť Tvojho súboru: %filesz% bajtov." msgstr "Maximálna veľkosť súboru: %maxsz% bajtov<br>Veľkosť Tvojho súboru: %filesz% bajtov."
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Súbor bol príliš veľký." msgstr "Súbor bol príliš veľký."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr "Súbor <a href=\"%s\">už existuje</a>!" msgstr "Súbor <a href=\"%s\">už existuje</a>!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr "Tento súbor <a href=\"%s\">už existuje</a> v tomto vlákne!" msgstr "Tento súbor <a href=\"%s\">už existuje</a> v tomto vlákne!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Budeš musieť čakať ešte %s než to odstrániš." msgstr "Budeš musieť čakať ešte %s než to odstrániš."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "XSS exploit detekcie MIME typu (IE) detekovaný; Post zrušený." msgstr "XSS exploit detekcie MIME typu (IE) detekovaný; Post zrušený."
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "Nie je možné správne vložiť zadané video." msgstr "Nie je možné správne vložiť zadané video."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Vyzerá to, že bola zle opísaná verifikácia." msgstr "Vyzerá to, že bola zle opísaná verifikácia."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -541,19 +550,19 @@ msgstr "Môžeš naraz odbanovať iba %s užívateľov. Snažil si sa odbanovať
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Neplatné užívateľské meno a/alebo heslo." msgstr "Neplatné užívateľské meno a/alebo heslo."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Niesi moderátor…" msgstr "Niesi moderátor…"
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -561,71 +570,71 @@ msgstr "Neplatné užívateľské meno a/alebo heslo. Tvoj účet mohol byť zme
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Neplatné/modifikované cookies." msgstr "Neplatné/modifikované cookies."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Tvoj prehliadač neodovzdal vstup vtedy, kedy mal." msgstr "Tvoj prehliadač neodovzdal vstup vtedy, kedy mal."
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "Pole %s je povinné." msgstr "Pole %s je povinné."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "Pole %s je neplatné." msgstr "Pole %s je neplatné."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Doska %s už existuje." msgstr "Doska %s už existuje."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Nemáš na to povolenie." msgstr "Nemáš na to povolenie."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Príspevok neexistuje…" msgstr "Príspevok neexistuje…"
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Stránka nebola nájdená." msgstr "Stránka nebola nájdená."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "Moderátor <a href=\"?/users/%d\">už existuje</a>!" msgstr "Moderátor <a href=\"?/users/%d\">už existuje</a>!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Zadaná téma neexistuje!" msgstr "Zadaná téma neexistuje!"
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova." msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova."
@ -637,7 +646,7 @@ msgstr "Neplatný bezpečnostný token! Prosím, vráť sa a skús to znova."
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "UŽÍVATEĽ BOL ZA TENTO PRÍSPEVOK ZABANOVANÝ" msgstr "UŽÍVATEĽ BOL ZA TENTO PRÍSPEVOK ZABANOVANÝ"
@ -712,6 +721,9 @@ msgstr "Log moderácie"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -884,10 +896,13 @@ msgstr "Odstrániť príspevok"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Súbor" msgstr "Súbor"
@ -906,6 +921,7 @@ msgstr "Súbor"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -913,6 +929,7 @@ msgstr "Súbor"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Heslo" msgstr "Heslo"
@ -957,6 +974,11 @@ msgstr "Heslo"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1249,22 +1271,28 @@ msgid "Verification"
msgstr "Verifikácia" msgstr "Verifikácia"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "Alebo adresa" msgstr "Alebo adresa"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Vlož" msgstr "Vlož"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Vlajky" msgstr "Vlajky"
@ -1290,11 +1318,15 @@ msgstr "Vlajky"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Pripnuté" msgstr "Pripnuté"
@ -1320,11 +1352,15 @@ msgstr "Pripnuté"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Zamknuté" msgstr "Zamknuté"
@ -1350,21 +1386,27 @@ msgstr "Zamknuté"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "Čisté HTML" msgstr "Čisté HTML"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Pre odstránenie príspevku.)" msgstr "(Pre odstránenie príspevku.)"
@ -1373,14 +1415,15 @@ msgid "Post search is disabled"
msgstr "Vyhľadávanie príspevkov je vypnuté" msgstr "Vyhľadávanie príspevkov je vypnuté"
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Prosím, chvíľu počkaj pred ďalším vyhľadávaním." msgstr "Prosím, chvíľu počkaj pred ďalším vyhľadávaním."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Príliš všeobecný dotaz." msgstr "Príliš všeobecný dotaz."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
@ -1388,7 +1431,7 @@ msgstr[0] "%d výsledok v"
msgstr[1] "%d výsledky v" msgstr[1] "%d výsledky v"
msgstr[2] "%d výsledkov v" msgstr[2] "%d výsledkov v"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Žiadne výsledky." msgstr "Žiadne výsledky."
@ -1424,12 +1467,15 @@ msgstr "Žiadne výsledky."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Hľadať" msgstr "Hľadať"
@ -1456,6 +1502,7 @@ msgstr "Debug: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1632,6 +1679,11 @@ msgstr "Prispieť do noviniek"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1661,6 +1713,8 @@ msgstr "Tím"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1709,6 +1763,7 @@ msgstr "Nová poznámka"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1773,6 +1828,11 @@ msgstr "bez dôvodu"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1817,6 +1877,7 @@ msgstr "všetky dosky"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1844,6 +1905,7 @@ msgstr "sada"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1879,6 +1941,7 @@ msgstr "nikdy"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1941,6 +2004,7 @@ msgstr "Čas"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1992,6 +2056,7 @@ msgstr "Nový ban"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2076,19 +2141,19 @@ msgstr "Dôvod odvolania sa"
msgid "There are no reports." msgid "There are no reports."
msgstr "Žiadne nahlásenia" msgstr "Žiadne nahlásenia"
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "Ban neexistuje, alebo nie je pre Teba." msgstr "Ban neexistuje, alebo nie je pre Teba."
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "Nie je možné sa odvolať na takto dlhý ban." msgstr "Nie je možné sa odvolať na takto dlhý ban."
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "Nie je možné sa znova odvolať na tento ban." msgstr "Nie je možné sa znova odvolať na tento ban."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "Čakajúce odvolanie sa na tento ban už existuje." msgstr "Čakajúce odvolanie sa na tento ban už existuje."
@ -2454,3 +2519,13 @@ msgstr "Odstrániť užívateľa"
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "Zobraziť viac záznamov tohto užívateľa" msgstr "Zobraziť viac záznamov tohto užívateľa"
#. line 84
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:255
msgid "Flag"
msgstr "Vlajka"
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr "Žiadna"

View File

@ -8,8 +8,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 18:51+0000\n" "PO-Revision-Date: 2014-04-19 22:53+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -564,3 +564,7 @@ msgstr "Mouse üstüne gelince videolar oynasın"
#: ../../../../js/webm-settings.js:46 #: ../../../../js/webm-settings.js:46
msgid "Default volume" msgid "Default volume"
msgstr "Ses" msgstr "Ses"
#: ../../../../js/treeview.js:18
msgid "Tree view"
msgstr ""

View File

@ -1,14 +1,15 @@
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package. # This file is distributed under the same license as the PACKAGE package.
#
# Translators: # Translators:
# Tunai <tunayuyar39@gmail.com>, 2014 # Tunai <tunayuyar39@gmail.com>, 2014
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: vichan\n" "Project-Id-Version: vichan\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-04-18 19:24+0200\n" "POT-Creation-Date: 2014-04-20 00:49+0200\n"
"PO-Revision-Date: 2014-04-18 20:50+0000\n" "PO-Revision-Date: 2014-04-19 22:54+0000\n"
"Last-Translator: czaks <marcin@6irc.net>\n" "Last-Translator: czaks <marcin@6irc.net>\n"
"Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n" "Language-Team: Turkish (Turkey) (http://www.transifex.com/projects/p/tinyboard-vichan-devel/language/tr_TR/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -22,6 +23,7 @@ msgstr ""
#: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637 #: ../../../../inc/functions.php:620 ../../../../inc/functions.php:637
#: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640 #: ../../../../inc/functions.php:623 ../../../../inc/functions.php:640
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:643 ../../../../inc/functions.php:660
msgid "second" msgid "second"
msgid_plural "seconds" msgid_plural "seconds"
msgstr[0] "saniye" msgstr[0] "saniye"
@ -31,6 +33,7 @@ msgstr[0] "saniye"
#: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639 #: ../../../../inc/functions.php:622 ../../../../inc/functions.php:639
#: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642 #: ../../../../inc/functions.php:625 ../../../../inc/functions.php:642
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:645 ../../../../inc/functions.php:662
msgid "minute" msgid "minute"
msgid_plural "minutes" msgid_plural "minutes"
msgstr[0] "dakika" msgstr[0] "dakika"
@ -40,6 +43,7 @@ msgstr[0] "dakika"
#: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641 #: ../../../../inc/functions.php:624 ../../../../inc/functions.php:641
#: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644 #: ../../../../inc/functions.php:627 ../../../../inc/functions.php:644
#: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650 #: ../../../../inc/functions.php:633 ../../../../inc/functions.php:650
#: ../../../../inc/functions.php:647 ../../../../inc/functions.php:664
msgid "hour" msgid "hour"
msgid_plural "hours" msgid_plural "hours"
msgstr[0] "saat" msgstr[0] "saat"
@ -49,6 +53,7 @@ msgstr[0] "saat"
#: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643 #: ../../../../inc/functions.php:626 ../../../../inc/functions.php:643
#: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646 #: ../../../../inc/functions.php:629 ../../../../inc/functions.php:646
#: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652 #: ../../../../inc/functions.php:635 ../../../../inc/functions.php:652
#: ../../../../inc/functions.php:649 ../../../../inc/functions.php:666
msgid "day" msgid "day"
msgid_plural "days" msgid_plural "days"
msgstr[0] "gün" msgstr[0] "gün"
@ -58,6 +63,7 @@ msgstr[0] "gün"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:645
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654 #: ../../../../inc/functions.php:637 ../../../../inc/functions.php:654
#: ../../../../inc/functions.php:651 ../../../../inc/functions.php:668
msgid "week" msgid "week"
msgid_plural "weeks" msgid_plural "weeks"
msgstr[0] "hafta" msgstr[0] "hafta"
@ -67,13 +73,14 @@ msgstr[0] "hafta"
#: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648 #: ../../../../inc/functions.php:631 ../../../../inc/functions.php:648
#: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651 #: ../../../../inc/functions.php:634 ../../../../inc/functions.php:651
#: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657 #: ../../../../inc/functions.php:640 ../../../../inc/functions.php:657
#: ../../../../inc/functions.php:654 ../../../../inc/functions.php:671
msgid "year" msgid "year"
msgid_plural "years" msgid_plural "years"
msgstr[0] "yıl" msgstr[0] "yıl"
#: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670 #: ../../../../inc/functions.php:628 ../../../../inc/functions.php:670
#: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702 #: ../../../../inc/functions.php:699 ../../../../inc/functions.php:702
#: ../../../../inc/functions.php:708 #: ../../../../inc/functions.php:708 ../../../../inc/functions.php:722
msgid "Banned!" msgid "Banned!"
msgstr "Ban!" msgstr "Ban!"
@ -84,6 +91,7 @@ msgstr "Ban!"
#: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211 #: ../../../../inc/functions.php:1197 ../../../../inc/functions.php:1211
#: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214 #: ../../../../inc/functions.php:1200 ../../../../inc/functions.php:1214
#: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220 #: ../../../../inc/functions.php:1206 ../../../../inc/functions.php:1220
#: ../../../../inc/functions.php:1234
msgid "Previous" msgid "Previous"
msgstr "Geri" msgstr "Geri"
@ -93,7 +101,8 @@ msgstr "Geri"
#: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196 #: ../../../../inc/functions.php:1187 ../../../../inc/functions.php:1196
#: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225 #: ../../../../inc/functions.php:1216 ../../../../inc/functions.php:1225
#: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228 #: ../../../../inc/functions.php:1219 ../../../../inc/functions.php:1228
#: ../../../../inc/functions.php:1234 #: ../../../../inc/functions.php:1234 ../../../../inc/functions.php:1239
#: ../../../../inc/functions.php:1248
msgid "Next" msgid "Next"
msgstr "İleri" msgstr "İleri"
@ -243,7 +252,7 @@ msgstr "Konuyu başka bir tahtaya taşı"
#. If you want to alter the algorithm a bit. Default value is 2. #. If you want to alter the algorithm a bit. Default value is 2.
#. (n^x where x is the number of previous mutes) #. (n^x where x is the number of previous mutes)
#: ../../../../inc/config.php:346 ../../../../inc/config.php:473 #: ../../../../inc/config.php:346 ../../../../inc/config.php:473
#: ../../../../inc/config.php:474 #: ../../../../inc/config.php:474 ../../../../inc/config.php:475
msgid "You have been muted for unoriginal content." msgid "You have been muted for unoriginal content."
msgstr "Özgün içerik koymamaktan susturuldunuz." msgstr "Özgün içerik koymamaktan susturuldunuz."
@ -253,20 +262,20 @@ msgstr "Özgün içerik koymamaktan susturuldunuz."
#. "Post"). #. "Post").
#: ../../../../inc/config.php:677 ../../../../inc/config.php:781 #: ../../../../inc/config.php:677 ../../../../inc/config.php:781
#: ../../../../inc/config.php:772 ../../../../inc/config.php:774 #: ../../../../inc/config.php:772 ../../../../inc/config.php:774
#: ../../../../inc/config.php:776 #: ../../../../inc/config.php:776 ../../../../inc/config.php:792
msgid "New Topic" msgid "New Topic"
msgstr "Yeni Konu" msgstr "Yeni Konu"
#: ../../../../inc/config.php:678 ../../../../inc/config.php:782 #: ../../../../inc/config.php:678 ../../../../inc/config.php:782
#: ../../../../inc/config.php:773 ../../../../inc/config.php:775 #: ../../../../inc/config.php:773 ../../../../inc/config.php:775
#: ../../../../inc/config.php:777 #: ../../../../inc/config.php:777 ../../../../inc/config.php:793
msgid "New Reply" msgid "New Reply"
msgstr "Cevapla" msgstr "Cevapla"
#. Additional lines added to the footer of all pages. #. Additional lines added to the footer of all pages.
#: ../../../../inc/config.php:689 ../../../../inc/config.php:793 #: ../../../../inc/config.php:689 ../../../../inc/config.php:793
#: ../../../../inc/config.php:784 ../../../../inc/config.php:786 #: ../../../../inc/config.php:784 ../../../../inc/config.php:786
#: ../../../../inc/config.php:788 #: ../../../../inc/config.php:788 ../../../../inc/config.php:804
msgid "" msgid ""
"All trademarks, copyrights, comments, and images on this page are owned by " "All trademarks, copyrights, comments, and images on this page are owned by "
"and are the responsibility of their respective parties." "and are the responsibility of their respective parties."
@ -290,237 +299,237 @@ msgstr "Katılmadan önce biraz daha dolaşın bakalım."
#. Error messages #. Error messages
#: ../../../../inc/config.php:867 ../../../../inc/config.php:972 #: ../../../../inc/config.php:867 ../../../../inc/config.php:972
#: ../../../../inc/config.php:963 ../../../../inc/config.php:965 #: ../../../../inc/config.php:963 ../../../../inc/config.php:965
#: ../../../../inc/config.php:967 #: ../../../../inc/config.php:967 ../../../../inc/config.php:983
msgid "You look like a bot." msgid "You look like a bot."
msgstr "Bot gibi duruyorsunuz burdan." msgstr "Bot gibi duruyorsunuz burdan."
#: ../../../../inc/config.php:868 ../../../../inc/config.php:973 #: ../../../../inc/config.php:868 ../../../../inc/config.php:973
#: ../../../../inc/config.php:964 ../../../../inc/config.php:966 #: ../../../../inc/config.php:964 ../../../../inc/config.php:966
#: ../../../../inc/config.php:968 #: ../../../../inc/config.php:968 ../../../../inc/config.php:984
msgid "Your browser sent an invalid or no HTTP referer." msgid "Your browser sent an invalid or no HTTP referer."
msgstr "Tarayıcınız geçersiz bir HTTP referansı yolladı." msgstr "Tarayıcınız geçersiz bir HTTP referansı yolladı."
#: ../../../../inc/config.php:869 ../../../../inc/config.php:974 #: ../../../../inc/config.php:869 ../../../../inc/config.php:974
#: ../../../../inc/config.php:965 ../../../../inc/config.php:967 #: ../../../../inc/config.php:965 ../../../../inc/config.php:967
#: ../../../../inc/config.php:969 #: ../../../../inc/config.php:969 ../../../../inc/config.php:985
#, php-format #, php-format
msgid "The %s field was too long." msgid "The %s field was too long."
msgstr "%s çok uzun." msgstr "%s çok uzun."
#: ../../../../inc/config.php:870 ../../../../inc/config.php:975 #: ../../../../inc/config.php:870 ../../../../inc/config.php:975
#: ../../../../inc/config.php:966 ../../../../inc/config.php:968 #: ../../../../inc/config.php:966 ../../../../inc/config.php:968
#: ../../../../inc/config.php:970 #: ../../../../inc/config.php:970 ../../../../inc/config.php:986
msgid "The body was too long." msgid "The body was too long."
msgstr "İçerik çok uzun." msgstr "İçerik çok uzun."
#: ../../../../inc/config.php:871 ../../../../inc/config.php:976 #: ../../../../inc/config.php:871 ../../../../inc/config.php:976
#: ../../../../inc/config.php:967 ../../../../inc/config.php:969 #: ../../../../inc/config.php:967 ../../../../inc/config.php:969
#: ../../../../inc/config.php:971 #: ../../../../inc/config.php:971 ../../../../inc/config.php:987
msgid "The body was too short or empty." msgid "The body was too short or empty."
msgstr "İçerik çok kısa ya da bış" msgstr "İçerik çok kısa ya da bış"
#: ../../../../inc/config.php:872 ../../../../inc/config.php:977 #: ../../../../inc/config.php:872 ../../../../inc/config.php:977
#: ../../../../inc/config.php:968 ../../../../inc/config.php:970 #: ../../../../inc/config.php:968 ../../../../inc/config.php:970
#: ../../../../inc/config.php:972 #: ../../../../inc/config.php:972 ../../../../inc/config.php:988
msgid "You must upload an image." msgid "You must upload an image."
msgstr "Bir resim yüklemelisiniz." msgstr "Bir resim yüklemelisiniz."
#: ../../../../inc/config.php:873 ../../../../inc/config.php:978 #: ../../../../inc/config.php:873 ../../../../inc/config.php:978
#: ../../../../inc/config.php:969 ../../../../inc/config.php:971 #: ../../../../inc/config.php:969 ../../../../inc/config.php:971
#: ../../../../inc/config.php:973 #: ../../../../inc/config.php:973 ../../../../inc/config.php:989
msgid "The server failed to handle your upload." msgid "The server failed to handle your upload."
msgstr "Sunucumuz yüklemenizi kaldıramadı." msgstr "Sunucumuz yüklemenizi kaldıramadı."
#: ../../../../inc/config.php:874 ../../../../inc/config.php:979 #: ../../../../inc/config.php:874 ../../../../inc/config.php:979
#: ../../../../inc/config.php:970 ../../../../inc/config.php:972 #: ../../../../inc/config.php:970 ../../../../inc/config.php:972
#: ../../../../inc/config.php:974 #: ../../../../inc/config.php:974 ../../../../inc/config.php:990
msgid "Unsupported image format." msgid "Unsupported image format."
msgstr "Desteklenmeyen resim formatı." msgstr "Desteklenmeyen resim formatı."
#: ../../../../inc/config.php:875 ../../../../inc/config.php:980 #: ../../../../inc/config.php:875 ../../../../inc/config.php:980
#: ../../../../inc/config.php:971 ../../../../inc/config.php:973 #: ../../../../inc/config.php:971 ../../../../inc/config.php:973
#: ../../../../inc/config.php:975 #: ../../../../inc/config.php:975 ../../../../inc/config.php:991
msgid "Invalid board!" msgid "Invalid board!"
msgstr "Geçersiz tahta!" msgstr "Geçersiz tahta!"
#: ../../../../inc/config.php:876 ../../../../inc/config.php:981 #: ../../../../inc/config.php:876 ../../../../inc/config.php:981
#: ../../../../inc/config.php:972 ../../../../inc/config.php:974 #: ../../../../inc/config.php:972 ../../../../inc/config.php:974
#: ../../../../inc/config.php:976 #: ../../../../inc/config.php:976 ../../../../inc/config.php:992
msgid "Thread specified does not exist." msgid "Thread specified does not exist."
msgstr "Böyle bir konu yok." msgstr "Böyle bir konu yok."
#: ../../../../inc/config.php:877 ../../../../inc/config.php:982 #: ../../../../inc/config.php:877 ../../../../inc/config.php:982
#: ../../../../inc/config.php:973 ../../../../inc/config.php:975 #: ../../../../inc/config.php:973 ../../../../inc/config.php:975
#: ../../../../inc/config.php:977 #: ../../../../inc/config.php:977 ../../../../inc/config.php:993
msgid "Thread locked. You may not reply at this time." msgid "Thread locked. You may not reply at this time."
msgstr "Konu kilitlendi. Şu an cevaplayamassınız." msgstr "Konu kilitlendi. Şu an cevaplayamassınız."
#: ../../../../inc/config.php:878 ../../../../inc/config.php:983 #: ../../../../inc/config.php:878 ../../../../inc/config.php:983
#: ../../../../inc/config.php:974 ../../../../inc/config.php:976 #: ../../../../inc/config.php:974 ../../../../inc/config.php:976
#: ../../../../inc/config.php:978 #: ../../../../inc/config.php:978 ../../../../inc/config.php:994
msgid "Thread has reached its maximum reply limit." msgid "Thread has reached its maximum reply limit."
msgstr "Konu azami cevap sayısına ulaştı." msgstr "Konu azami cevap sayısına ulaştı."
#: ../../../../inc/config.php:879 ../../../../inc/config.php:984 #: ../../../../inc/config.php:879 ../../../../inc/config.php:984
#: ../../../../inc/config.php:975 ../../../../inc/config.php:977 #: ../../../../inc/config.php:975 ../../../../inc/config.php:977
#: ../../../../inc/config.php:979 #: ../../../../inc/config.php:979 ../../../../inc/config.php:995
msgid "Thread has reached its maximum image limit." msgid "Thread has reached its maximum image limit."
msgstr "Konu azami resim limitine ulaştı." msgstr "Konu azami resim limitine ulaştı."
#: ../../../../inc/config.php:880 ../../../../inc/config.php:985 #: ../../../../inc/config.php:880 ../../../../inc/config.php:985
#: ../../../../inc/config.php:976 ../../../../inc/config.php:978 #: ../../../../inc/config.php:976 ../../../../inc/config.php:978
#: ../../../../inc/config.php:980 #: ../../../../inc/config.php:980 ../../../../inc/config.php:996
msgid "You didn't make a post." msgid "You didn't make a post."
msgstr "Bi'şey yapmadınız." msgstr "Bi'şey yapmadınız."
#: ../../../../inc/config.php:881 ../../../../inc/config.php:986 #: ../../../../inc/config.php:881 ../../../../inc/config.php:986
#: ../../../../inc/config.php:977 ../../../../inc/config.php:979 #: ../../../../inc/config.php:977 ../../../../inc/config.php:979
#: ../../../../inc/config.php:981 #: ../../../../inc/config.php:981 ../../../../inc/config.php:997
msgid "Flood detected; Post discarded." msgid "Flood detected; Post discarded."
msgstr "Floodcu pezevenk." msgstr "Floodcu pezevenk."
#: ../../../../inc/config.php:882 ../../../../inc/config.php:987 #: ../../../../inc/config.php:882 ../../../../inc/config.php:987
#: ../../../../inc/config.php:978 ../../../../inc/config.php:980 #: ../../../../inc/config.php:978 ../../../../inc/config.php:980
#: ../../../../inc/config.php:982 #: ../../../../inc/config.php:982 ../../../../inc/config.php:998
msgid "Your request looks automated; Post discarded." msgid "Your request looks automated; Post discarded."
msgstr "Robot gibi görünüyorsunuz." msgstr "Robot gibi görünüyorsunuz."
#: ../../../../inc/config.php:883 ../../../../inc/config.php:988 #: ../../../../inc/config.php:883 ../../../../inc/config.php:988
#: ../../../../inc/config.php:979 ../../../../inc/config.php:981 #: ../../../../inc/config.php:979 ../../../../inc/config.php:981
#: ../../../../inc/config.php:983 #: ../../../../inc/config.php:983 ../../../../inc/config.php:999
msgid "Unoriginal content!" msgid "Unoriginal content!"
msgstr "Özgün olmayan içerik!" msgstr "Özgün olmayan içerik!"
#: ../../../../inc/config.php:884 ../../../../inc/config.php:989 #: ../../../../inc/config.php:884 ../../../../inc/config.php:989
#: ../../../../inc/config.php:980 ../../../../inc/config.php:982 #: ../../../../inc/config.php:980 ../../../../inc/config.php:982
#: ../../../../inc/config.php:984 #: ../../../../inc/config.php:984 ../../../../inc/config.php:1000
#, php-format #, php-format
msgid "Unoriginal content! You have been muted for %d seconds." msgid "Unoriginal content! You have been muted for %d seconds."
msgstr "Özgün olmayan içerik! %d saniye susturuldunuz." msgstr "Özgün olmayan içerik! %d saniye susturuldunuz."
#: ../../../../inc/config.php:885 ../../../../inc/config.php:990 #: ../../../../inc/config.php:885 ../../../../inc/config.php:990
#: ../../../../inc/config.php:981 ../../../../inc/config.php:983 #: ../../../../inc/config.php:981 ../../../../inc/config.php:983
#: ../../../../inc/config.php:985 #: ../../../../inc/config.php:985 ../../../../inc/config.php:1001
#, php-format #, php-format
msgid "You are muted! Expires in %d seconds." msgid "You are muted! Expires in %d seconds."
msgstr "Susturuldunuz! %d saniyeye geçer." msgstr "Susturuldunuz! %d saniyeye geçer."
#: ../../../../inc/config.php:886 ../../../../inc/config.php:991 #: ../../../../inc/config.php:886 ../../../../inc/config.php:991
#: ../../../../inc/config.php:982 ../../../../inc/config.php:984 #: ../../../../inc/config.php:982 ../../../../inc/config.php:984
#: ../../../../inc/config.php:986 #: ../../../../inc/config.php:986 ../../../../inc/config.php:1002
#, php-format #, php-format
msgid "Your IP address is listed in %s." msgid "Your IP address is listed in %s."
msgstr "IP adresiniz %s listesinde." msgstr "IP adresiniz %s listesinde."
#: ../../../../inc/config.php:887 ../../../../inc/config.php:992 #: ../../../../inc/config.php:887 ../../../../inc/config.php:992
#: ../../../../inc/config.php:983 ../../../../inc/config.php:985 #: ../../../../inc/config.php:983 ../../../../inc/config.php:985
#: ../../../../inc/config.php:987 #: ../../../../inc/config.php:987 ../../../../inc/config.php:1003
msgid "Too many links; flood detected." msgid "Too many links; flood detected."
msgstr "Çok fazla link var, flood gibi." msgstr "Çok fazla link var, flood gibi."
#: ../../../../inc/config.php:888 ../../../../inc/config.php:993 #: ../../../../inc/config.php:888 ../../../../inc/config.php:993
#: ../../../../inc/config.php:984 ../../../../inc/config.php:986 #: ../../../../inc/config.php:984 ../../../../inc/config.php:986
#: ../../../../inc/config.php:988 #: ../../../../inc/config.php:988 ../../../../inc/config.php:1004
msgid "Too many cites; post discarded." msgid "Too many cites; post discarded."
msgstr "Çok fazla alıntı var." msgstr "Çok fazla alıntı var."
#: ../../../../inc/config.php:889 ../../../../inc/config.php:994 #: ../../../../inc/config.php:889 ../../../../inc/config.php:994
#: ../../../../inc/config.php:985 ../../../../inc/config.php:987 #: ../../../../inc/config.php:985 ../../../../inc/config.php:987
#: ../../../../inc/config.php:989 #: ../../../../inc/config.php:989 ../../../../inc/config.php:1005
msgid "Too many cross-board links; post discarded." msgid "Too many cross-board links; post discarded."
msgstr "Çok fazla çapraz tahta linki." msgstr "Çok fazla çapraz tahta linki."
#: ../../../../inc/config.php:890 ../../../../inc/config.php:995 #: ../../../../inc/config.php:890 ../../../../inc/config.php:995
#: ../../../../inc/config.php:986 ../../../../inc/config.php:988 #: ../../../../inc/config.php:986 ../../../../inc/config.php:988
#: ../../../../inc/config.php:990 #: ../../../../inc/config.php:990 ../../../../inc/config.php:1006
msgid "You didn't select anything to delete." msgid "You didn't select anything to delete."
msgstr "Silmek için bir şey seçmediniz." msgstr "Silmek için bir şey seçmediniz."
#: ../../../../inc/config.php:891 ../../../../inc/config.php:996 #: ../../../../inc/config.php:891 ../../../../inc/config.php:996
#: ../../../../inc/config.php:987 ../../../../inc/config.php:989 #: ../../../../inc/config.php:987 ../../../../inc/config.php:989
#: ../../../../inc/config.php:991 #: ../../../../inc/config.php:991 ../../../../inc/config.php:1007
msgid "You didn't select anything to report." msgid "You didn't select anything to report."
msgstr "Şikayet edecek bir şey seçmediniz." msgstr "Şikayet edecek bir şey seçmediniz."
#: ../../../../inc/config.php:892 ../../../../inc/config.php:997 #: ../../../../inc/config.php:892 ../../../../inc/config.php:997
#: ../../../../inc/config.php:988 ../../../../inc/config.php:990 #: ../../../../inc/config.php:988 ../../../../inc/config.php:990
#: ../../../../inc/config.php:992 #: ../../../../inc/config.php:992 ../../../../inc/config.php:1008
msgid "You can't report that many posts at once." msgid "You can't report that many posts at once."
msgstr "Bu kadar çok girdiyi bir kerede şikayet edemezsiniz." msgstr "Bu kadar çok girdiyi bir kerede şikayet edemezsiniz."
#: ../../../../inc/config.php:893 ../../../../inc/config.php:998 #: ../../../../inc/config.php:893 ../../../../inc/config.php:998
#: ../../../../inc/config.php:989 ../../../../inc/config.php:991 #: ../../../../inc/config.php:989 ../../../../inc/config.php:991
#: ../../../../inc/config.php:993 #: ../../../../inc/config.php:993 ../../../../inc/config.php:1009
msgid "Wrong password…" msgid "Wrong password…"
msgstr "Yanlış şifre..." msgstr "Yanlış şifre..."
#: ../../../../inc/config.php:894 ../../../../inc/config.php:999 #: ../../../../inc/config.php:894 ../../../../inc/config.php:999
#: ../../../../inc/config.php:990 ../../../../inc/config.php:992 #: ../../../../inc/config.php:990 ../../../../inc/config.php:992
#: ../../../../inc/config.php:994 #: ../../../../inc/config.php:994 ../../../../inc/config.php:1010
msgid "Invalid image." msgid "Invalid image."
msgstr "Geçersiz resim." msgstr "Geçersiz resim."
#: ../../../../inc/config.php:895 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:895 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:991 ../../../../inc/config.php:993 #: ../../../../inc/config.php:991 ../../../../inc/config.php:993
#: ../../../../inc/config.php:995 #: ../../../../inc/config.php:995 ../../../../inc/config.php:1011
msgid "Unknown file extension." msgid "Unknown file extension."
msgstr "Bilinmeyen dosya uzantısı." msgstr "Bilinmeyen dosya uzantısı."
#: ../../../../inc/config.php:896 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:896 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:992 ../../../../inc/config.php:994 #: ../../../../inc/config.php:992 ../../../../inc/config.php:994
#: ../../../../inc/config.php:996 #: ../../../../inc/config.php:996 ../../../../inc/config.php:1012
msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes" msgid "Maximum file size: %maxsz% bytes<br>Your file's size: %filesz% bytes"
msgstr "Azami dosya boyutu: %maxsz% byte <br> Dosyanızın boyutu %filesz% byte" msgstr "Azami dosya boyutu: %maxsz% byte <br> Dosyanızın boyutu %filesz% byte"
#: ../../../../inc/config.php:897 ../../../../inc/config.php:1002 #: ../../../../inc/config.php:897 ../../../../inc/config.php:1002
#: ../../../../inc/config.php:993 ../../../../inc/config.php:995 #: ../../../../inc/config.php:993 ../../../../inc/config.php:995
#: ../../../../inc/config.php:997 #: ../../../../inc/config.php:997 ../../../../inc/config.php:1013
msgid "The file was too big." msgid "The file was too big."
msgstr "Dosyanız çok büyük." msgstr "Dosyanız çok büyük."
#: ../../../../inc/config.php:898 ../../../../inc/config.php:1003 #: ../../../../inc/config.php:898 ../../../../inc/config.php:1003
#: ../../../../inc/config.php:994 ../../../../inc/config.php:996 #: ../../../../inc/config.php:994 ../../../../inc/config.php:996
#: ../../../../inc/config.php:998 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1014
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a>!" msgid "That file <a href=\"%s\">already exists</a>!"
msgstr " <a href=\"%s\"> Bu dosya </a> zaten var.!" msgstr " <a href=\"%s\"> Bu dosya </a> zaten var.!"
#: ../../../../inc/config.php:899 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:899 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:995 ../../../../inc/config.php:997 #: ../../../../inc/config.php:995 ../../../../inc/config.php:997
#: ../../../../inc/config.php:999 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1015
#, php-format #, php-format
msgid "That file <a href=\"%s\">already exists</a> in this thread!" msgid "That file <a href=\"%s\">already exists</a> in this thread!"
msgstr " <a href=\"%s\">Bu dosya </a> bu konuda zaten var!" msgstr " <a href=\"%s\">Bu dosya </a> bu konuda zaten var!"
#: ../../../../inc/config.php:900 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:900 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:996 ../../../../inc/config.php:998 #: ../../../../inc/config.php:996 ../../../../inc/config.php:998
#: ../../../../inc/config.php:1000 #: ../../../../inc/config.php:1000 ../../../../inc/config.php:1016
#, php-format #, php-format
msgid "You'll have to wait another %s before deleting that." msgid "You'll have to wait another %s before deleting that."
msgstr "Silmeden önce %s kadar beklemelisiniz." msgstr "Silmeden önce %s kadar beklemelisiniz."
#: ../../../../inc/config.php:901 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:901 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:997 ../../../../inc/config.php:999 #: ../../../../inc/config.php:997 ../../../../inc/config.php:999
#: ../../../../inc/config.php:1001 #: ../../../../inc/config.php:1001 ../../../../inc/config.php:1017
msgid "MIME type detection XSS exploit (IE) detected; post discarded." msgid "MIME type detection XSS exploit (IE) detected; post discarded."
msgstr "FATAL ÖRÖR" msgstr "FATAL ÖRÖR"
#: ../../../../inc/config.php:902 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:902 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:998 ../../../../inc/config.php:1000 #: ../../../../inc/config.php:998 ../../../../inc/config.php:1000
#: ../../../../inc/config.php:1002 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1018
msgid "Couldn't make sense of the URL of the video you tried to embed." msgid "Couldn't make sense of the URL of the video you tried to embed."
msgstr "Gömmeye çalıştığınız video linkinden bişey anlayamadık." msgstr "Gömmeye çalıştığınız video linkinden bişey anlayamadık."
#: ../../../../inc/config.php:903 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:903 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:999 ../../../../inc/config.php:1001 #: ../../../../inc/config.php:999 ../../../../inc/config.php:1001
#: ../../../../inc/config.php:1003 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1019
msgid "You seem to have mistyped the verification." msgid "You seem to have mistyped the verification."
msgstr "Doğrulamayı yanlış girmiş gibisin." msgstr "Doğrulamayı yanlış girmiş gibisin."
#. Moderator errors #. Moderator errors
#: ../../../../inc/config.php:906 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:906 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004 #: ../../../../inc/config.php:1002 ../../../../inc/config.php:1004
#: ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1022
#, php-format #, php-format
msgid "" msgid ""
"You are only allowed to unban %s users at a time. You tried to unban %u " "You are only allowed to unban %s users at a time. You tried to unban %u "
@ -529,19 +538,19 @@ msgstr "Bir seferde sadece %s kullanıcının banını kaldırabilirsiniz. Siz %
#: ../../../../inc/config.php:907 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:907 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005 #: ../../../../inc/config.php:1003 ../../../../inc/config.php:1005
#: ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1023
msgid "Invalid username and/or password." msgid "Invalid username and/or password."
msgstr "Geçersiz kullanıcı adı ve/veya şifre." msgstr "Geçersiz kullanıcı adı ve/veya şifre."
#: ../../../../inc/config.php:908 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:908 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006 #: ../../../../inc/config.php:1004 ../../../../inc/config.php:1006
#: ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1024
msgid "You are not a mod…" msgid "You are not a mod…"
msgstr "Mod değilsiniz ki..." msgstr "Mod değilsiniz ki..."
#: ../../../../inc/config.php:909 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:909 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007 #: ../../../../inc/config.php:1005 ../../../../inc/config.php:1007
#: ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1025
msgid "" msgid ""
"Invalid username and/or password. Your user may have been deleted or " "Invalid username and/or password. Your user may have been deleted or "
"changed." "changed."
@ -549,71 +558,71 @@ msgstr "Geçersiz kullanıcı adı ve/veya şifre. Kullanıcı hesabınız silin
#: ../../../../inc/config.php:910 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:910 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008 #: ../../../../inc/config.php:1006 ../../../../inc/config.php:1008
#: ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1026
msgid "Invalid/malformed cookies." msgid "Invalid/malformed cookies."
msgstr "Geçersiz ya da bayatlamış kurabiye." msgstr "Geçersiz ya da bayatlamış kurabiye."
#: ../../../../inc/config.php:911 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:911 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009 #: ../../../../inc/config.php:1007 ../../../../inc/config.php:1009
#: ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1027
msgid "Your browser didn't submit an input when it should have." msgid "Your browser didn't submit an input when it should have."
msgstr "Tarayıcınız zamanında göndermesi gerekeni göndermedi" msgstr "Tarayıcınız zamanında göndermesi gerekeni göndermedi"
#: ../../../../inc/config.php:912 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:912 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010 #: ../../../../inc/config.php:1008 ../../../../inc/config.php:1010
#: ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1028
#, php-format #, php-format
msgid "The %s field is required." msgid "The %s field is required."
msgstr "%s gerekli." msgstr "%s gerekli."
#: ../../../../inc/config.php:913 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:913 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011 #: ../../../../inc/config.php:1009 ../../../../inc/config.php:1011
#: ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1029
#, php-format #, php-format
msgid "The %s field was invalid." msgid "The %s field was invalid."
msgstr "%s geçersiz." msgstr "%s geçersiz."
#: ../../../../inc/config.php:914 ../../../../inc/config.php:1019 #: ../../../../inc/config.php:914 ../../../../inc/config.php:1019
#: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012 #: ../../../../inc/config.php:1010 ../../../../inc/config.php:1012
#: ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1030
#, php-format #, php-format
msgid "There is already a %s board." msgid "There is already a %s board."
msgstr "Zaten %s böyle bir tahta var." msgstr "Zaten %s böyle bir tahta var."
#: ../../../../inc/config.php:915 ../../../../inc/config.php:1020 #: ../../../../inc/config.php:915 ../../../../inc/config.php:1020
#: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013 #: ../../../../inc/config.php:1011 ../../../../inc/config.php:1013
#: ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1031
msgid "You don't have permission to do that." msgid "You don't have permission to do that."
msgstr "Bunu yapmak için izniniz yok." msgstr "Bunu yapmak için izniniz yok."
#: ../../../../inc/config.php:916 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:916 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014 #: ../../../../inc/config.php:1012 ../../../../inc/config.php:1014
#: ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1032
msgid "That post doesn't exist…" msgid "That post doesn't exist…"
msgstr "Böyle bir girdi yok..." msgstr "Böyle bir girdi yok..."
#: ../../../../inc/config.php:917 ../../../../inc/config.php:1022 #: ../../../../inc/config.php:917 ../../../../inc/config.php:1022
#: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015 #: ../../../../inc/config.php:1013 ../../../../inc/config.php:1015
#: ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1017 ../../../../inc/config.php:1033
msgid "Page not found." msgid "Page not found."
msgstr "Sayfa bulunamadı." msgstr "Sayfa bulunamadı."
#: ../../../../inc/config.php:918 ../../../../inc/config.php:1023 #: ../../../../inc/config.php:918 ../../../../inc/config.php:1023
#: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016 #: ../../../../inc/config.php:1014 ../../../../inc/config.php:1016
#: ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1018 ../../../../inc/config.php:1034
#, php-format #, php-format
msgid "That mod <a href=\"?/users/%d\">already exists</a>!" msgid "That mod <a href=\"?/users/%d\">already exists</a>!"
msgstr "<a href=\"?/users/%d\">Böyle bir mod</a>! zaten var!" msgstr "<a href=\"?/users/%d\">Böyle bir mod</a>! zaten var!"
#: ../../../../inc/config.php:919 ../../../../inc/config.php:1024 #: ../../../../inc/config.php:919 ../../../../inc/config.php:1024
#: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1015 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1035
msgid "That theme doesn't exist!" msgid "That theme doesn't exist!"
msgstr "Böyle bir tema yok." msgstr "Böyle bir tema yok."
#: ../../../../inc/config.php:920 ../../../../inc/config.php:1025 #: ../../../../inc/config.php:920 ../../../../inc/config.php:1025
#: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018 #: ../../../../inc/config.php:1016 ../../../../inc/config.php:1018
#: ../../../../inc/config.php:1020 #: ../../../../inc/config.php:1020 ../../../../inc/config.php:1036
msgid "Invalid security token! Please go back and try again." msgid "Invalid security token! Please go back and try again."
msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin." msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin."
@ -625,7 +634,7 @@ msgstr "Güvenlik kodu yanlış! Lütfen tekrar deneyin."
#. "permanently" (with %LENGTH% being the uppercase equivalent). #. "permanently" (with %LENGTH% being the uppercase equivalent).
#: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189 #: ../../../../inc/config.php:1086 ../../../../inc/config.php:1189
#: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185 #: ../../../../inc/config.php:1180 ../../../../inc/config.php:1185
#: ../../../../inc/config.php:1187 #: ../../../../inc/config.php:1187 ../../../../inc/config.php:1203
msgid "USER WAS BANNED FOR THIS POST" msgid "USER WAS BANNED FOR THIS POST"
msgstr "KULLANICI BU GİRDİ SEBEBİYLE BANLANDI" msgstr "KULLANICI BU GİRDİ SEBEBİYLE BANLANDI"
@ -700,6 +709,9 @@ msgstr "Moderasyon logları"
#. line 18 #. line 18
#. line 104 #. line 104
#. line 20 #. line 20
#. line 104
#. line 20
#. line 18
#: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852 #: ../../../../inc/mod/pages.php:838 ../../../../inc/mod/pages.php:852
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:275
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:71
@ -872,10 +884,13 @@ msgstr "Girdiyi sil"
#. line 3 #. line 3
#. line 84 #. line 84
#. line 3 #. line 3
#. line 97
#. line 3
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:26
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:250
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:253
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:29
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:290
msgid "File" msgid "File"
msgstr "Dosya" msgstr "Dosya"
@ -894,6 +909,7 @@ msgstr "Dosya"
#. line 14 #. line 14
#. line 131 #. line 131
#. line 14 #. line 14
#. line 144
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:28
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:364
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:367
@ -901,6 +917,7 @@ msgstr "Dosya"
#: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48 #: ../../../../templates/cache/00/31/a027d7b6d57819b6e43e58620f3f4c76194dd75db65fc888a5053ce62803.php:48
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:363
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:69
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:400
msgid "Password" msgid "Password"
msgstr "Şifre" msgstr "Şifre"
@ -945,6 +962,11 @@ msgstr "Şifre"
#. line 8 #. line 8
#. line 108 #. line 108
#. line 32 #. line 32
#. line 5
#. line 8
#. line 108
#. line 32
#. line 23
#: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39 #: ../../../../templates/cache/82/40/4c4a4b82f787181e6500ce83494d.php:39
#: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42 #: ../../../../templates/cache/17/2f/ea79f6d94768f645ed33b3f5c1a54caee235af04d24b88e34cc8c2d48583.php:42
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:285
@ -1229,22 +1251,28 @@ msgid "Verification"
msgstr "Onaylama" msgstr "Onaylama"
#. line 90 #. line 90
#. line 103
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:262
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:265
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:302
msgid "Or URL" msgid "Or URL"
msgstr "ya da Link" msgstr "ya da Link"
#. line 100 #. line 100
#. line 113
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:282
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:285
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:322
msgid "Embed" msgid "Embed"
msgstr "Göm" msgstr "Göm"
#. line 112 #. line 112
#. line 111 #. line 111
#. line 124
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:306
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:309
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:305
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:342
msgid "Flags" msgid "Flags"
msgstr "Bayrak" msgstr "Bayrak"
@ -1270,11 +1298,15 @@ msgstr "Bayrak"
#. line 116 #. line 116
#. line 115 #. line 115
#. line 116 #. line 116
#. line 128
#. line 129
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:316
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:320
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:319
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:323
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:315
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:352
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:356
msgid "Sticky" msgid "Sticky"
msgstr "Yapışkan" msgstr "Yapışkan"
@ -1300,11 +1332,15 @@ msgstr "Yapışkan"
#. line 120 #. line 120
#. line 119 #. line 119
#. line 120 #. line 120
#. line 132
#. line 133
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:330
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:334
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:333
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:337
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:329
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:366
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:370
msgid "Lock" msgid "Lock"
msgstr "Kilitli" msgstr "Kilitli"
@ -1330,21 +1366,27 @@ msgstr "Kilitli"
#. line 124 #. line 124
#. line 123 #. line 123
#. line 124 #. line 124
#. line 136
#. line 137
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:344
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:348
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:347
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:351
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:343
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:380
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:384
msgid "Raw HTML" msgid "Raw HTML"
msgstr "Sadece HTML" msgstr "Sadece HTML"
#. line 137 #. line 137
#. line 136 #. line 136
#. line 141 #. line 141
#. line 154
#: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374 #: ../../../../templates/cache/0c/37/9331df01df7c2986d77a02d3beb0.php:374
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:377
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:373
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378 #: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:378
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:415
msgid "(For file deletion.)" msgid "(For file deletion.)"
msgstr "(Dosya silmek için.)" msgstr "(Dosya silmek için.)"
@ -1353,20 +1395,21 @@ msgid "Post search is disabled"
msgstr "Arama kullanılabilir değil." msgstr "Arama kullanılabilir değil."
#: ../../../../search.php:25 ../../../../search.php:31 #: ../../../../search.php:25 ../../../../search.php:31
#: ../../../../search.php:29 ../../../../search.php:35
msgid "Wait a while before searching again, please." msgid "Wait a while before searching again, please."
msgstr "Arama yapmadan önce biraz bekleyin." msgstr "Arama yapmadan önce biraz bekleyin."
#: ../../../../search.php:131 #: ../../../../search.php:131 ../../../../search.php:135
msgid "Query too broad." msgid "Query too broad."
msgstr "Çok geniş arama." msgstr "Çok geniş arama."
#: ../../../../search.php:152 #: ../../../../search.php:152 ../../../../search.php:156
#, php-format #, php-format
msgid "%d result in" msgid "%d result in"
msgid_plural "%d results in" msgid_plural "%d results in"
msgstr[0] "%d sonuç" msgstr[0] "%d sonuç"
#: ../../../../search.php:163 #: ../../../../search.php:163 ../../../../search.php:167
msgid "No results." msgid "No results."
msgstr "Sonuç yok." msgstr "Sonuç yok."
@ -1402,12 +1445,15 @@ msgstr "Sonuç yok."
#. line 16 #. line 16
#. line 2 #. line 2
#. line 13 #. line 13
#. line 115
#. line 16
#: ../../../../search.php:168 #: ../../../../search.php:168
#: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334 #: ../../../../templates/cache/72/7e/271125664718133518fd942f20fb724224e100f8a0d47cb0b52f895ac12f.php:334
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:83
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:66
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:25
#: ../../../../search.php:172
msgid "Search" msgid "Search"
msgstr "Arama" msgstr "Arama"
@ -1434,6 +1480,7 @@ msgstr "Debug: APC"
#: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017 #: ../../../../inc/config.php:1026 ../../../../inc/config.php:1017
#: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021 #: ../../../../inc/config.php:1019 ../../../../inc/config.php:1021
#: ../../../../inc/config.php:1037
msgid "" msgid ""
"Your code contained PHP syntax errors. Please go back and correct them. PHP " "Your code contained PHP syntax errors. Please go back and correct them. PHP "
"says: " "says: "
@ -1610,6 +1657,11 @@ msgstr "Haber gönder"
#. line 63 #. line 63
#. line 152 #. line 152
#. line 182 #. line 182
#. line 24
#. line 63
#. line 152
#. line 182
#. line 67
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:81
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:186
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:391
@ -1639,6 +1691,8 @@ msgstr "Yönetim"
#. line 18 #. line 18
#. line 25 #. line 25
#. line 68 #. line 68
#. line 25
#. line 68
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:85
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:197
#: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63 #: ../../../../templates/cache/6a/a4/b13523024ba2660a4f8f05e0c909c55477f675db9a2620075762ac245c91.php:63
@ -1687,6 +1741,7 @@ msgstr "Yeni not"
#. line 94 #. line 94
#. line 7 #. line 7
#. line 94 #. line 94
#. line 7
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:251
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:36
msgid "Status" msgid "Status"
@ -1751,6 +1806,11 @@ msgstr "sebepsizce"
#. line 118 #. line 118
#. line 184 #. line 184
#. line 65 #. line 65
#. line 3
#. line 118
#. line 184
#. line 65
#. line 33
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:309
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:472
#: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160 #: ../../../../templates/cache/88/92/8e730a689121629afa3d2c0f374e1f246baa76e7cf0f3ec680f51805eccd.php:160
@ -1795,6 +1855,7 @@ msgstr "tüm tahtalar"
#. line 43 #. line 43
#. line 50 #. line 50
#. line 128 #. line 128
#. line 43
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:333
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:51
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:125
@ -1822,6 +1883,7 @@ msgstr "Ayarla"
#. line 47 #. line 47
#. line 52 #. line 52
#. line 132 #. line 132
#. line 47
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:343
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:59
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:135
@ -1857,6 +1919,7 @@ msgstr "hiç bir zaman"
#. line 57 #. line 57
#. line 53 #. line 53
#. line 142 #. line 142
#. line 57
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:367
#: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63 #: ../../../../templates/cache/ba/55/2553cc018aecf7d29a62331aec4bedc71b646817c7e4c4e7d1a885263676.php:63
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:159
@ -1919,6 +1982,7 @@ msgstr "Zaman"
#. line 89 #. line 89
#. line 137 #. line 137
#. line 185 #. line 185
#. line 89
#: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476 #: ../../../../templates/cache/b1/4c/16a427b0d49ecf353c259d9fb606841783484eca9d790e766fdf0e3e9754.php:476
#: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234 #: ../../../../templates/cache/03/13/62c259daae13f7b39b689162b7cd380b2673bee7e05b90f0d34b69a01190.php:234
#: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42 #: ../../../../templates/cache/f8/05/d647b76d6ba28842b313895b0d435295026f1912dc49639bd64e3b42eba3.php:42
@ -1970,6 +2034,7 @@ msgstr "Yeni Ban"
#. line 5 #. line 5
#. line 2 #. line 2
#. line 5 #. line 5
#. line 2
#: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25 #: ../../../../templates/cache/73/f8/5e3142a8a6f8d7e40422ff577e83b0dedf55a7cb9bc7082839b24f653545.php:25
#: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31 #: ../../../../templates/cache/cb/8b/63013711213735996df92becb7bd43d753c51314cfe5433c562706333eb0.php:31
msgid "Phrase:" msgid "Phrase:"
@ -2054,19 +2119,19 @@ msgstr "Müracaat sebebi"
msgid "There are no reports." msgid "There are no reports."
msgstr "Şikayet yok." msgstr "Şikayet yok."
#: ../../../../post.php:802 ../../../../post.php:811 #: ../../../../post.php:802 ../../../../post.php:811 ../../../../post.php:825
msgid "That ban doesn't exist or is not for you." msgid "That ban doesn't exist or is not for you."
msgstr "Böyle bir ban yok, ya da sizin için değil" msgstr "Böyle bir ban yok, ya da sizin için değil"
#: ../../../../post.php:806 ../../../../post.php:815 #: ../../../../post.php:806 ../../../../post.php:815 ../../../../post.php:829
msgid "You cannot appeal a ban of this length." msgid "You cannot appeal a ban of this length."
msgstr "Bu kadar uzun ban için müracaat yapamassınız" msgstr "Bu kadar uzun ban için müracaat yapamassınız"
#: ../../../../post.php:813 ../../../../post.php:822 #: ../../../../post.php:813 ../../../../post.php:822 ../../../../post.php:836
msgid "You cannot appeal this ban again." msgid "You cannot appeal this ban again."
msgstr "Tekrar müracaat edemezsiniz." msgstr "Tekrar müracaat edemezsiniz."
#: ../../../../post.php:818 ../../../../post.php:827 #: ../../../../post.php:818 ../../../../post.php:827 ../../../../post.php:841
msgid "There is already a pending appeal for this ban." msgid "There is already a pending appeal for this ban."
msgstr "Zaten bu ban için bir müracaat var." msgstr "Zaten bu ban için bir müracaat var."
@ -2432,3 +2497,13 @@ msgstr "Kullanıcıyı sil"
#: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331 #: ../../../../templates/cache/37/ea/10898251a344348e062662ce7a7b7f6c8dae001e2c860ce58ea35cedd935.php:331
msgid "View more logs for this user." msgid "View more logs for this user."
msgstr "Bu kullanıcı için daha fazla log görüntüle" 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 ""
#. line 87
#: ../../../../templates/cache/cf/63/151e140d85df674832f4ede3f3e7811b97d4efa91cac6086ca7e8ce65d25.php:261
msgid "None"
msgstr ""

View File

@ -1,7 +1,7 @@
<?php <?php
// Installation/upgrade file // Installation/upgrade file
define('VERSION', '4.4.98-pre'); define('VERSION', '4.4.98');
require 'inc/functions.php'; require 'inc/functions.php';
@ -518,6 +518,9 @@ if (file_exists($config['has_installed'])) {
break; break;
} }
case '4.4.98-pre':
if (!$twig) load_twig();
$twig->clearCacheFiles();
case false: case false:
// TODO: enhance Tinyboard -> vichan upgrade path. // TODO: enhance Tinyboard -> vichan upgrade path.
query("CREATE TABLE IF NOT EXISTS ``search_queries`` ( `ip` varchar(39) NOT NULL, `time` int(11) NOT NULL, `query` text NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8;") or error(db_error()); query("CREATE TABLE IF NOT EXISTS ``search_queries`` ( `ip` varchar(39) NOT NULL, `time` int(11) NOT NULL, `query` text NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=utf8;") or error(db_error());

View File

@ -54,6 +54,11 @@ if (device_type == 'desktop') {
$('<a class="cb-item cb-fa" href="'+categories[i].boards[0].href+'"><i class="fa-'+icon+' fa"></i></a>') $('<a class="cb-item cb-fa" href="'+categories[i].boards[0].href+'"><i class="fa-'+icon+' fa"></i></a>')
.appendTo(topbl) .appendTo(topbl)
} }
else if (item.name.match(/^d_/)) {
var icon = item.name.replace(/^d_/, '')
$('<a class="cb-item cb-cat" href="'+categories[i].boards[0].href+'">'+icon+'</a>')
.appendTo(topbl)
}
else { else {
$("<a class='cb-item cb-cat' href='javascript:void(0)'>"+item.name+"</a>") $("<a class='cb-item cb-cat' href='javascript:void(0)'>"+item.name+"</a>")
.appendTo(topbl) .appendTo(topbl)

45
js/treeview.js Normal file
View File

@ -0,0 +1,45 @@
/*
* treeview.js
* https://github.com/vichan-devel/vichan/blob/master/js/treeview.js
*
* Released under the MIT license
* Copyright (c) 2014 Marcin Łabanowski <marcin@6irc.net>
*
* Usage:
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/treeview.js';
*
*/
if (active_page == 'thread')
$(function() {
$('hr:first').before('<div id="treeview" style="text-align:right"><a class="unimportant" href="javascript:void(0)"></a></div>');
$('div#treeview a')
.text(_('Tree view'))
.click(function(e) {
e.preventDefault();
$('.post.reply').each(function(){
var references = [];
$(this).find('.body a').each(function(){
if ($(this).html().match('^&gt;&gt;[0-9]+$')) {
references.push(parseInt($(this).html().replace('&gt;&gt;', '')));
}
});
var maxref = references.reduce(function(a,b) { return a > b ? a : b; }, 0);
var parent_post = $("#reply_"+maxref);
if (parent_post.length == 0) return;
var margin = parseInt(parent_post.css("margin-left"))+32;
var post = $(this);
var br = post.next();
post.detach().css("margin-left", margin).insertAfter(parent_post.next());
br.detach().insertAfter(post);
});
});
});

View File

@ -32,7 +32,12 @@
</div> </div>
<hr/> <hr/>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p> <footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
</footer>
</body> </body>
</html> </html>
{% endfilter %} {% endfilter %}

View File

@ -31,7 +31,12 @@
</ul> </ul>
<hr/> <hr/>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2013 Tinyboard Development Group</p> <footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
</footer>
<script type="text/javascript"> <script type="text/javascript">
ready(); ready();
</script> </script>

View File

@ -31,7 +31,12 @@
{% endif %} {% endif %}
</div> </div>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p> <footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
</footer>
</body> </body>
</html> </html>
{% endfilter %} {% endfilter %}

View File

@ -30,7 +30,12 @@
{% endif %} {% endif %}
</div> </div>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p> <footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
</footer>
</body> </body>
</html> </html>
{% endfilter %} {% endfilter %}

View File

@ -52,7 +52,12 @@
</div> </div>
<hr/> <hr/>
<p class="unimportant" style="margin-top:20px;text-align:center;">Powered by <a href="http://tinyboard.org/">Tinyboard</a> {{ config.version }} | <a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2012 Tinyboard Development Group</p> <footer>
<p class="unimportant" style="margin-top:20px;text-align:center;">- <a href="http://tinyboard.org/">Tinyboard</a> +
<a href='https://int.vichan.net/devel/'>vichan</a> {{ config.version }} -
<br><a href="http://tinyboard.org/">Tinyboard</a> Copyright &copy; 2010-2014 Tinyboard Development Group
<br><a href="https://int.vichan.net/devel/">vichan</a> Copyright &copy; 2012-2014 vichan-devel</p>
</footer>
</body> </body>
</html> </html>
{% endfilter %} {% endfilter %}

View File

@ -45,6 +45,11 @@
$query .= sprintf("SELECT *, '%s' AS `board` FROM ``posts_%s`` WHERE `file` IS NOT NULL AND `file` != 'deleted' AND `thumb` != 'spoiler' UNION ALL ", $_board['uri'], $_board['uri']); $query .= sprintf("SELECT *, '%s' AS `board` FROM ``posts_%s`` WHERE `file` IS NOT NULL AND `file` != 'deleted' AND `thumb` != 'spoiler' UNION ALL ", $_board['uri'], $_board['uri']);
} }
$query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_images'], $query); $query = preg_replace('/UNION ALL $/', 'ORDER BY `time` DESC LIMIT ' . (int)$settings['limit_images'], $query);
if ($query == '') {
error(_("Can't build the RecentPosts theme, because there are no boards to be fetched."));
}
$query = query($query) or error(db_error()); $query = query($query) or error(db_error());
while ($post = $query->fetch(PDO::FETCH_ASSOC)) { while ($post = $query->fetch(PDO::FETCH_ASSOC)) {