diff --git a/imgboard.php b/imgboard.php index 8c5c86e..5cc7e35 100644 --- a/imgboard.php +++ b/imgboard.php @@ -79,7 +79,7 @@ if (TINYIB_TIMEZONE != '') { } if (TINYIB_TRIPSEED == '') { - fancyDie(__('TINYIB_TRIPSEED must be configured.')); + fancyDie(__('TINYIB_TRIPSEED must be configured.')); } $bcrypt_salt = '$2y$12$' . str_pad(str_replace('=', '/', str_replace('+', '.', substr(base64_encode(TINYIB_TRIPSEED), 0, 22))), 22, '/'); @@ -401,12 +401,18 @@ if (!isset($_GET['delete']) && !isset($_GET['manage']) && (isset($_POST['name']) $ban = array(); $ban['ip'] = $post['ip']; $ban['expire'] = $expire > 0 ? (time() + $expire) : 0; - $ban['reason'] = 'Keyword: ' . $keyword['text']; + $ban['reason'] = __('Keyword') . ': ' . $keyword['text']; insertBan($ban); - $expire_txt = ($ban['expire'] > 0) ? ('
This ban will expire ' . strftime(TINYIB_DATEFMT, $ban['expire'])) : '
This ban is permanent and will not expire.'; - $reason_txt = ($ban['reason'] == '') ? '' : ('
Reason: ' . $ban['reason']); - fancyDie('Your IP address ' . remoteAddress() . ' has been banned from posting on this image board. ' . $expire_txt . $reason_txt); + if ($ban['expire'] > 0) { + $bannedText = sprintf(__('Your IP address (%1$s) is banned until %2$s.'), remoteAddress(), strftime(TINYIB_DATEFMT, $ban['expire'])); + } else { + $bannedText = sprintf(__('Your IP address (%s) is permanently banned.'), remoteAddress()); + } + if ($ban['reason'] != '') { + $bannedText .= '
' . __('Reason') . ': ' . $ban['reason']; + } + fancyDie($bannedText); } break; } @@ -874,7 +880,7 @@ EOF; continue; // The post has been deleted } updatePostMessage($post['id'], $post['message'] . '
' . "\n" . '(' . htmlentities($_POST['message']) . ')
'); - manageLogAction('Added ban message to ' . postLink('>>' . $post['id'])); + manageLogAction(sprintf(__('Added ban message to %s'), postLink('>>' . $post['id']))); } clearPostCache(); foreach ($post_ids as $post_id) { @@ -1134,8 +1140,9 @@ EOF; stickyThreadByID($post['id'], intval($_GET['setsticky'])); threadUpdated($post['id']); - manageLogAction(intval($_GET['setsticky']) == 1 ? __('Stickied') : __('Unstickied') . ' ' . postLink('>>' . $post['id'])); - $text .= manageInfo('Thread No.' . $post['id'] . ' ' . (intval($_GET['setsticky']) == 1 ? 'stickied' : 'un-stickied') . '.'); + $actionMessage = intval($_GET['setsticky']) == 1 ? __('Stickied') : __('Unstickied') . ' ' . postLink('>>' . $post['id']); + manageLogAction($actionMessage); + $text .= manageInfo($actionMessage); } else { fancyDie(__("Sorry, there doesn't appear to be a post with that ID.")); } @@ -1149,8 +1156,9 @@ EOF; lockThreadByID($post['id'], intval($_GET['setlock'])); threadUpdated($post['id']); - manageLogAction(intval($_GET['setlock']) == 1 ? __('Locked') : __('Unlocked') . ' ' . postLink('>>' . $post['id'])); - $text .= manageInfo('Thread No.' . $post['id'] . ' ' . (intval($_GET['setlock']) == 1 ? 'locked' : 'unlocked') . '.'); + $actionMessage = intval($_GET['setlock']) == 1 ? __('Locked') : __('Unlocked') . ' ' . postLink('>>' . $post['id']); + manageLogAction($actionMessage); + $text .= manageInfo($actionMessage); } else { fancyDie(__("Sorry, there doesn't appear to be a post with that ID.")); } diff --git a/inc/html.php b/inc/html.php index 818b5a2..ef34837 100644 --- a/inc/html.php +++ b/inc/html.php @@ -481,7 +481,7 @@ function buildPost($post, $res, $compact=false) { $direct_link = isEmbed($post["file_hex"]) ? "#" : (($res == TINYIB_RESPAGE ? "../" : "") . "src/" . $post["file"]); if ($post['parent'] == TINYIB_NEWTHREAD && $post["file"] != '') { - $filesize .= (isEmbed($post['file_hex']) ? __('Embed:') : __('File:')) . ' '; + $filesize .= (isEmbed($post['file_hex']) ? __('Embed') : __('File')) . ': '; } $w = TINYIB_EXPANDWIDTH; @@ -1259,7 +1259,7 @@ function manageModeratePostForm() { $txt_moderate = __('Moderate a post'); $txt_postid = __('Post ID'); $txt_submit = __('Submit'); - $txt_tip = __('Tip:'); + $txt_tip = __('Tip'); $txt_tiptext1 = __('While browsing the image board, you can easily moderate a post if you are logged in.'); $txt_tiptext2 = __('Tick the box next to a post and click "Delete" at the bottom of the page with a blank password.'); return << $txt_moderate

- $txt_tip $txt_tiptext1
+ $txt_tip: $txt_tiptext1
$txt_tiptext2

@@ -1508,7 +1508,7 @@ function manageEditKeyword($id) { $txt_keyword = __('Keyword'); $txt_keywords = __('Keywords'); - $txt_action = __('Action:'); + $txt_action = __('Action'); $txt_submit = $id > 0 ? __('Update') : __('Add'); $return = <<Please try again in a few moments." msgstr "" -#: imgboard.php:294 inc/functions.php:434 +#: imgboard.php:298 inc/functions.php:462 msgid "Invalid parent thread ID supplied, unable to create post." msgstr "" -#: imgboard.php:296 +#: imgboard.php:300 msgid "Replies are not allowed to locked threads." msgstr "" -#: imgboard.php:371 +#: imgboard.php:377 msgid "Your post contains a blocked keyword." msgstr "" -#: imgboard.php:412 +#: imgboard.php:404 inc/html.php:1509 inc/html.php:1547 +msgid "Keyword" +msgstr "" + +#: imgboard.php:408 +#, php-format +msgid "Your IP address (%1$s) is banned until %2$s." +msgstr "" + +#: imgboard.php:410 +#, php-format +msgid "Your IP address (%s) is permanently banned." +msgstr "" + +#: imgboard.php:413 inc/html.php:1210 inc/html.php:1247 +msgid "Reason" +msgstr "" + +#: imgboard.php:424 msgid "Embedding a URL and uploading a file at the same time is not supported." msgstr "" -#: imgboard.php:418 +#: imgboard.php:430 #, php-format msgid "Invalid embed URL. Only %s URLs are supported." msgstr "" -#: imgboard.php:423 imgboard.php:432 inc/functions.php:458 -#: inc/functions.php:840 +#: imgboard.php:435 imgboard.php:444 inc/functions.php:493 +#: inc/functions.php:875 #, php-format msgid "That file is larger than %s." msgstr "" -#: imgboard.php:428 imgboard.php:438 +#: imgboard.php:440 imgboard.php:450 msgid "Failed to download file at specified URL." msgstr "" -#: imgboard.php:460 +#: imgboard.php:472 msgid "Error while processing audio/video." msgstr "" -#: imgboard.php:467 inc/functions.php:865 inc/functions.php:880 +#: imgboard.php:479 inc/functions.php:900 inc/functions.php:911 msgid "Could not create thumbnail." msgstr "" -#: imgboard.php:490 +#: imgboard.php:502 msgid "upload a file or embed a URL" msgstr "" -#: imgboard.php:492 +#: imgboard.php:504 msgid "upload a file" msgstr "" -#: imgboard.php:494 +#: imgboard.php:506 msgid "embed a URL" msgstr "" -#: imgboard.php:497 +#: imgboard.php:509 #, php-format msgid "Please %s to start a new thread." msgstr "" -#: imgboard.php:503 +#: imgboard.php:515 #, php-format msgid "Please enter a message and/or %s." msgstr "" -#: imgboard.php:505 +#: imgboard.php:517 msgid "Please enter a message." msgstr "" -#: imgboard.php:507 +#: imgboard.php:519 #, php-format msgid "Please %s." msgstr "" -#: imgboard.php:513 +#: imgboard.php:525 #, php-format msgid "Your %s will be shown once it has been approved." msgstr "" -#: imgboard.php:536 +#: imgboard.php:548 msgid "Updating thread..." msgstr "" -#: imgboard.php:549 +#: imgboard.php:561 msgid "Updating index..." msgstr "" -#: imgboard.php:554 -msgid "Created raw post" +#: imgboard.php:566 +msgid "Created staff post" msgstr "" -#: imgboard.php:560 +#: imgboard.php:572 msgid "This post has been deleted" msgstr "" -#: imgboard.php:562 +#: imgboard.php:574 msgid "This post requires moderation before it can be displayed" msgstr "" -#: imgboard.php:574 +#: imgboard.php:587 msgid "Automatic refreshing is disabled." msgstr "" -#: imgboard.php:599 imgboard.php:749 +#: imgboard.php:612 imgboard.php:762 msgid "Reporting is disabled." msgstr "" -#: imgboard.php:604 imgboard.php:703 +#: imgboard.php:617 imgboard.php:716 msgid "" "Sorry, an invalid post identifier was sent. Please go back, refresh the " "page, and try again." msgstr "" -#: imgboard.php:608 +#: imgboard.php:621 msgid "Moderators have determined that post does not break any rules." msgstr "" -#: imgboard.php:613 +#: imgboard.php:626 msgid "You have already submitted a report for that post." msgstr "" -#: imgboard.php:649 inc/html.php:194 inc/html.php:878 +#: imgboard.php:662 inc/html.php:227 inc/html.php:969 msgid "(enter the text below)" msgstr "" -#: imgboard.php:653 +#: imgboard.php:666 msgid "Please complete a CAPTCHA to submit your report" msgstr "" -#: imgboard.php:654 inc/html.php:95 inc/html.php:1022 inc/html.php:1070 -#: inc/html.php:1118 inc/html.php:1158 +#: imgboard.php:667 inc/html.php:117 inc/html.php:1113 inc/html.php:1165 +#: inc/html.php:1213 inc/html.php:1261 msgid "Submit" msgstr "" -#: imgboard.php:676 +#: imgboard.php:689 msgid "Post reported." msgstr "" -#: imgboard.php:680 +#: imgboard.php:693 msgid "Tick the box next to a post and click \"Delete\" to delete it." msgstr "" -#: imgboard.php:684 +#: imgboard.php:697 msgid "" "Post deletion is currently disabled.
Please try again in a few moments." msgstr "" -#: imgboard.php:711 +#: imgboard.php:724 msgid "Post deleted." msgstr "" -#: imgboard.php:713 +#: imgboard.php:726 msgid "Invalid password." msgstr "" -#: imgboard.php:744 +#: imgboard.php:757 msgid "Rebuilt board." msgstr "" -#: imgboard.php:754 +#: imgboard.php:767 msgid "Access denied" msgstr "" -#: imgboard.php:765 +#: imgboard.php:778 msgid "Account not found." msgstr "" -#: imgboard.php:769 imgboard.php:1154 +#: imgboard.php:782 imgboard.php:1186 msgid "This account may not be updated while TINYIB_ADMINPASS is set." msgstr "" -#: imgboard.php:771 imgboard.php:1156 +#: imgboard.php:784 imgboard.php:1188 msgid "This account may not be updated while TINYIB_MODPASS is set." msgstr "" -#: imgboard.php:777 imgboard.php:1161 +#: imgboard.php:790 imgboard.php:1193 msgid "A password is required." msgstr "" -#: imgboard.php:788 +#: imgboard.php:801 msgid "Invalid role." msgstr "" -#: imgboard.php:793 +#: imgboard.php:806 #, php-format msgid "Added account %s" msgstr "" -#: imgboard.php:794 +#: imgboard.php:807 msgid "Added account" msgstr "" -#: imgboard.php:798 +#: imgboard.php:811 #, php-format msgid "Renamed account %1$s as %2$s" msgstr "" -#: imgboard.php:801 +#: imgboard.php:814 #, php-format msgid "Changed password of account %s" msgstr "" -#: imgboard.php:807 inc/html.php:1066 inc/html.php:1091 +#: imgboard.php:820 inc/html.php:1161 inc/html.php:1186 msgid "Super-administrator" msgstr "" -#: imgboard.php:810 inc/html.php:1067 inc/html.php:1094 +#: imgboard.php:823 inc/html.php:1162 inc/html.php:1189 msgid "Administrator" msgstr "" -#: imgboard.php:813 inc/html.php:1068 inc/html.php:1097 +#: imgboard.php:826 inc/html.php:1163 inc/html.php:1192 msgid "Moderator" msgstr "" -#: imgboard.php:816 inc/html.php:1069 inc/html.php:1100 +#: imgboard.php:829 inc/html.php:1164 inc/html.php:1195 msgid "Disabled" msgstr "" -#: imgboard.php:819 +#: imgboard.php:832 #, php-format msgid "Changed role of account %s to %s" msgstr "" -#: imgboard.php:821 +#: imgboard.php:834 msgid "Updated account" msgstr "" -#: imgboard.php:838 -msgid "Sorry, there is already a ban on record for that IP address." -msgstr "" - -#: imgboard.php:850 -msgid "permanently" -msgstr "" - -#: imgboard.php:852 -#, php-format -msgid "until %s" -msgstr "" - -#: imgboard.php:854 -#, php-format -msgid "Banned %s %s" -msgstr "" - -#: imgboard.php:856 -#, php-format -msgid "Banned %s %s: %s" -msgstr "" - #: imgboard.php:863 -msgid "Banned 1 IP address" +msgid "permanently" msgstr "" #: imgboard.php:865 #, php-format +msgid "until %s" +msgstr "" + +#: imgboard.php:867 +#, php-format +msgid "Banned %s %s" +msgstr "" + +#: imgboard.php:869 +#, php-format +msgid "Banned %s %s: %s" +msgstr "" + +#: imgboard.php:883 +#, php-format +msgid "Added ban message to %s" +msgstr "" + +#: imgboard.php:895 +msgid "Banned 1 IP address" +msgstr "" + +#: imgboard.php:897 +#, php-format msgid "Banned %d IP addresses" msgstr "" -#: imgboard.php:871 +#: imgboard.php:903 #, php-format msgid "Lifted ban on %s" msgstr "" -#: imgboard.php:888 +#: imgboard.php:920 msgid "Sorry, that keyword has already been added." msgstr "" -#: imgboard.php:903 imgboard.php:907 +#: imgboard.php:935 imgboard.php:939 #, php-format msgid "Updated keyword %s" msgstr "" -#: imgboard.php:904 +#: imgboard.php:936 msgid "Keyword updated." msgstr "" -#: imgboard.php:908 +#: imgboard.php:940 msgid "Keyword added." msgstr "" -#: imgboard.php:913 +#: imgboard.php:945 msgid "That keyword does not exist." msgstr "" -#: imgboard.php:922 +#: imgboard.php:954 #, php-format msgid "Deleted keyword %s" msgstr "" -#: imgboard.php:923 +#: imgboard.php:955 msgid "Keyword deleted." msgstr "" -#: imgboard.php:1020 imgboard.php:1067 imgboard.php:1082 imgboard.php:1116 -#: imgboard.php:1131 imgboard.php:1146 -msgid "Sorry, there doesn't appear to be a post with that ID." -msgstr "" - -#: imgboard.php:1036 +#: imgboard.php:1066 #, php-format msgid "Deleted %s" msgstr "" -#: imgboard.php:1048 +#: imgboard.php:1078 msgid "Deleted 1 post" msgstr "" -#: imgboard.php:1050 +#: imgboard.php:1080 #, php-format msgid "Deleted %d posts" msgstr "" -#: imgboard.php:1064 imgboard.php:1143 +#: imgboard.php:1094 imgboard.php:1175 msgid "Approved" msgstr "" -#: imgboard.php:1065 imgboard.php:1144 +#: imgboard.php:1095 imgboard.php:1176 #, php-format msgid "Post No.%d approved." msgstr "" -#: imgboard.php:1113 inc/html.php:412 +#: imgboard.php:1097 imgboard.php:1112 imgboard.php:1147 imgboard.php:1163 +#: imgboard.php:1178 +msgid "Sorry, there doesn't appear to be a post with that ID." +msgstr "" + +#: imgboard.php:1143 inc/html.php:467 msgid "Stickied" msgstr "" -#: imgboard.php:1113 +#: imgboard.php:1143 msgid "Unstickied" msgstr "" -#: imgboard.php:1119 imgboard.php:1134 +#: imgboard.php:1150 imgboard.php:1166 msgid "Form data was lost. Please go back and try again." msgstr "" -#: imgboard.php:1128 inc/html.php:416 +#: imgboard.php:1159 inc/html.php:471 msgid "Locked" msgstr "" -#: imgboard.php:1128 +#: imgboard.php:1159 msgid "Unlocked" msgstr "" -#: imgboard.php:1167 +#: imgboard.php:1195 +msgid "Passwords do not match." +msgstr "" + +#: imgboard.php:1201 msgid "Password updated" msgstr "" -#: inc/functions.php:293 +#: inc/functions.php:321 msgid "Please enter the CAPTCHA text." msgstr "" -#: inc/functions.php:295 +#: inc/functions.php:323 msgid "" "Incorrect CAPTCHA text entered. Please try again.
Click the image to " "retrieve a new CAPTCHA." msgstr "" -#: inc/functions.php:344 +#: inc/functions.php:372 #, php-format msgid "" "Please shorten your message, or post it in multiple parts. Your message is " "%1$d characters long, and the maximum allowed is %2$d." msgstr "" -#: inc/functions.php:377 +#: inc/functions.php:405 msgid "Invalid key." msgstr "" -#: inc/functions.php:388 +#: inc/functions.php:416 msgid "Invalid username or password." msgstr "" -#: inc/functions.php:461 +#: inc/functions.php:496 #, php-format msgid "" "The uploaded file exceeds the upload_max_filesize directive (%s) in php.ini." msgstr "" -#: inc/functions.php:464 +#: inc/functions.php:499 msgid "The uploaded file was only partially uploaded." msgstr "" -#: inc/functions.php:467 +#: inc/functions.php:502 msgid "No file was uploaded." msgstr "" -#: inc/functions.php:470 +#: inc/functions.php:505 msgid "Missing a temporary folder." msgstr "" -#: inc/functions.php:473 +#: inc/functions.php:508 msgid "Failed to write file to disk" msgstr "" -#: inc/functions.php:476 +#: inc/functions.php:511 msgid "Unable to save the uploaded file." msgstr "" -#: inc/functions.php:484 +#: inc/functions.php:519 #, php-format msgid "" "Duplicate file uploaded. That file has already been posted here." msgstr "" -#: inc/functions.php:576 inc/functions.php:649 +#: inc/functions.php:611 inc/functions.php:684 msgid "" "Unable to read the uploaded file while creating its thumbnail. A common " "cause for this is an incorrect extension when the file is actually of a " "different type." msgstr "" -#: inc/functions.php:801 +#: inc/functions.php:836 msgid "File transfer failure. Please retry the submission." msgstr "" -#: inc/functions.php:810 +#: inc/functions.php:845 msgid "" "Failed to read the MIME type and size of the uploaded file. Please retry the " "submission." msgstr "" -#: inc/functions.php:824 inc/functions.php:829 +#: inc/functions.php:859 inc/functions.php:864 msgid "Could not copy uploaded file." msgstr "" -#: inc/functions.php:837 +#: inc/functions.php:872 msgid "File transfer failure. Please go back and try again." msgstr "" -#: inc/functions.php:897 inc/functions.php:920 +#: inc/functions.php:928 inc/functions.php:951 msgid "Sorry, your video appears to be corrupt." msgstr "" -#: inc/html.php:67 +#: inc/html.php:88 #, php-format msgid "Supported file type is %s" msgstr "" -#: inc/html.php:70 +#: inc/html.php:91 #, php-format msgid "Supported file types are %1$s and %2$s." msgstr "" -#: inc/html.php:130 -msgid "Reply to" +#: inc/html.php:152 +msgid "Raw HTML" msgstr "" -#: inc/html.php:131 -msgid "0 to start a new thread" +#: inc/html.php:153 +msgid "Enable" msgstr "" -#: inc/html.php:132 +#: inc/html.php:154 msgid "" "Text entered in the Message field will be posted as is with no formatting " "applied." msgstr "" -#: inc/html.php:133 +#: inc/html.php:155 msgid "Line-breaks must be specified with \"<br>\"." msgstr "" -#: inc/html.php:198 +#: inc/html.php:157 +msgid "Reply to" +msgstr "" + +#: inc/html.php:158 +msgid "0 to start a new thread" +msgstr "" + +#: inc/html.php:231 msgid "CAPTCHA" msgstr "" -#: inc/html.php:214 +#: inc/html.php:247 #, php-format msgid "Maximum file size allowed is %s." msgstr "" -#: inc/html.php:219 +#: inc/html.php:252 inc/html.php:484 msgid "File" msgstr "" -#: inc/html.php:239 +#: inc/html.php:272 inc/html.php:484 msgid "Embed" msgstr "" -#: inc/html.php:242 +#: inc/html.php:275 msgid "(paste a YouTube URL)" msgstr "" -#: inc/html.php:257 +#: inc/html.php:290 msgid "All posts are moderated before being shown." msgstr "" -#: inc/html.php:259 +#: inc/html.php:292 msgid "All posts with a file attached are moderated before being shown." msgstr "" -#: inc/html.php:269 +#: inc/html.php:302 #, php-format msgid "Images greater than %s will be thumbnailed." msgstr "" -#: inc/html.php:274 +#: inc/html.php:307 #, php-format msgid "Currently %s unique user posts." msgstr "" -#: inc/html.php:287 +#: inc/html.php:320 msgid "Name" msgstr "" -#: inc/html.php:301 +#: inc/html.php:334 msgid "E-mail" msgstr "" -#: inc/html.php:315 +#: inc/html.php:348 msgid "Subject" msgstr "" -#: inc/html.php:329 +#: inc/html.php:362 inc/html.php:1224 msgid "Message" msgstr "" -#: inc/html.php:348 inc/html.php:625 inc/html.php:1054 +#: inc/html.php:381 inc/html.php:701 inc/html.php:1148 msgid "Password" msgstr "" -#: inc/html.php:349 +#: inc/html.php:382 msgid "(for post and file deletion)" msgstr "" -#: inc/html.php:400 inc/html.php:1418 inc/html.php:1446 +#: inc/html.php:455 inc/html.php:1523 inc/html.php:1552 msgid "Report" msgstr "" -#: inc/html.php:429 -msgid "Embed:" -msgstr "" - -#: inc/html.php:429 -msgid "File:" -msgstr "" - -#: inc/html.php:527 inc/html.php:1254 +#: inc/html.php:592 inc/html.php:1358 msgid "Reply" msgstr "" -#: inc/html.php:533 +#: inc/html.php:600 msgid "Post truncated. Click Reply to view." msgstr "" -#: inc/html.php:544 +#: inc/html.php:612 msgid "1 post omitted. Click Reply to view." msgstr "" -#: inc/html.php:546 +#: inc/html.php:614 #, php-format msgid "%d posts omitted. Click Reply to view." msgstr "" -#: inc/html.php:562 inc/html.php:597 inc/html.php:609 +#: inc/html.php:634 inc/html.php:669 inc/html.php:681 msgid "Catalog" msgstr "" -#: inc/html.php:563 +#: inc/html.php:635 msgid "Manage" msgstr "" -#: inc/html.php:572 +#: inc/html.php:644 msgid "Previous" msgstr "" -#: inc/html.php:585 +#: inc/html.php:657 msgid "Next" msgstr "" -#: inc/html.php:609 inc/html.php:611 inc/html.php:778 +#: inc/html.php:681 inc/html.php:683 inc/html.php:867 msgid "Return" msgstr "" -#: inc/html.php:611 +#: inc/html.php:683 msgid "Posting mode: Reply" msgstr "" -#: inc/html.php:624 +#: inc/html.php:700 msgid "Style" msgstr "" -#: inc/html.php:626 inc/html.php:1420 inc/html.php:1452 inc/html.php:1476 -#: inc/html.php:1521 +#: inc/html.php:702 inc/html.php:1525 inc/html.php:1558 inc/html.php:1582 +#: inc/html.php:1627 msgid "Delete" msgstr "" -#: inc/html.php:627 +#: inc/html.php:703 msgid "Delete Post" msgstr "" -#: inc/html.php:783 inc/html.php:1564 -msgid "Status" -msgstr "" - -#: inc/html.php:786 +#: inc/html.php:875 msgid "Accounts" msgstr "" -#: inc/html.php:788 +#: inc/html.php:877 msgid "Bans" msgstr "" -#: inc/html.php:789 inc/html.php:1405 +#: inc/html.php:878 inc/html.php:1510 msgid "Keywords" msgstr "" -#: inc/html.php:791 -msgid "Moderate Post" -msgstr "" - -#: inc/html.php:793 -msgid "Moderation Log" -msgstr "" - -#: inc/html.php:795 -msgid "Raw Post" -msgstr "" - -#: inc/html.php:797 -msgid "Rebuild All" -msgstr "" - -#: inc/html.php:798 -msgid "Reports" -msgstr "" - -#: inc/html.php:801 inc/html.php:1407 -msgid "Update" -msgstr "" - -#: inc/html.php:804 +#: inc/html.php:880 msgid "Migrate Database" msgstr "" -#: inc/html.php:806 inc/html.php:1021 -msgid "Change password" +#: inc/html.php:883 +msgid "Moderate Post" msgstr "" -#: inc/html.php:807 +#: inc/html.php:885 +msgid "Moderation Log" +msgstr "" + +#: inc/html.php:886 +msgid "Rebuild All" +msgstr "" + +#: inc/html.php:888 +msgid "Reports" +msgstr "" + +#: inc/html.php:891 +msgid "Staff Post" +msgstr "" + +#: inc/html.php:892 inc/html.php:1670 +msgid "Status" +msgstr "" + +#: inc/html.php:894 inc/html.php:1512 +msgid "Update" +msgstr "" + +#: inc/html.php:896 inc/html.php:1112 +msgid "Change Password" +msgstr "" + +#: inc/html.php:897 msgid "Log Out" msgstr "" -#: inc/html.php:813 +#: inc/html.php:904 msgid "Manage mode" msgstr "" -#: inc/html.php:848 +#: inc/html.php:939 msgid "Log In" msgstr "" -#: inc/html.php:849 +#: inc/html.php:940 msgid "Enter a username and password" msgstr "" -#: inc/html.php:922 +#: inc/html.php:1013 msgid "No logs." msgstr "" -#: inc/html.php:925 +#: inc/html.php:1016 msgid "Moderation log" msgstr "" -#: inc/html.php:978 +#: inc/html.php:1069 msgid "Reported posts" msgstr "" -#: inc/html.php:981 +#: inc/html.php:1072 #, php-format msgid "%1$d report by %2$s" msgstr "" -#: inc/html.php:983 +#: inc/html.php:1074 #, php-format msgid "%1$d reports by %2$s" msgstr "" -#: inc/html.php:997 +#: inc/html.php:1088 #, php-format msgid "%d reports" msgstr "" -#: inc/html.php:1000 +#: inc/html.php:1091 #, php-format msgid "Reported by %s" msgstr "" -#: inc/html.php:1003 inc/html.php:1551 +#: inc/html.php:1094 inc/html.php:1657 msgid "Moderate" msgstr "" -#: inc/html.php:1007 +#: inc/html.php:1098 msgid "There are currently no reported posts." msgstr "" -#: inc/html.php:1042 +#: inc/html.php:1136 msgid "Add an account" msgstr "" -#: inc/html.php:1045 +#: inc/html.php:1139 msgid "Update an account" msgstr "" -#: inc/html.php:1046 +#: inc/html.php:1140 msgid "Leave blank to maintain current password" msgstr "" -#: inc/html.php:1053 inc/html.php:1085 +#: inc/html.php:1147 inc/html.php:1180 msgid "Username" msgstr "" -#: inc/html.php:1055 inc/html.php:1085 +#: inc/html.php:1149 inc/html.php:1180 msgid "Role" msgstr "" -#: inc/html.php:1065 +#: inc/html.php:1160 msgid "Choose a role" msgstr "" -#: inc/html.php:1085 +#: inc/html.php:1180 msgid "Last active" msgstr "" -#: inc/html.php:1087 +#: inc/html.php:1182 msgid "Never" msgstr "" -#: inc/html.php:1103 +#: inc/html.php:1198 msgid "update" msgstr "" -#: inc/html.php:1111 +#: inc/html.php:1206 msgid "Add a ban" msgstr "" -#: inc/html.php:1112 +#: inc/html.php:1207 msgid "" "Multiple IP addresses may be banned at once by separating each address with " "a comma." msgstr "" -#: inc/html.php:1113 inc/html.php:1144 +#: inc/html.php:1208 inc/html.php:1247 msgid "IP Address" msgstr "" -#: inc/html.php:1114 +#: inc/html.php:1209 msgid "Expire(sec)" msgstr "" -#: inc/html.php:1115 inc/html.php:1144 -msgid "Reason" -msgstr "" - -#: inc/html.php:1116 +#: inc/html.php:1211 msgid "never" msgstr "" -#: inc/html.php:1117 -msgid "optional" +#: inc/html.php:1212 +msgid "Optional." msgstr "" -#: inc/html.php:1119 +#: inc/html.php:1214 msgid "1 hour" msgstr "" -#: inc/html.php:1120 +#: inc/html.php:1215 msgid "1 day" msgstr "" -#: inc/html.php:1121 +#: inc/html.php:1216 msgid "2 days" msgstr "" -#: inc/html.php:1122 +#: inc/html.php:1217 msgid "1 week" msgstr "" -#: inc/html.php:1123 +#: inc/html.php:1218 msgid "2 weeks" msgstr "" -#: inc/html.php:1124 +#: inc/html.php:1219 msgid "1 month" msgstr "" -#: inc/html.php:1144 +#: inc/html.php:1224 +msgid "Append a message to the post. Optional." +msgstr "" + +#: inc/html.php:1247 msgid "Set At" msgstr "" -#: inc/html.php:1144 +#: inc/html.php:1247 msgid "Expires" msgstr "" -#: inc/html.php:1146 +#: inc/html.php:1249 msgid "Does not expire" msgstr "" -#: inc/html.php:1148 +#: inc/html.php:1251 msgid "lift" msgstr "" -#: inc/html.php:1156 +#: inc/html.php:1259 msgid "Moderate a post" msgstr "" -#: inc/html.php:1157 +#: inc/html.php:1260 msgid "Post ID" msgstr "" -#: inc/html.php:1159 -msgid "Tip:" +#: inc/html.php:1262 +msgid "Tip" msgstr "" -#: inc/html.php:1160 +#: inc/html.php:1263 msgid "" "While browsing the image board, you can easily moderate a post if you are " "logged in." msgstr "" -#: inc/html.php:1161 +#: inc/html.php:1264 msgid "" "Tick the box next to a post and click \"Delete\" at the bottom of the page " "with a blank password." msgstr "" -#: inc/html.php:1177 +#: inc/html.php:1280 #, php-format msgid "Moderate %d posts" msgstr "" -#: inc/html.php:1178 +#: inc/html.php:1281 msgid "Delete all" msgstr "" -#: inc/html.php:1179 +#: inc/html.php:1282 msgid "Ban all" msgstr "" -#: inc/html.php:1181 +#: inc/html.php:1284 msgid "1 thread and 1 reply will be deleted." msgstr "" -#: inc/html.php:1183 +#: inc/html.php:1286 #, php-format msgid "1 thread and %d replies will be deleted." msgstr "" -#: inc/html.php:1185 +#: inc/html.php:1288 #, php-format msgid "%d threads and 1 reply will be deleted." msgstr "" -#: inc/html.php:1187 +#: inc/html.php:1290 #, php-format msgid "%1$d threads and %2$d replies will be deleted." msgstr "" -#: inc/html.php:1190 +#: inc/html.php:1293 msgid "1 IP address will be banned." msgstr "" -#: inc/html.php:1192 +#: inc/html.php:1295 #, php-format msgid "%d IP addresses will be banned." msgstr "" -#: inc/html.php:1245 +#: inc/html.php:1349 #, php-format msgid " A ban record already exists for %s" msgstr "" -#: inc/html.php:1248 +#: inc/html.php:1352 msgid "Only an administrator may ban an IP address." msgstr "" -#: inc/html.php:1250 +#: inc/html.php:1354 #, php-format msgid "IP address: %s" msgstr "" -#: inc/html.php:1254 +#: inc/html.php:1358 msgid "Thread" msgstr "" -#: inc/html.php:1261 +#: inc/html.php:1365 msgid "1 reply will be deleted." msgstr "" -#: inc/html.php:1263 +#: inc/html.php:1367 #, php-format msgid "%d replies will be deleted." msgstr "" -#: inc/html.php:1267 +#: inc/html.php:1371 msgid "Belongs to " msgstr "" -#: inc/html.php:1274 +#: inc/html.php:1378 msgid "Un-sticky" msgstr "" -#: inc/html.php:1274 +#: inc/html.php:1378 msgid "Sticky" msgstr "" -#: inc/html.php:1275 +#: inc/html.php:1379 msgid "Return this thread to a normal state." msgstr "" -#: inc/html.php:1275 +#: inc/html.php:1379 msgid "Keep this thread at the top of the board." msgstr "" -#: inc/html.php:1288 +#: inc/html.php:1392 msgid "Unlock" msgstr "" -#: inc/html.php:1288 +#: inc/html.php:1392 msgid "Lock" msgstr "" -#: inc/html.php:1289 +#: inc/html.php:1393 msgid "Allow replying to this thread." msgstr "" -#: inc/html.php:1289 +#: inc/html.php:1393 msgid "Disallow replying to this thread." msgstr "" -#: inc/html.php:1303 +#: inc/html.php:1407 #, php-format msgid "Moderating No.%d" msgstr "" -#: inc/html.php:1304 inc/html.php:1441 +#: inc/html.php:1408 inc/html.php:1511 inc/html.php:1547 msgid "Action" msgstr "" -#: inc/html.php:1306 +#: inc/html.php:1410 msgid "Delete thread" msgstr "" -#: inc/html.php:1308 +#: inc/html.php:1412 msgid "Delete reply" msgstr "" -#: inc/html.php:1310 +#: inc/html.php:1414 msgid "Ban poster" msgstr "" -#: inc/html.php:1315 inc/html.php:1517 +#: inc/html.php:1419 inc/html.php:1623 msgid "Approve" msgstr "" -#: inc/html.php:1316 inc/html.php:1491 +#: inc/html.php:1420 inc/html.php:1597 msgid "report" msgstr "" -#: inc/html.php:1316 inc/html.php:1491 +#: inc/html.php:1420 inc/html.php:1597 msgid "reports" msgstr "" -#: inc/html.php:1393 +#: inc/html.php:1498 msgid "Sorry, there doesn't appear to be a keyword with that ID." msgstr "" -#: inc/html.php:1404 inc/html.php:1441 -msgid "Keyword" -msgstr "" - -#: inc/html.php:1406 -msgid "Action:" -msgstr "" - -#: inc/html.php:1407 +#: inc/html.php:1512 msgid "Add" msgstr "" -#: inc/html.php:1421 inc/html.php:1449 +#: inc/html.php:1526 inc/html.php:1555 msgid "Hide until approved" msgstr "" -#: inc/html.php:1422 inc/html.php:1458 +#: inc/html.php:1527 inc/html.php:1564 msgid "Delete and ban for 1 hour" msgstr "" -#: inc/html.php:1423 inc/html.php:1461 +#: inc/html.php:1528 inc/html.php:1567 msgid "Delete and ban for 1 day" msgstr "" -#: inc/html.php:1424 inc/html.php:1464 +#: inc/html.php:1529 inc/html.php:1570 msgid "Delete and ban for 2 days" msgstr "" -#: inc/html.php:1425 inc/html.php:1467 +#: inc/html.php:1530 inc/html.php:1573 msgid "Delete and ban for 1 week" msgstr "" -#: inc/html.php:1426 inc/html.php:1470 +#: inc/html.php:1531 inc/html.php:1576 msgid "Delete and ban for 2 weeks" msgstr "" -#: inc/html.php:1427 inc/html.php:1473 +#: inc/html.php:1532 inc/html.php:1579 msgid "Delete and ban for 1 month" msgstr "" -#: inc/html.php:1428 inc/html.php:1455 +#: inc/html.php:1533 inc/html.php:1561 msgid "Delete and ban permanently" msgstr "" -#: inc/html.php:1476 +#: inc/html.php:1582 msgid "Edit" msgstr "" -#: inc/html.php:1489 +#: inc/html.php:1595 msgid "thread" msgstr "" -#: inc/html.php:1489 +#: inc/html.php:1595 msgid "threads" msgstr "" -#: inc/html.php:1493 +#: inc/html.php:1599 msgid "ban" msgstr "" -#: inc/html.php:1493 +#: inc/html.php:1599 msgid "bans" msgstr "" -#: inc/html.php:1519 +#: inc/html.php:1625 msgid "More Info" msgstr "" -#: inc/html.php:1527 +#: inc/html.php:1633 msgid "Pending posts" msgstr "" -#: inc/html.php:1543 +#: inc/html.php:1649 msgid "Recent posts" msgstr "" -#: inc/html.php:1565 +#: inc/html.php:1671 msgid "Info" msgstr ""