forked from GithubBackups/tinyib
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
5d191f3513 |
@ -1,10 +0,0 @@
|
||||
root = true
|
||||
|
||||
[*]
|
||||
charset = utf-8
|
||||
end_of_line = lf
|
||||
indent_size = 4
|
||||
indent_style = tab
|
||||
insert_final_newline = true
|
||||
max_line_length = 120
|
||||
tab_width = 4
|
@ -40,4 +40,6 @@ RedirectMatch 404 (.*)\.logs$
|
||||
RedirectMatch 404 (.*)\.posts$
|
||||
RedirectMatch 404 (.*)\.reports$
|
||||
RedirectMatch 404 (.*)\.tinyib.db$
|
||||
RedirectMatch 404 (.*)\.tinyib.db-wal$
|
||||
RedirectMatch 404 (.*)\.tinyib.db-shm$
|
||||
</IfModule>
|
||||
|
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 Trevor Slocum <trevor@rocket9labs.com>
|
||||
Copyright (c) 2020 Trevor Slocum <trevor@rocketnine.space>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
42
README.md
42
README.md
@ -1,8 +1,8 @@
|
||||
# TinyIB - Lightweight and efficient [imageboard](https://en.wikipedia.org/wiki/Imageboard)
|
||||
[](https://translate.codeberg.org/projects/tinyib/tinyib/)
|
||||
[](https://liberapay.com/rocket9labs.com)
|
||||
[](https://hosted.weblate.org/projects/tinyib/tinyib/)
|
||||
[](https://liberapay.com/rocketnine.space)
|
||||
|
||||
A [**read-only demo**](https://tinyib.rocket9labs.com) is available.
|
||||
A [**read-only demo**](https://tinyib.rocketnine.space) is available.
|
||||
|
||||
## Features
|
||||
|
||||
@ -31,19 +31,30 @@ A [**read-only demo**](https://tinyib.rocket9labs.com) is available.
|
||||
- Ban offensive/abusive posters across all boards.
|
||||
- Post using raw HTML.
|
||||
- Upgrade automatically when installed via git. (Tested on Linux only)
|
||||
- [Translations:](https://translate.codeberg.org/projects/tinyib/tinyib/)
|
||||
- Catalan, Chinese, Dutch, Finnish, French, German, Indonesian, Italian, Japanese, Korean, Norwegian, Polish, Portuguese, Romanian, Russian, Spanish (Mexico) and Turkish
|
||||
- [Translations:](https://hosted.weblate.org/projects/tinyib/tinyib/)
|
||||
- Chinese
|
||||
- Dutch
|
||||
- French
|
||||
- German
|
||||
- Italian
|
||||
- Korean
|
||||
- Norwegian
|
||||
- Polish
|
||||
- Portuguese
|
||||
- Russian
|
||||
- Spanish (Mexico)
|
||||
- Turkish
|
||||
|
||||
## Donate
|
||||
|
||||
Please consider supporting the continued development of TinyIB.
|
||||
|
||||
If you make a donation and there is a certain feature you'd like to see added to
|
||||
TinyIB, <a href="mailto:trevor@rocket9labs.com">send me an email</a>. I can't
|
||||
TinyIB, <a href="mailto:trevor@rocketnine.space">send me an email</a>. I can't
|
||||
promise that I will implement the feature right away, however I will keep your
|
||||
support in mind.
|
||||
|
||||
- [LiberaPay](https://liberapay.com/rocket9labs.com) (anonymous, no added fees)
|
||||
- [LiberaPay](https://liberapay.com/rocketnine.space) (anonymous, no added fees)
|
||||
- [PayPal](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=TEP9HT98XK7QA)
|
||||
|
||||
## Install
|
||||
@ -57,7 +68,7 @@ support in mind.
|
||||
- This is recommended, but is not strictly required except when `TINYIB_CAPTCHA` is set to `hcaptcha` or `recaptcha`.
|
||||
2. CD to the directory you wish to install TinyIB.
|
||||
3. Run the command:
|
||||
- `git clone https://codeberg.org/tslocum/tinyib.git ./`
|
||||
- `git clone https://code.rocketnine.space/tslocum/tinyib.git ./`
|
||||
4. Copy **settings.default.php** to **settings.php**
|
||||
5. Configure **settings.php**
|
||||
- When setting ``TINYIB_DBMODE`` to ``flatfile``, note that all post, report and ban data are exposed as the database is composed of standard text files. Access to ./inc/database/flatfile/ should be denied.
|
||||
@ -80,7 +91,6 @@ support in mind.
|
||||
- Set ``TINYIB_THUMBNAIL`` to ``imagemagick``.
|
||||
- **Note:** GIF files will have animated thumbnails, which will often have large file sizes.
|
||||
- To use TINYIB in another language, set ``TINYIB_LOCALE`` to a language code found in `locale/`.
|
||||
- **Note:** The [mbstring](https://www.php.net/manual/en/book.mbstring.php) PHP extension must be installed and enabled for TinyIB to properly support operating on and rendering text in any language other than English.
|
||||
6. [CHMOD](https://en.wikipedia.org/wiki/Chmod) write permissions to these directories:
|
||||
- ./ (the directory containing TinyIB)
|
||||
- ./src/
|
||||
@ -106,12 +116,12 @@ support in mind.
|
||||
1. Obtain the latest release.
|
||||
- If you installed via Git, run the following command in TinyIB's directory:
|
||||
- `git pull`
|
||||
- Otherwise, [download](https://codeberg.org/tslocum/tinyib/archive/master.zip) and extract a zipped archive.
|
||||
- Otherwise, [download](https://code.rocketnine.space/tslocum/tinyib/archive/master.zip) and extract a zipped archive.
|
||||
2. Note which files were modified.
|
||||
- If **settings.default.php** was updated, migrate the changes to **settings.php**
|
||||
- Take care to not change the value of `TINYIB_TRIPSEED`, as it is used to generate secure tripcodes, hash passwords and hash IP addresses.
|
||||
- If other files were updated, and you have made changes yourself:
|
||||
- Visit [codeberg.org](https://codeberg.org/tslocum/tinyib) and review the changes made in the update.
|
||||
- Visit [code.rocketnine.space](https://code.rocketnine.space/tslocum/tinyib) and review the changes made in the update.
|
||||
- Ensure the update does not interfere with your changes.
|
||||
|
||||
## Migrate
|
||||
@ -135,17 +145,17 @@ While the migration is in progress, visitors will not be able to create or delet
|
||||
## Support
|
||||
|
||||
1. Ensure you are running the latest version of TinyIB.
|
||||
2. Review the [open issues](https://codeberg.org/tslocum/tinyib/issues).
|
||||
3. Open a [new issue](https://codeberg.org/tslocum/tinyib/issues/new).
|
||||
2. Review the [open issues](https://code.rocketnine.space/tslocum/tinyib/issues).
|
||||
3. Open a [new issue](https://code.rocketnine.space/tslocum/tinyib/issues/new).
|
||||
|
||||
## Translate
|
||||
|
||||
Translation is handled [online](https://translate.codeberg.org/projects/tinyib/tinyib/).
|
||||
Translation is handled [online](https://hosted.weblate.org/projects/tinyib/tinyib/).
|
||||
|
||||
## Contribute
|
||||
|
||||
**Note:** Please do not submit translations via pull requests. See above.
|
||||
|
||||
1. [Fork TinyIB.](https://codeberg.org/tslocum/tinyib/fork)
|
||||
1. [Fork TinyIB.](https://code.rocketnine.space/repo/fork/6)
|
||||
2. Commit code changes to your forked repository.
|
||||
3. [Submit a pull request.](https://codeberg.org/tslocum/tinyib/pulls)
|
||||
3. [Submit a pull request.](https://code.rocketnine.space/tslocum/tinyib/pulls)
|
||||
|
89
imgboard.php
89
imgboard.php
@ -1,11 +1,11 @@
|
||||
<?php
|
||||
/*
|
||||
TinyIB
|
||||
https://codeberg.org/tslocum/tinyib
|
||||
https://code.rocketnine.space/tslocum/tinyib
|
||||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020 Trevor Slocum <trevor@rocket9labs.com>
|
||||
Copyright (c) 2020 Trevor Slocum <trevor@rocketnine.space>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
@ -26,6 +26,9 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
|
||||
use Gettext\Translator;
|
||||
use Gettext\Translations;
|
||||
|
||||
error_reporting(E_ALL);
|
||||
ini_set("display_errors", 1);
|
||||
session_start();
|
||||
@ -55,7 +58,12 @@ if (!defined('TINYIB_LOCALE') || TINYIB_LOCALE == '') {
|
||||
return $string;
|
||||
}
|
||||
} else {
|
||||
require 'inc/gettext.php';
|
||||
setlocale(LC_ALL, TINYIB_LOCALE);
|
||||
require 'inc/gettext/src/autoloader.php';
|
||||
$translations = Translations::fromPoFile('locale/' . TINYIB_LOCALE . '/tinyib.po');
|
||||
$translator = new Translator();
|
||||
$translator->loadTranslations($translations);
|
||||
$translator->register();
|
||||
}
|
||||
|
||||
if ((TINYIB_CAPTCHA === 'hcaptcha' || TINYIB_REPLYCAPTCHA === 'hcaptcha' || TINYIB_MANAGECAPTCHA === 'hcaptcha') && (TINYIB_HCAPTCHA_SITE == '' || TINYIB_HCAPTCHA_SECRET == '')) {
|
||||
@ -71,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, '/');
|
||||
@ -81,8 +89,7 @@ if (!in_array(TINYIB_DBMODE, $database_modes)) {
|
||||
fancyDie(__('Unknown database mode specified.'));
|
||||
}
|
||||
|
||||
$schema_mode = (TINYIB_DBMIGRATE) ? TINYIB_DBMIGRATE : TINYIB_DBMODE;
|
||||
if ($schema_mode == 'pdo' && TINYIB_DBDRIVER == 'pgsql') {
|
||||
if (TINYIB_DBMODE == 'pdo' && TINYIB_DBDRIVER == 'pgsql') {
|
||||
$accounts_sql = 'CREATE TABLE "' . TINYIB_DBACCOUNTS . '" (
|
||||
"id" bigserial NOT NULL,
|
||||
"username" varchar(255) NOT NULL,
|
||||
@ -258,8 +265,6 @@ if (!$loggedin) {
|
||||
$redirect = true;
|
||||
// Check if the request is to make a post
|
||||
if (!isset($_GET['delete']) && !isset($_GET['manage']) && (isset($_POST['name']) || isset($_POST['email']) || isset($_POST['subject']) || isset($_POST['message']) || isset($_POST['file']) || isset($_POST['embed']) || isset($_POST['password']))) {
|
||||
$lock = lockDatabase();
|
||||
|
||||
if (TINYIB_DBMIGRATE) {
|
||||
fancyDie(__('Posting is currently disabled.<br>Please try again in a few moments.'));
|
||||
}
|
||||
@ -307,27 +312,25 @@ if (!isset($_GET['delete']) && !isset($_GET['manage']) && (isset($_POST['name'])
|
||||
|
||||
if ($staffpost || !in_array('name', $hide_fields)) {
|
||||
list($post['name'], $post['tripcode']) = nameAndTripcode($_POST['name']);
|
||||
if (TINYIB_MAXNAME > 0) {
|
||||
$post['name'] = _substr($post['name'], 0, TINYIB_MAXNAME);
|
||||
$post['name'] = cleanString(substr($post['name'], 0, 75));
|
||||
if (!$staffpost && TINYIB_MAXNAME > 0) {
|
||||
$post['name'] = substr($post['name'], 0, TINYIB_MAXNAME);
|
||||
}
|
||||
$post['name'] = cleanString($post['name']);
|
||||
}
|
||||
if ($staffpost || !in_array('email', $hide_fields)) {
|
||||
$post['email'] = $_POST['email'];
|
||||
if (TINYIB_MAXEMAIL > 0) {
|
||||
$post['email'] = _substr($post['email'], 0, TINYIB_MAXEMAIL);
|
||||
$post['email'] = cleanString(str_replace('"', '"', substr($_POST['email'], 0, 75)));
|
||||
if (!$staffpost && TINYIB_MAXEMAIL > 0) {
|
||||
$post['email'] = substr($post['email'], 0, TINYIB_MAXEMAIL);
|
||||
}
|
||||
$post['email'] = cleanString(str_replace('"', '"', $post['email']));
|
||||
}
|
||||
if ($staffpost) {
|
||||
$capcode = ($isadmin) ? ' <span style="color: ' . $tinyib_capcodes[0][1] . ' ;">## ' . $tinyib_capcodes[0][0] . '</span>' : ' <span style="color: ' . $tinyib_capcodes[1][1] . ';">## ' . $tinyib_capcodes[1][0] . '</span>';
|
||||
}
|
||||
if ($staffpost || !in_array('subject', $hide_fields)) {
|
||||
$post['subject'] = $_POST['subject'];
|
||||
if (TINYIB_MAXSUBJECT > 0) {
|
||||
$post['subject'] = _substr($post['subject'], 0, TINYIB_MAXSUBJECT);
|
||||
$post['subject'] = cleanString(substr($_POST['subject'], 0, 75));
|
||||
if (!$staffpost && TINYIB_MAXSUBJECT > 0) {
|
||||
$post['subject'] = substr($post['subject'], 0, TINYIB_MAXSUBJECT);
|
||||
}
|
||||
$post['subject'] = cleanString($post['subject']);
|
||||
}
|
||||
if ($staffpost || !in_array('message', $hide_fields)) {
|
||||
$post['message'] = $_POST['message'];
|
||||
@ -335,7 +338,7 @@ if (!isset($_GET['delete']) && !isset($_GET['manage']) && (isset($_POST['name'])
|
||||
// Treat message as raw HTML
|
||||
} else {
|
||||
if (TINYIB_WORDBREAK > 0) {
|
||||
$post['message'] = preg_replace('/([^\s]{' . TINYIB_WORDBREAK . '})(?=[^\s])/u', '$1' . TINYIB_WORDBREAK_IDENTIFIER, $post['message']);
|
||||
$post['message'] = preg_replace('/([^\s]{' . TINYIB_WORDBREAK . '})(?=[^\s])/', '$1' . TINYIB_WORDBREAK_IDENTIFIER, $post['message']);
|
||||
}
|
||||
$post['message'] = str_replace("\n", '<br>', makeLinksClickable(colorQuote(postLink(cleanString(rtrim($post['message']))))));
|
||||
|
||||
@ -398,18 +401,12 @@ 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);
|
||||
|
||||
if ($ban['expire'] > 0) {
|
||||
$bannedText = sprintf(__('Your IP address (%1$s) is banned until %2$s.'), remoteAddress(), formatDate($ban['expire']));
|
||||
} else {
|
||||
$bannedText = sprintf(__('Your IP address (%s) is permanently banned.'), remoteAddress());
|
||||
}
|
||||
if ($ban['reason'] != '') {
|
||||
$bannedText .= '<br>' . __('Reason') . ': ' . $ban['reason'];
|
||||
}
|
||||
fancyDie($bannedText);
|
||||
$expire_txt = ($ban['expire'] > 0) ? ('<br>This ban will expire ' . strftime(TINYIB_DATEFMT, $ban['expire'])) : '<br>This ban is permanent and will not expire.';
|
||||
$reason_txt = ($ban['reason'] == '') ? '' : ('<br>Reason: ' . $ban['reason']);
|
||||
fancyDie('Your IP address ' . remoteAddress() . ' has been banned from posting on this image board. ' . $expire_txt . $reason_txt);
|
||||
}
|
||||
break;
|
||||
}
|
||||
@ -605,8 +602,6 @@ if (!isset($_GET['delete']) && !isset($_GET['manage']) && (isset($_POST['name'])
|
||||
die();
|
||||
// Check if the request is to report a post
|
||||
} elseif (isset($_GET['report']) && !isset($_GET['manage'])) {
|
||||
$lock = lockDatabase();
|
||||
|
||||
if (!TINYIB_REPORT) {
|
||||
fancyDie(__('Reporting is disabled.'));
|
||||
}
|
||||
@ -688,8 +683,6 @@ EOF;
|
||||
fancyDie(__('Post reported.'), $go_back);
|
||||
// Check if the request is to delete a post and/or its associated image
|
||||
} elseif (isset($_GET['delete']) && !isset($_GET['manage'])) {
|
||||
$lock = lockDatabase();
|
||||
|
||||
if (!isset($_POST['delete'])) {
|
||||
fancyDie(__('Tick the box next to a post and click "Delete" to delete it.'));
|
||||
}
|
||||
@ -730,8 +723,6 @@ EOF;
|
||||
$redirect = false;
|
||||
// Check if the request is to access the management area
|
||||
} elseif (isset($_GET['manage'])) {
|
||||
$lock = lockDatabase();
|
||||
|
||||
$text = '';
|
||||
$onload = '';
|
||||
$navbar = ' ';
|
||||
@ -865,7 +856,7 @@ EOF;
|
||||
|
||||
$until = __('permanently');
|
||||
if ($ban['expire'] > 0) {
|
||||
$until = sprintf(__('until %s'), formatDate($ban['expire']));
|
||||
$until = sprintf(__('until %s'), strftime(TINYIB_DATEFMT, $ban['expire']));
|
||||
}
|
||||
$action = sprintf(__('Banned %s %s'), htmlentities($ban['ip']), $until);
|
||||
if ($ban['reason'] != '') {
|
||||
@ -883,7 +874,7 @@ EOF;
|
||||
continue; // The post has been deleted
|
||||
}
|
||||
updatePostMessage($post['id'], $post['message'] . '<br>' . "\n" . '<span class="banmessage">(' . htmlentities($_POST['message']) . ')</span><br>');
|
||||
manageLogAction(sprintf(__('Added ban message to %s'), postLink('>>' . $post['id'])));
|
||||
manageLogAction('Added ban message to ' . postLink('>>' . $post['id']));
|
||||
}
|
||||
clearPostCache();
|
||||
foreach ($post_ids as $post_id) {
|
||||
@ -971,12 +962,12 @@ EOF;
|
||||
$text .= '<blockquote class="reply" style="padding: 7px;font-size: 1.25em;">
|
||||
<pre style="margin: 0;padding: 0;">Attempting update...' . "\n\n" . $git_output . '</pre>
|
||||
</blockquote>
|
||||
<p><b>Note:</b> If TinyIB updates and you have made custom modifications, <a href="https://codeberg.org/tslocum/tinyib/commits/master" target="_blank">review the changes</a> which have been merged into your installation.
|
||||
<p><b>Note:</b> If TinyIB updates and you have made custom modifications, <a href="https://code.rocketnine.space/tslocum/tinyib/commits/master" target="_blank">review the changes</a> which have been merged into your installation.
|
||||
Ensure that your modifications do not interfere with any new/modified files.
|
||||
See the <a href="https://codeberg.org/tslocum/tinyib/src/branch/master/README.md">README</a> <small>(<a href="README.md" target="_blank">alternate link</a>)</small> for instructions.</p>';
|
||||
See the <a href="https://code.rocketnine.space/tslocum/tinyib/src/branch/master/README.md">README</a> <small>(<a href="README.md" target="_blank">alternate link</a>)</small> for instructions.</p>';
|
||||
} else {
|
||||
$text .= '<p><b>TinyIB was not installed via Git.</b></p>
|
||||
<p>If you installed TinyIB without Git, you must <a href="https://codeberg.org/tslocum/tinyib">update manually</a>. If you did install with Git, ensure the script has read and write access to the <b>.git</b> folder.</p>';
|
||||
<p>If you installed TinyIB without Git, you must <a href="https://code.rocketnine.space/tslocum/tinyib">update manually</a>. If you did install with Git, ensure the script has read and write access to the <b>.git</b> folder.</p>';
|
||||
}
|
||||
} elseif (isset($_GET['dbmigrate'])) {
|
||||
if (TINYIB_DBMIGRATE !== '' && TINYIB_DBMIGRATE !== false && TINYIB_DBMODE != TINYIB_DBMIGRATE) {
|
||||
@ -1038,7 +1029,7 @@ EOF;
|
||||
|
||||
echo '<p><b>Database migration complete</b>. Set TINYIB_DBMODE to the new database mode and TINYIB_DBMIGRATE to false, then click <b>Rebuild All</b> above and ensure everything looks and works as it should.</p>';
|
||||
} else {
|
||||
$text .= '<p>Your original database will not be deleted. If the migration fails, disable the tool and your board will be unaffected. See the <a href="https://codeberg.org/tslocum/tinyib/src/branch/master/README.md" target="_blank">README</a> <small>(<a href="README.md" target="_blank">alternate link</a>)</small> for instructions.</a><br><br><a href="?manage&dbmigrate&go"><b>Start the migration</b></a></p>';
|
||||
$text .= '<p>Your original database will not be deleted. If the migration fails, disable the tool and your board will be unaffected. See the <a href="https://code.rocketnine.space/tslocum/tinyib/src/branch/master/README.md" target="_blank">README</a> <small>(<a href="README.md" target="_blank">alternate link</a>)</small> for instructions.</a><br><br><a href="?manage&dbmigrate&go"><b>Start the migration</b></a></p>';
|
||||
}
|
||||
} else {
|
||||
fancyDie('Set TINYIB_DBMIGRATE to the desired TINYIB_DBMODE and enter in any database related settings in settings.php before migrating.');
|
||||
@ -1069,8 +1060,8 @@ EOF;
|
||||
$action = sprintf(__('Deleted %s'),'>>' . $post['id']) . ' - ' . hashData($post['ip']);
|
||||
$stripped = strip_tags($post['message']);
|
||||
if ($stripped != '') {
|
||||
$action .= ' - ' . htmlentities(_substr($stripped, 0, 32));
|
||||
if (_strlen($stripped) > 32) {
|
||||
$action .= ' - ' . htmlentities(substr($stripped, 0, 32));
|
||||
if (strlen($stripped) > 32) {
|
||||
$action .= '...';
|
||||
}
|
||||
}
|
||||
@ -1143,9 +1134,8 @@ EOF;
|
||||
stickyThreadByID($post['id'], intval($_GET['setsticky']));
|
||||
threadUpdated($post['id']);
|
||||
|
||||
$actionMessage = intval($_GET['setsticky']) == 1 ? __('Stickied') : __('Unstickied') . ' ' . postLink('>>' . $post['id']);
|
||||
manageLogAction($actionMessage);
|
||||
$text .= manageInfo($actionMessage);
|
||||
manageLogAction(intval($_GET['setsticky']) == 1 ? __('Stickied') : __('Unstickied') . ' ' . postLink('>>' . $post['id']));
|
||||
$text .= manageInfo('Thread No.' . $post['id'] . ' ' . (intval($_GET['setsticky']) == 1 ? 'stickied' : 'un-stickied') . '.');
|
||||
} else {
|
||||
fancyDie(__("Sorry, there doesn't appear to be a post with that ID."));
|
||||
}
|
||||
@ -1159,9 +1149,8 @@ EOF;
|
||||
lockThreadByID($post['id'], intval($_GET['setlock']));
|
||||
threadUpdated($post['id']);
|
||||
|
||||
$actionMessage = intval($_GET['setlock']) == 1 ? __('Locked') : __('Unlocked') . ' ' . postLink('>>' . $post['id']);
|
||||
manageLogAction($actionMessage);
|
||||
$text .= manageInfo($actionMessage);
|
||||
manageLogAction(intval($_GET['setlock']) == 1 ? __('Locked') : __('Unlocked') . ' ' . postLink('>>' . $post['id']));
|
||||
$text .= manageInfo('Thread No.' . $post['id'] . ' ' . (intval($_GET['setlock']) == 1 ? 'locked' : 'unlocked') . '.');
|
||||
} else {
|
||||
fancyDie(__("Sorry, there doesn't appear to be a post with that ID."));
|
||||
}
|
||||
|
@ -11,9 +11,6 @@
|
||||
|
||||
session_start();
|
||||
putenv('GDFONTPATH=' . realpath(dirname(__FILE__)) . '/fonts/');
|
||||
|
||||
error_reporting(E_ALL ^ (E_NOTICE | E_WARNING | E_DEPRECATED));
|
||||
|
||||
$captcha = new SimpleCaptcha();
|
||||
$captcha->CreateImage();
|
||||
|
||||
|
@ -184,11 +184,6 @@ function getLogs($offset, $limit) {
|
||||
return convertLogsToSQLStyle($rows);
|
||||
}
|
||||
|
||||
function allLogs() {
|
||||
$rows = $GLOBALS['db']->selectWhere(LOGS_FILE, NULL, -1, new OrderBy(LOG_TIMESTAMP, ASCENDING, INTEGER_COMPARISON));
|
||||
return convertLogsToSQLStyle($rows);
|
||||
}
|
||||
|
||||
function convertLogsToSQLStyle($logs, $single = false) {
|
||||
$newlogs = array();
|
||||
foreach ($logs as $l) {
|
||||
@ -208,10 +203,10 @@ function convertLogsToSQLStyle($logs, $single = false) {
|
||||
|
||||
function insertLog($l) {
|
||||
$log = array();
|
||||
$log[LOG_ID] = '0';
|
||||
$log[LOG_TIMESTAMP] = $l['timestamp'];
|
||||
$log[LOG_ACCOUNT] = $l['account'];
|
||||
$log[LOG_MESSAGE] = $l['message'];
|
||||
$log['id'] = '0';
|
||||
$log['timestamp'] = $l[LOG_TIMESTAMP];
|
||||
$log['account'] = $l[LOG_ACCOUNT];
|
||||
$log['message'] = $l[LOG_MESSAGE];
|
||||
|
||||
$GLOBALS['db']->insertWithAutoId(LOGS_FILE, LOG_ID, $log);
|
||||
}
|
||||
|
@ -147,17 +147,6 @@ function getLogs($offset, $limit) {
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function allLogs() {
|
||||
$logs = array();
|
||||
$result = mysql_query("SELECT * FROM `" . TINYIB_DBLOGS . "` ORDER BY `timestamp` ASC");
|
||||
if ($result) {
|
||||
while ($log = mysql_fetch_assoc($result)) {
|
||||
$logs[] = $log;
|
||||
}
|
||||
}
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function insertLog($log) {
|
||||
mysql_query("INSERT INTO `" . TINYIB_DBLOGS . "` (`timestamp`, `account`, `message`) VALUES ('" . mysql_real_escape_string($log['timestamp']) . "', '" . mysql_real_escape_string($log['account']) . "', '" . mysql_real_escape_string($log['message']) . "')");
|
||||
}
|
||||
|
@ -168,18 +168,6 @@ function getLogs($offset, $limit) {
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function allLogs() {
|
||||
global $link;
|
||||
$logs = array();
|
||||
$result = mysqli_query($link, "SELECT * FROM `" . TINYIB_DBLOGS . "` ORDER BY `timestamp` ASC");
|
||||
if ($result) {
|
||||
while ($log = mysqli_fetch_assoc($result)) {
|
||||
$logs[] = $log;
|
||||
}
|
||||
}
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function insertLog($log) {
|
||||
global $link;
|
||||
mysqli_query($link, "INSERT INTO `" . TINYIB_DBLOGS . "` (`timestamp`, `account`, `message`) VALUES ('" . mysqli_real_escape_string($link, $log['timestamp']) . "', '" . mysqli_real_escape_string($link, $log['account']) . "', '" . mysqli_real_escape_string($link, $log['message']) . "')");
|
||||
|
@ -124,15 +124,6 @@ function getLogs($offset, $limit) {
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function allLogs() {
|
||||
$logs = array();
|
||||
$results = pdoQuery("SELECT * FROM " . TINYIB_DBLOGS . " ORDER BY timestamp ASC");
|
||||
while ($row = $results->fetch(PDO::FETCH_ASSOC)) {
|
||||
$logs[] = $row;
|
||||
}
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function insertLog($log) {
|
||||
global $dbh;
|
||||
$stm = $dbh->prepare("INSERT INTO " . TINYIB_DBLOGS . " (timestamp, account, message) VALUES (?, ?, ?)");
|
||||
|
@ -99,45 +99,45 @@ if (TINYIB_DBDRIVER === 'pgsql') {
|
||||
$query = "SELECT column_name FROM information_schema.columns WHERE table_name='" . TINYIB_DBPOSTS . "' and column_name='moderated'";
|
||||
$moderated_exists = $dbh->query($query)->fetchColumn() != 0;
|
||||
} else {
|
||||
$dbh->query("SHOW COLUMNS FROM " . TINYIB_DBPOSTS . " LIKE 'moderated'");
|
||||
$dbh->query("SHOW COLUMNS FROM `" . TINYIB_DBPOSTS . "` LIKE 'moderated'");
|
||||
$moderated_exists = $dbh->query("SELECT FOUND_ROWS()")->fetchColumn() != 0;
|
||||
}
|
||||
if (!$moderated_exists) {
|
||||
$dbh->exec("ALTER TABLE " . TINYIB_DBPOSTS . " ADD COLUMN moderated TINYINT(1) NOT NULL DEFAULT '1'");
|
||||
$dbh->exec("ALTER TABLE `" . TINYIB_DBPOSTS . "` ADD COLUMN moderated TINYINT(1) NOT NULL DEFAULT '1'");
|
||||
}
|
||||
|
||||
if (TINYIB_DBDRIVER === 'pgsql') {
|
||||
$query = "SELECT column_name FROM information_schema.columns WHERE table_name='" . TINYIB_DBPOSTS . "' and column_name='stickied'";
|
||||
$stickied_exists = $dbh->query($query)->fetchColumn() != 0;
|
||||
} else {
|
||||
$dbh->query("SHOW COLUMNS FROM " . TINYIB_DBPOSTS . " LIKE 'stickied'");
|
||||
$dbh->query("SHOW COLUMNS FROM `" . TINYIB_DBPOSTS . "` LIKE 'stickied'");
|
||||
$stickied_exists = $dbh->query("SELECT FOUND_ROWS()")->fetchColumn() != 0;
|
||||
}
|
||||
if (!$stickied_exists) {
|
||||
$dbh->exec("ALTER TABLE " . TINYIB_DBPOSTS . " ADD COLUMN stickied TINYINT(1) NOT NULL DEFAULT '0'");
|
||||
$dbh->exec("ALTER TABLE `" . TINYIB_DBPOSTS . "` ADD COLUMN stickied TINYINT(1) NOT NULL DEFAULT '0'");
|
||||
}
|
||||
|
||||
if (TINYIB_DBDRIVER === 'pgsql') {
|
||||
$query = "SELECT column_name FROM information_schema.columns WHERE table_name='" . TINYIB_DBPOSTS . "' and column_name='locked'";
|
||||
$locked_exists = $dbh->query($query)->fetchColumn() != 0;
|
||||
} else {
|
||||
$dbh->query("SHOW COLUMNS FROM " . TINYIB_DBPOSTS . " LIKE 'locked'");
|
||||
$dbh->query("SHOW COLUMNS FROM `" . TINYIB_DBPOSTS . "` LIKE 'locked'");
|
||||
$locked_exists = $dbh->query("SELECT FOUND_ROWS()")->fetchColumn() != 0;
|
||||
}
|
||||
if (!$locked_exists) {
|
||||
$dbh->exec("ALTER TABLE " . TINYIB_DBPOSTS . " ADD COLUMN locked TINYINT(1) NOT NULL DEFAULT '0'");
|
||||
$dbh->exec("ALTER TABLE `" . TINYIB_DBPOSTS . "` ADD COLUMN locked TINYINT(1) NOT NULL DEFAULT '0'");
|
||||
}
|
||||
|
||||
if (TINYIB_DBDRIVER === 'pgsql') {
|
||||
$dbh->query("ALTER TABLE " . TINYIB_DBPOSTS . " ALTER COLUMN tripcode TYPE VARCHAR(24)");
|
||||
$dbh->query("ALTER TABLE `" . TINYIB_DBPOSTS . "` ALTER COLUMN tripcode VARCHAR(24) NOT NULL DEFAULT ''");
|
||||
|
||||
$dbh->query("ALTER TABLE " . TINYIB_DBPOSTS . " ALTER COLUMN ip TYPE VARCHAR(255)");
|
||||
$dbh->query("ALTER TABLE " . TINYIB_DBBANS . " ALTER COLUMN ip TYPE VARCHAR(255)");
|
||||
$dbh->query("ALTER TABLE `" . TINYIB_DBPOSTS . "` ALTER COLUMN ip VARCHAR(255) NOT NULL DEFAULT ''");
|
||||
$dbh->query("ALTER TABLE `" . TINYIB_DBBANS . "` ALTER COLUMN ip VARCHAR(255) NOT NULL DEFAULT ''");
|
||||
} else {
|
||||
$dbh->query("ALTER TABLE " . TINYIB_DBPOSTS . " MODIFY tripcode VARCHAR(24) NOT NULL DEFAULT ''");
|
||||
$dbh->query("ALTER TABLE `" . TINYIB_DBPOSTS . "` MODIFY tripcode VARCHAR(24) NOT NULL DEFAULT ''");
|
||||
|
||||
$dbh->query("ALTER TABLE " . TINYIB_DBPOSTS . " MODIFY ip VARCHAR(255) NOT NULL DEFAULT ''");
|
||||
$dbh->query("ALTER TABLE " . TINYIB_DBBANS . " MODIFY ip VARCHAR(255) NOT NULL DEFAULT ''");
|
||||
$dbh->query("ALTER TABLE `" . TINYIB_DBPOSTS . "` MODIFY ip VARCHAR(255) NOT NULL DEFAULT ''");
|
||||
$dbh->query("ALTER TABLE `" . TINYIB_DBBANS . "` MODIFY ip VARCHAR(255) NOT NULL DEFAULT ''");
|
||||
}
|
||||
|
||||
function pdoQuery($sql, $params = false) {
|
||||
|
@ -128,15 +128,6 @@ function getLogs($offset, $limit) {
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function allLogs() {
|
||||
$logs = array();
|
||||
$result = sqlite_fetch_all(sqlite_query($GLOBALS["db"], "SELECT * FROM " . TINYIB_DBLOGS . " ORDER BY timestamp ASC"), SQLITE_ASSOC);
|
||||
foreach ($result as $log) {
|
||||
$logs[] = $log;
|
||||
}
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function insertLog($log) {
|
||||
sqlite_query($GLOBALS["db"], "INSERT INTO " . TINYIB_DBLOGS . " (timestamp, account, message) VALUES ('" . sqlite_escape_string($log['timestamp']) . "', '" . sqlite_escape_string($log['account']) . "', '" . sqlite_escape_string($log['message']) . "')");
|
||||
}
|
||||
|
@ -147,16 +147,6 @@ function getLogs($offset, $limit) {
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function allLogs() {
|
||||
global $db;
|
||||
$logs = array();
|
||||
$result = $db->query("SELECT * FROM " . TINYIB_DBLOGS . " ORDER BY timestamp ASC");
|
||||
while ($log = $result->fetchArray()) {
|
||||
$logs[] = $log;
|
||||
}
|
||||
return $logs;
|
||||
}
|
||||
|
||||
function insertLog($log) {
|
||||
global $db;
|
||||
$db->exec("INSERT INTO " . TINYIB_DBLOGS . " (timestamp, account, message) VALUES ('" . $db->escapeString($log['timestamp']) . "', '" . $db->escapeString($log['account']) . "', '" . $db->escapeString($log['message']) . "')");
|
||||
|
@ -12,8 +12,12 @@ if (!$db) {
|
||||
fancyDie("Could not connect to database: " . $db->lastErrorMsg());
|
||||
}
|
||||
|
||||
// Set lock timeout
|
||||
$db->busyTimeout(60000);
|
||||
|
||||
// Set journal mode to write-ahead logging
|
||||
$db->exec("PRAGMA journal_mode = wal");
|
||||
|
||||
// Create tables (when necessary)
|
||||
$result = $db->query("SELECT name FROM sqlite_master WHERE type='table' AND name='" . TINYIB_DBACCOUNTS . "'");
|
||||
if (!$result->fetchArray()) {
|
||||
@ -108,7 +112,7 @@ if (!$result->fetchArray()) {
|
||||
if (function_exists('insertPost')) {
|
||||
function migrateAccount($account) {
|
||||
global $db;
|
||||
$db->exec("INSERT INTO " . TINYIB_DBACCOUNTS . " (id, username, password, role, lastactive) VALUES (" . $db->escapeString($account['id']) . ", '" . $db->escapeString($account['username']) . "', '" . $db->escapeString($account['password']) . "', " . $db->escapeString($account['role']) . ", '" . $db->escapeString($account['lastactive']) . "')");
|
||||
$db->exec("INSERT INTO " . TINYIB_DBACCOUNTS . " (id, username, password, role, lastactive) VALUES (" . $db->escapeString($account['id']) . ", '" . $db->escapeString($account['username']) . "', " . $db->escapeString($account['password']) . ", " . $db->escapeString($account['role']) . ", '" . $db->escapeString($account['lastactive']) . "')");
|
||||
}
|
||||
|
||||
function migrateBan($ban) {
|
||||
|
@ -11,6 +11,12 @@ if (!$db = sqlite_open(TINYIB_DBPATH, 0666, $error)) {
|
||||
fancyDie("Could not connect to database: " . $error);
|
||||
}
|
||||
|
||||
// Set lock timeout
|
||||
sqlite_busy_timeout($db, 60000);
|
||||
|
||||
// Set journal mode to write-ahead logging
|
||||
sqlite_query($db, "PRAGMA journal_mode = wal");
|
||||
|
||||
// Create tables (when necessary)
|
||||
$result = sqlite_query($db, "SELECT name FROM sqlite_master WHERE type='table' AND name='" . TINYIB_DBACCOUNTS . "'");
|
||||
if (sqlite_num_rows($result) == 0) {
|
||||
|
@ -6,7 +6,6 @@ if (!defined('TINYIB_BOARD')) {
|
||||
define('TINYIB_NEWTHREAD', '0');
|
||||
define('TINYIB_INDEXPAGE', false);
|
||||
define('TINYIB_RESPAGE', true);
|
||||
define('TINYIB_LOCKFILE', 'tinyib.lock');
|
||||
define('TINYIB_WORDBREAK_IDENTIFIER', '@!@TINYIB_WORDBREAK@!@');
|
||||
|
||||
// Account roles
|
||||
|
@ -3,8 +3,6 @@ if (!defined('TINYIB_BOARD')) {
|
||||
die('');
|
||||
}
|
||||
|
||||
$multibyte_enabled = function_exists('mb_strlen');
|
||||
|
||||
if (!function_exists('array_column')) {
|
||||
function array_column($array, $column_name) {
|
||||
return array_map(function ($element) use ($column_name) {
|
||||
@ -13,51 +11,6 @@ if (!function_exists('array_column')) {
|
||||
}
|
||||
}
|
||||
|
||||
// lockDatabase obtains an exclusive lock to prevent race conditions when
|
||||
// accessing the database.
|
||||
function lockDatabase() {
|
||||
if (TINYIB_LOCKFILE == '') {
|
||||
return true;
|
||||
}
|
||||
$fp = fopen(TINYIB_LOCKFILE, 'c+');
|
||||
if (!flock($fp, LOCK_EX)) {
|
||||
fancyDie('Failed to lock control file.');
|
||||
}
|
||||
return $fp;
|
||||
}
|
||||
|
||||
function _strlen($string) {
|
||||
global $multibyte_enabled;
|
||||
if ($multibyte_enabled) {
|
||||
return mb_strlen($string);
|
||||
}
|
||||
return strlen($string);
|
||||
}
|
||||
|
||||
function _strpos($haystack, $needle, $offset=0) {
|
||||
global $multibyte_enabled;
|
||||
if ($multibyte_enabled) {
|
||||
return mb_strpos($haystack, $needle, $offset);
|
||||
}
|
||||
return strpos($haystack, $needle, $offset);
|
||||
}
|
||||
|
||||
function _substr($string, $start, $length=null) {
|
||||
global $multibyte_enabled;
|
||||
if ($multibyte_enabled) {
|
||||
return mb_substr($string, $start, $length);
|
||||
}
|
||||
return substr($string, $start, $length);
|
||||
}
|
||||
|
||||
function _substr_count($haystack, $needle) {
|
||||
global $multibyte_enabled;
|
||||
if ($multibyte_enabled) {
|
||||
return mb_substr_count($haystack, $needle);
|
||||
}
|
||||
return substr_count($haystack, $needle);
|
||||
}
|
||||
|
||||
function hashData($data, $force = false) {
|
||||
global $bcrypt_salt;
|
||||
if (substr($data, 0, 4) == '$2y$' && !$force) {
|
||||
@ -73,13 +26,6 @@ function cleanString($string) {
|
||||
return str_replace($search, $replace, $string);
|
||||
}
|
||||
|
||||
function cleanQuotes($string) {
|
||||
$search = array("'", "\"");
|
||||
$replace = array("'", """);
|
||||
|
||||
return str_replace($search, $replace, $string);
|
||||
}
|
||||
|
||||
function plural($count, $singular, $plural) {
|
||||
if ($plural == 's') {
|
||||
$plural = $singular . $plural;
|
||||
@ -203,7 +149,7 @@ function nameBlock($name, $tripcode, $email, $timestamp, $capcode) {
|
||||
$output = '<a href="mailto:' . $email . '">' . $output . '</a>';
|
||||
}
|
||||
|
||||
return $output . $capcode . ' ' . formatDate($timestamp);
|
||||
return $output . $capcode . ' ' . strftime(TINYIB_DATEFMT, $timestamp);
|
||||
}
|
||||
|
||||
function writePage($filename, $contents) {
|
||||
@ -383,7 +329,7 @@ function checkBanned() {
|
||||
$ban = banByIP(remoteAddress());
|
||||
if ($ban) {
|
||||
if ($ban['expire'] == 0 || $ban['expire'] > time()) {
|
||||
$expire = ($ban['expire'] > 0) ? ('<br>This ban will expire ' . formatDate($ban['expire'])) : '<br>This ban is permanent and will not expire.';
|
||||
$expire = ($ban['expire'] > 0) ? ('<br>This ban will expire ' . strftime(TINYIB_DATEFMT, $ban['expire'])) : '<br>This ban is permanent and will not expire.';
|
||||
$reason = ($ban['reason'] == '') ? '' : ('<br>Reason: ' . $ban['reason']);
|
||||
fancyDie('Your IP address ' . remoteAddress() . ' has been banned from posting on this image board. ' . $expire . $reason);
|
||||
} else {
|
||||
@ -422,8 +368,8 @@ function checkFlood() {
|
||||
}
|
||||
|
||||
function checkMessageSize() {
|
||||
if (TINYIB_MAXMESSAGE > 0 && _strlen($_POST['message']) > TINYIB_MAXMESSAGE) {
|
||||
fancyDie(sprintf(__('Please shorten your message, or post it in multiple parts. Your message is %1$d characters long, and the maximum allowed is %2$d.'), _strlen($_POST['message']), TINYIB_MAXMESSAGE));
|
||||
if (TINYIB_MAXMESSAGE > 0 && strlen($_POST['message']) > TINYIB_MAXMESSAGE) {
|
||||
fancyDie(sprintf(__('Please shorten your message, or post it in multiple parts. Your message is %1$d characters long, and the maximum allowed is %2$d.'), strlen($_POST['message']), TINYIB_MAXMESSAGE));
|
||||
}
|
||||
}
|
||||
|
||||
@ -596,7 +542,7 @@ function videoDimensions($file_location) {
|
||||
|
||||
$dimensions = '';
|
||||
$exit_status = 1;
|
||||
exec("ffprobe -hide_banner -loglevel error -of csv=p=0 -select_streams v -show_entries stream=width,height $file_location", $dimensions, $exit_status);
|
||||
exec("ffprobe -hide_banner -loglevel error -of csv=p=0 -show_entries stream=width,height $file_location", $dimensions, $exit_status);
|
||||
if ($exit_status != 0) {
|
||||
return array(0, 0);
|
||||
}
|
||||
@ -827,8 +773,8 @@ function addVideoOverlay($thumb_location) {
|
||||
|
||||
function strallpos($haystack, $needle, $offset = 0) {
|
||||
$result = array();
|
||||
for ($i = $offset; $i < _strlen($haystack); $i++) {
|
||||
$pos = _strpos($haystack, $needle, $i);
|
||||
for ($i = $offset; $i < strlen($haystack); $i++) {
|
||||
$pos = strpos($haystack, $needle, $i);
|
||||
if ($pos !== False) {
|
||||
$offset = $pos;
|
||||
if ($offset >= $i) {
|
||||
@ -934,7 +880,7 @@ function attachFile($post, $filepath, $filename, $uploaded, $spoiler) {
|
||||
}
|
||||
|
||||
$post['file'] = $file_name;
|
||||
$post['file_original'] = trim(htmlentities(_substr($filename, 0, 50), ENT_QUOTES));
|
||||
$post['file_original'] = trim(htmlentities(substr($filename, 0, 50), ENT_QUOTES));
|
||||
$post['file_hex'] = md5_file($filepath);
|
||||
$post['file_size'] = $filesize;
|
||||
$post['file_size_formatted'] = convertBytes($post['file_size']);
|
||||
@ -1022,10 +968,6 @@ function stripMetadata($filename) {
|
||||
exec("exiftool -All= -overwrite_original_in_place " . escapeshellarg($filename), $discard, $exit_status);
|
||||
}
|
||||
|
||||
function formatDate($timestamp) {
|
||||
return @strftime(TINYIB_DATEFMT, $timestamp);
|
||||
}
|
||||
|
||||
function remoteAddress() {
|
||||
if (TINYIB_CLOUDFLARE && isset($_SERVER['HTTP_CF_CONNECTING_IP'])) {
|
||||
return $_SERVER['HTTP_CF_CONNECTING_IP'];
|
||||
|
@ -1,13 +0,0 @@
|
||||
<?php
|
||||
|
||||
use Gettext\Translator;
|
||||
use Gettext\Translations;
|
||||
|
||||
setlocale(LC_ALL, TINYIB_LOCALE);
|
||||
|
||||
require 'inc/gettext/src/autoloader.php';
|
||||
|
||||
$translations = Translations::fromPoFile('locale/' . TINYIB_LOCALE . '/tinyib.po');
|
||||
$translator = new Translator();
|
||||
$translator->loadTranslations($translations);
|
||||
$translator->register();
|
@ -1,4 +1,5 @@
|
||||
# Change Log
|
||||
|
||||
All notable changes to this project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||
@ -6,42 +7,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||
|
||||
Previous releases are documented in [github releases](https://github.com/oscarotero/Gettext/releases)
|
||||
|
||||
## [4.8.11] - 2023-08-14
|
||||
### Fixed
|
||||
- PHP 5.4 support [#289]
|
||||
|
||||
## [4.8.10] - 2023-08-10
|
||||
### Fixed
|
||||
- Previous version was tagged with the incorrect branch.
|
||||
|
||||
## [4.8.9] - 2023-08-10
|
||||
### Fixed
|
||||
- PHP 8.1 deprecation warning [#289]
|
||||
|
||||
## [4.8.8] - 2022-12-08
|
||||
### Fixed
|
||||
- PHP functions prefixed with a slash are being ignored [#284], [#288]
|
||||
|
||||
## [4.8.7] - 2022-08-02
|
||||
### Fixed
|
||||
- Suppress deprecation error on PHP 8.1 [#280]
|
||||
|
||||
## [4.8.6] - 2021-10-19
|
||||
### Fixed
|
||||
- Parse PO files with multiline disabled entries [#274]
|
||||
|
||||
## [4.8.5] - 2021-07-13
|
||||
### Fixed
|
||||
- Prevent adding the same translator comment to multiple functions [#271]
|
||||
|
||||
## [4.8.4] - 2021-03-10
|
||||
### Fixed
|
||||
- PHP 8 compatibilty [#266]
|
||||
|
||||
## [4.8.3] - 2020-11-18
|
||||
### Fixed
|
||||
- Blade extractor for Laravel8/Jetstream [#261]
|
||||
|
||||
## [4.8.2] - 2019-12-02
|
||||
### Fixed
|
||||
- UTF-8 handling for VueJs extractor [#242]
|
||||
@ -140,7 +105,7 @@ Previous releases are documented in [github releases](https://github.com/oscarot
|
||||
### Fixed
|
||||
- Improved the code style including php_codesniffer in development
|
||||
|
||||
## [4.3.0] - 2017-03-04
|
||||
## 4.3.0 - 2017-03-04
|
||||
### Added
|
||||
- Added support for named placeholders (using `strtr`). For example:
|
||||
```php
|
||||
@ -190,24 +155,7 @@ Previous releases are documented in [github releases](https://github.com/oscarot
|
||||
[#231]: https://github.com/oscarotero/Gettext/issues/231
|
||||
[#238]: https://github.com/oscarotero/Gettext/issues/238
|
||||
[#242]: https://github.com/oscarotero/Gettext/issues/242
|
||||
[#261]: https://github.com/oscarotero/Gettext/issues/261
|
||||
[#266]: https://github.com/oscarotero/Gettext/issues/266
|
||||
[#271]: https://github.com/oscarotero/Gettext/issues/271
|
||||
[#274]: https://github.com/oscarotero/Gettext/issues/274
|
||||
[#280]: https://github.com/oscarotero/Gettext/issues/280
|
||||
[#284]: https://github.com/oscarotero/Gettext/issues/284
|
||||
[#288]: https://github.com/oscarotero/Gettext/issues/288
|
||||
[#289]: https://github.com/oscarotero/Gettext/issues/289
|
||||
|
||||
[4.8.11]: https://github.com/oscarotero/Gettext/compare/v4.8.10...v4.8.11
|
||||
[4.8.10]: https://github.com/oscarotero/Gettext/compare/v4.8.9...v4.8.10
|
||||
[4.8.9]: https://github.com/oscarotero/Gettext/compare/v4.8.8...v4.8.9
|
||||
[4.8.8]: https://github.com/oscarotero/Gettext/compare/v4.8.7...v4.8.8
|
||||
[4.8.7]: https://github.com/oscarotero/Gettext/compare/v4.8.6...v4.8.7
|
||||
[4.8.6]: https://github.com/oscarotero/Gettext/compare/v4.8.5...v4.8.6
|
||||
[4.8.5]: https://github.com/oscarotero/Gettext/compare/v4.8.4...v4.8.5
|
||||
[4.8.4]: https://github.com/oscarotero/Gettext/compare/v4.8.3...v4.8.4
|
||||
[4.8.3]: https://github.com/oscarotero/Gettext/compare/v4.8.2...v4.8.3
|
||||
[4.8.2]: https://github.com/oscarotero/Gettext/compare/v4.8.1...v4.8.2
|
||||
[4.8.1]: https://github.com/oscarotero/Gettext/compare/v4.8.0...v4.8.1
|
||||
[4.8.0]: https://github.com/oscarotero/Gettext/compare/v4.7.0...v4.8.0
|
||||
@ -222,4 +170,3 @@ Previous releases are documented in [github releases](https://github.com/oscarot
|
||||
[4.4.2]: https://github.com/oscarotero/Gettext/compare/v4.4.1...v4.4.2
|
||||
[4.4.1]: https://github.com/oscarotero/Gettext/compare/v4.4.0...v4.4.1
|
||||
[4.4.0]: https://github.com/oscarotero/Gettext/compare/v4.3.0...v4.4.0
|
||||
[4.3.0]: https://github.com/oscarotero/Gettext/releases/tag/v4.3.0
|
||||
|
@ -22,7 +22,7 @@
|
||||
"gettext/languages": "^2.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"illuminate/view": "^5.0.x-dev",
|
||||
"illuminate/view": "*",
|
||||
"twig/twig": "^1.31|^2.0",
|
||||
"twig/extensions": "*",
|
||||
"symfony/yaml": "~2",
|
||||
@ -50,10 +50,5 @@
|
||||
"phpunit",
|
||||
"phpcs"
|
||||
]
|
||||
},
|
||||
"config": {
|
||||
"allow-plugins": {
|
||||
"kylekatarnls/update-helper": false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -19,11 +19,6 @@ class Blade extends Extractor implements ExtractorInterface
|
||||
if (empty($options['facade'])) {
|
||||
$cachePath = empty($options['cachePath']) ? sys_get_temp_dir() : $options['cachePath'];
|
||||
$bladeCompiler = new BladeCompiler(new Filesystem(), $cachePath);
|
||||
|
||||
if (method_exists($bladeCompiler, 'withoutComponentTags')) {
|
||||
$bladeCompiler->withoutComponentTags();
|
||||
}
|
||||
|
||||
$string = $bladeCompiler->compileString($string);
|
||||
} else {
|
||||
$string = $options['facade']::compileString($string);
|
||||
|
@ -162,19 +162,15 @@ class Po extends Extractor implements ExtractorInterface
|
||||
protected static function fixMultiLines($line, array $lines, &$i)
|
||||
{
|
||||
for ($j = $i, $t = count($lines); $j < $t; ++$j) {
|
||||
if (substr($line, -1, 1) == '"' && isset($lines[$j + 1])) {
|
||||
$nextLine = trim($lines[$j + 1]);
|
||||
if (substr($nextLine, 0, 1) == '"') {
|
||||
$line = substr($line, 0, -1).substr($nextLine, 1);
|
||||
continue;
|
||||
}
|
||||
if (substr($nextLine, 0, 4) == '#~ "') {
|
||||
$line = substr($line, 0, -1).substr($nextLine, 4);
|
||||
continue;
|
||||
}
|
||||
if (substr($line, -1, 1) == '"'
|
||||
&& isset($lines[$j + 1])
|
||||
&& substr(trim($lines[$j + 1]), 0, 1) == '"'
|
||||
) {
|
||||
$line = substr($line, 0, -1).substr(trim($lines[$j + 1]), 1);
|
||||
} else {
|
||||
$i = $j;
|
||||
break;
|
||||
}
|
||||
$i = $j;
|
||||
break;
|
||||
}
|
||||
|
||||
return $line;
|
||||
|
@ -215,7 +215,6 @@ class Translations extends ArrayObject
|
||||
*
|
||||
* @return Translation
|
||||
*/
|
||||
#[\ReturnTypeWillChange]
|
||||
public function offsetSet($index, $value)
|
||||
{
|
||||
if (!($value instanceof Translation)) {
|
||||
@ -282,7 +281,7 @@ class Translations extends ArrayObject
|
||||
public function setHeader($name, $value)
|
||||
{
|
||||
$name = trim($name);
|
||||
$this->headers[$name] = trim(isset($value) ? $value : '');
|
||||
$this->headers[$name] = trim($value);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
@ -30,7 +30,7 @@ abstract class FunctionsScanner
|
||||
$translations = is_array($translations) ? $translations : [$translations];
|
||||
|
||||
/** @var Translations[] $translationByDomain [domain => translations, ..] */
|
||||
$translationByDomain = array_reduce($translations, function ($carry, Translations $translations) {
|
||||
$translationByDomain = array_reduce($translations, function (&$carry, Translations $translations) {
|
||||
$carry[$translations->getDomain()] = $translations;
|
||||
return $carry;
|
||||
}, []);
|
||||
@ -38,15 +38,6 @@ abstract class FunctionsScanner
|
||||
$functions = $options['functions'];
|
||||
$file = $options['file'];
|
||||
|
||||
/**
|
||||
* List of source code comments already associated with a function.
|
||||
*
|
||||
* Prevents associating the same comment to multiple functions.
|
||||
*
|
||||
* @var ParsedComment[] $commentsCache
|
||||
*/
|
||||
$commentsCache = [];
|
||||
|
||||
foreach ($this->getFunctions($options['constants']) as $function) {
|
||||
list($name, $line, $args) = $function;
|
||||
|
||||
@ -87,13 +78,8 @@ abstract class FunctionsScanner
|
||||
$translation->addReference($file, $line);
|
||||
|
||||
if (isset($function[3])) {
|
||||
/* @var ParsedComment $extractedComment */
|
||||
foreach ($function[3] as $extractedComment) {
|
||||
if (in_array($extractedComment, $commentsCache, true)) {
|
||||
continue;
|
||||
}
|
||||
$translation->addExtractedComment($extractedComment->getComment());
|
||||
$commentsCache[] = $extractedComment;
|
||||
$translation->addExtractedComment($extractedComment);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -45,7 +45,7 @@ class ParsedFunction
|
||||
/**
|
||||
* Extracted comments.
|
||||
*
|
||||
* @var ParsedComment[]|null
|
||||
* @var string[]|null
|
||||
*/
|
||||
protected $comments;
|
||||
|
||||
@ -112,7 +112,7 @@ class ParsedFunction
|
||||
/**
|
||||
* Add a comment associated to this function.
|
||||
*
|
||||
* @param ParsedComment $comment
|
||||
* @param string $comment
|
||||
*/
|
||||
public function addComment($comment)
|
||||
{
|
||||
|
@ -90,11 +90,6 @@ class PhpFunctionsScanner extends FunctionsScanner
|
||||
continue;
|
||||
}
|
||||
|
||||
if (defined('T_NAME_FULLY_QUALIFIED') && T_NAME_FULLY_QUALIFIED === $value[0]) {
|
||||
$value[0] = T_STRING;
|
||||
$value[1] = ltrim($value[1], '\\');
|
||||
}
|
||||
|
||||
switch ($value[0]) {
|
||||
case T_CONSTANT_ENCAPSED_STRING:
|
||||
//add an argument to the current function
|
||||
@ -134,7 +129,7 @@ class PhpFunctionsScanner extends FunctionsScanner
|
||||
$comment = $bufferComments[0];
|
||||
|
||||
if ($comment->isRelatedWith($newFunction)) {
|
||||
$newFunction->addComment($comment);
|
||||
$newFunction->addComment($comment->getComment());
|
||||
}
|
||||
}
|
||||
|
||||
@ -153,7 +148,7 @@ class PhpFunctionsScanner extends FunctionsScanner
|
||||
|
||||
// The comment is inside the function call.
|
||||
if (isset($bufferFunctions[0])) {
|
||||
$bufferFunctions[0]->addComment($comment);
|
||||
$bufferFunctions[0]->addComment($comment->getComment());
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -15,7 +15,6 @@ class StringReader
|
||||
*/
|
||||
public function __construct($str)
|
||||
{
|
||||
$this->pos = 0;
|
||||
$this->str = $str;
|
||||
$this->strlen = strlen($this->str);
|
||||
}
|
||||
|
70
inc/html.php
70
inc/html.php
@ -70,7 +70,7 @@ function pageFooter() {
|
||||
|
||||
return <<<EOF
|
||||
<div class="footer">
|
||||
- <a href="http://www.2chan.net" target="_blank">futaba</a> + <a href="http://www.1chan.net" target="_blank">futallaby</a> + <a href="https://codeberg.org/tslocum/tinyib" target="_blank">tinyib</a> -
|
||||
- <a href="http://www.2chan.net" target="_top">futaba</a> + <a href="http://www.1chan.net" target="_top">futallaby</a> + <a href="https://code.rocketnine.space/tslocum/tinyib" target="_top">tinyib</a> -
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@ -95,8 +95,8 @@ function _makeLinksClickable($matches) {
|
||||
if (!isset($matches[1])) {
|
||||
return '';
|
||||
}
|
||||
$url = cleanQuotes($matches[1]);
|
||||
$text = $matches[1];
|
||||
$url = str_replace('&', '&', htmlspecialchars($matches[1], ENT_QUOTES));
|
||||
$text = htmlentities($matches[1], ENT_QUOTES);
|
||||
return '<a href="' . $url . '" target="_blank">' . $text . '</a>';
|
||||
}
|
||||
|
||||
@ -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;
|
||||
@ -498,16 +498,16 @@ function buildPost($post, $res, $compact=false) {
|
||||
</video>
|
||||
EOF;
|
||||
} else if (in_array(substr($post['file'], -4), array('.jpg', '.png', '.gif'))) {
|
||||
$expandhtml = "<a href=\"$direct_link\" onclick=\"return expandFile(event, '{$post['id']}');\"><img src=\"" . ($res == TINYIB_RESPAGE ? "../" : "") . "src/{$post["file"]}\" width=\"{$post["image_width"]}\" style=\"min-width: {$post["thumb_width"]}px;min-height: {$post["thumb_height"]}px;max-width: {$w}vw;height: auto;\"></a>";
|
||||
$expandhtml = "<a href=\"$direct_link\" onclick=\"return expandFile(event, '${post['id']}');\"><img src=\"" . ($res == TINYIB_RESPAGE ? "../" : "") . "src/${post["file"]}\" width=\"${post["image_width"]}\" style=\"max-width: {$w}vw;height: auto;\"></a>";
|
||||
}
|
||||
|
||||
$thumblink = "<a href=\"$direct_link\" target=\"_blank\"" . ((isEmbed($post["file_hex"]) || in_array(substr($post['file'], -4), array('.jpg', '.png', '.gif', 'webm', '.mp4'))) ? " onclick=\"return expandFile(event, '{$post['id']}');\"" : "") . ">";
|
||||
$thumblink = "<a href=\"$direct_link\" target=\"_blank\"" . ((isEmbed($post["file_hex"]) || in_array(substr($post['file'], -4), array('.jpg', '.png', '.gif', 'webm', '.mp4'))) ? " onclick=\"return expandFile(event, '${post['id']}');\"" : "") . ">";
|
||||
$expandhtml = rawurlencode($expandhtml);
|
||||
|
||||
if (isEmbed($post["file_hex"])) {
|
||||
$filesize .= "<a href=\"$direct_link\" onclick=\"return expandFile(event, '{$post['id']}');\">{$post['file_original']}</a>–({$post['file_hex']})";
|
||||
$filesize .= "<a href=\"$direct_link\" onclick=\"return expandFile(event, '${post['id']}');\">${post['file_original']}</a>–(${post['file_hex']})";
|
||||
} else if ($post["file"] != '') {
|
||||
$filesize .= $thumblink . "{$post["file"]}</a>–({$post["file_size_formatted"]}";
|
||||
$filesize .= $thumblink . "${post["file"]}</a>–(${post["file_size_formatted"]}";
|
||||
if ($post["image_width"] > 0 && $post["image_height"] > 0) {
|
||||
$filesize .= ", " . $post["image_width"] . "x" . $post["image_height"];
|
||||
}
|
||||
@ -529,7 +529,7 @@ EOF;
|
||||
if ($post["thumb_width"] > 0 && $post["thumb_height"] > 0) {
|
||||
$filehtml .= <<<EOF
|
||||
$thumblink
|
||||
<img src="thumb/{$post["thumb"]}" alt="{$post["id"]}" class="thumb" id="thumbnail{$post['id']}" width="{$post["thumb_width"]}" height="{$post["thumb_height"]}">
|
||||
<img src="thumb/${post["thumb"]}" alt="${post["id"]}" class="thumb" id="thumbnail${post['id']}" width="${post["thumb_width"]}" height="${post["thumb_height"]}">
|
||||
</a>
|
||||
EOF;
|
||||
}
|
||||
@ -537,8 +537,8 @@ EOF;
|
||||
|
||||
if ($expandhtml != '') {
|
||||
$filehtml .= <<<EOF
|
||||
<div id="expand{$post['id']}" style="display: none;">$expandhtml</div>
|
||||
<div id="file{$post['id']}" class="thumb" style="display: none;"></div>
|
||||
<div id="expand${post['id']}" style="display: none;">$expandhtml</div>
|
||||
<div id="file${post['id']}" class="thumb" style="display: none;"></div>
|
||||
EOF;
|
||||
}
|
||||
}
|
||||
@ -556,15 +556,15 @@ EOF;
|
||||
<td class="doubledash">
|
||||
¨
|
||||
</td>
|
||||
<td class="reply" id="post{$post["id"]}">
|
||||
<td class="reply" id="post${post["id"]}">
|
||||
EOF;
|
||||
}
|
||||
}
|
||||
|
||||
$return .= <<<EOF
|
||||
<a id="{$post['id']}"></a>
|
||||
<a id="${post['id']}"></a>
|
||||
<label>
|
||||
<input type="checkbox" name="delete[]" value="{$post['id']}">
|
||||
<input type="checkbox" name="delete[]" value="${post['id']}">
|
||||
EOF;
|
||||
|
||||
if ($post['subject'] != '') {
|
||||
@ -572,7 +572,7 @@ EOF;
|
||||
}
|
||||
|
||||
$return .= <<<EOF
|
||||
{$post["nameblock"]}
|
||||
${post["nameblock"]}
|
||||
</label>
|
||||
<span class="reflink">
|
||||
$reflink
|
||||
@ -589,19 +589,19 @@ EOF;
|
||||
|
||||
if ($post['parent'] == TINYIB_NEWTHREAD) {
|
||||
if ($res == TINYIB_INDEXPAGE) {
|
||||
$return .= " [<a href=\"res/{$post["id"]}.html\">" . __("Reply") . "</a>]";
|
||||
$return .= " [<a href=\"res/${post["id"]}.html\">" . __("Reply") . "</a>]";
|
||||
}
|
||||
$return .= backlinks($post);
|
||||
}
|
||||
|
||||
if (TINYIB_TRUNCATE > 0 && !$res && _substr_count($post['message'], '<br>') > TINYIB_TRUNCATE) { // Truncate messages on board index pages for readability
|
||||
if (TINYIB_TRUNCATE > 0 && !$res && substr_count($post['message'], '<br>') > TINYIB_TRUNCATE) { // Truncate messages on board index pages for readability
|
||||
$br_offsets = strallpos($post['message'], '<br>');
|
||||
$post['message'] = _substr($post['message'], 0, $br_offsets[TINYIB_TRUNCATE - 1]);
|
||||
$post['message'] = substr($post['message'], 0, $br_offsets[TINYIB_TRUNCATE - 1]);
|
||||
$post['message'] .= '<br><span class="omittedposts">' . __('Post truncated. Click Reply to view.') . '</span><br>';
|
||||
}
|
||||
$return .= <<<EOF
|
||||
<div class="message">
|
||||
{$post["message"]}
|
||||
${post["message"]}
|
||||
</div>
|
||||
EOF;
|
||||
|
||||
@ -762,7 +762,7 @@ function buildCatalogPost($post) {
|
||||
EOF;
|
||||
}
|
||||
$replies = numRepliesToThreadByID($post['id']);
|
||||
$subject = trim($post['subject']) != '' ? $post['subject'] : _substr(trim(str_ireplace("\n", '', strip_tags($post['message']))), 0, 75);
|
||||
$subject = trim($post['subject']) != '' ? $post['subject'] : substr(trim(str_ireplace("\n", '', strip_tags($post['message']))), 0, 75);
|
||||
|
||||
return <<<EOF
|
||||
<div class="catalogpost" style="max-width: {$maxwidth}px;">
|
||||
@ -1006,7 +1006,7 @@ function manageModerationLog($offset) {
|
||||
}
|
||||
$u[$log['account']] = $username;
|
||||
}
|
||||
$text .= '<tr><td>' . formatDate($log['timestamp']) . '</td><td>' . htmlentities($u[$log['account']]) . '</td><td>' . $log['message'] . '</td></tr>';
|
||||
$text .= '<tr><td>' . strftime(TINYIB_DATEFMT, $log['timestamp']) . '</td><td>' . htmlentities($u[$log['account']]) . '</td><td>' . $log['message'] . '</td></tr>';
|
||||
}
|
||||
|
||||
if ($text == '') {
|
||||
@ -1179,7 +1179,7 @@ function manageAccountsTable() {
|
||||
if (count($allaccounts) > 0) {
|
||||
$text .= '<table border="1"><tr><th>' . __('Username') . '</th><th>' . __('Role') . '</th><th>' . __('Last active') . '</th><th> </th></tr>';
|
||||
foreach ($allaccounts as $account) {
|
||||
$lastactive = ($account['lastactive'] > 0) ? formatDate($account['lastactive']) : __('Never');
|
||||
$lastactive = ($account['lastactive'] > 0) ? strftime(TINYIB_DATEFMT, $account['lastactive']) : __('Never');
|
||||
$text .= '<tr><td>' . htmlentities($account['username']) . '</td><td>';
|
||||
switch (intval($account['role'])) {
|
||||
case TINYIB_SUPER_ADMINISTRATOR:
|
||||
@ -1228,7 +1228,7 @@ function manageBanForm() {
|
||||
<fieldset>
|
||||
<legend>$txt_ban</legend>
|
||||
<table border="0">
|
||||
<tr><td><label for="ip">$txt_ban_ip</label></td><td><input type="text" name="ip" id="ip" value="{$_GET['bans']}"></td><td><input type="submit" value="$txt_submit" class="managebutton"></td></tr>
|
||||
<tr><td><label for="ip">$txt_ban_ip</label></td><td><input type="text" name="ip" id="ip" value="${_GET['bans']}"></td><td><input type="submit" value="$txt_submit" class="managebutton"></td></tr>
|
||||
<tr><td><label for="expire">$txt_ban_expire</label></td><td><input type="text" name="expire" id="expire" value="0"></td><td><small><a href="#" onclick="document.tinyib.expire.value='3600';return false;">$txt_1h</a> <a href="#" onclick="document.tinyib.expire.value='86400';return false;">$txt_1d</a> <a href="#" onclick="document.tinyib.expire.value='172800';return false;">$txt_2d</a> <a href="#" onclick="document.tinyib.expire.value='604800';return false;">$txt_1w</a> <a href="#" onclick="document.tinyib.expire.value='1209600';return false;">$txt_2w</a> <a href="#" onclick="document.tinyib.expire.value='2592000';return false;">$txt_1m</a> <a href="#" onclick="document.tinyib.expire.value='0';return false;">$txt_ban_never</a></small></td></tr>
|
||||
<tr><td><label for="reason">$txt_ban_reason</label></td><td><input type="text" name="reason" id="reason"></td><td><small>$txt_ban_optional</small></td></tr>
|
||||
$banmessage_html
|
||||
@ -1246,9 +1246,9 @@ function manageBansTable() {
|
||||
if (count($allbans) > 0) {
|
||||
$text .= '<table border="1"><tr><th>' . __('IP Address') . '</th><th>' . __('Set At') . '</th><th>' . __('Expires') . '</th><th>' . __('Reason') . '</th><th> </th></tr>';
|
||||
foreach ($allbans as $ban) {
|
||||
$expire = ($ban['expire'] > 0) ? formatDate($ban['expire']) : __('Does not expire');
|
||||
$expire = ($ban['expire'] > 0) ? strftime(TINYIB_DATEFMT, $ban['expire']) : __('Does not expire');
|
||||
$reason = ($ban['reason'] == '') ? ' ' : htmlentities($ban['reason']);
|
||||
$text .= '<tr><td>' . $ban['ip'] . '</td><td>' . formatDate($ban['timestamp']) . '</td><td>' . $expire . '</td><td>' . $reason . '</td><td><a href="?manage&bans&lift=' . $ban['id'] . '">' . __('lift') . '</a></td></tr>';
|
||||
$text .= '<tr><td>' . $ban['ip'] . '</td><td>' . strftime(TINYIB_DATEFMT, $ban['timestamp']) . '</td><td>' . $expire . '</td><td>' . $reason . '</td><td><a href="?manage&bans&lift=' . $ban['id'] . '">' . __('lift') . '</a></td></tr>';
|
||||
}
|
||||
$text .= '</table>';
|
||||
}
|
||||
@ -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 <<<EOF
|
||||
@ -1268,7 +1268,7 @@ function manageModeratePostForm() {
|
||||
<fieldset>
|
||||
<legend>$txt_moderate</legend>
|
||||
<div valign="top"><label for="moderate">$txt_postid</label> <input type="text" name="moderate" id="moderate"> <input type="submit" value="$txt_submit" class="managebutton"></div><br>
|
||||
<b>$txt_tip:</b> $txt_tiptext1<br>
|
||||
<b>$txt_tip</b> $txt_tiptext1<br>
|
||||
$txt_tiptext2<br>
|
||||
</fieldset>
|
||||
</form><br>
|
||||
@ -1368,7 +1368,7 @@ function manageModeratePost($post, $compact=false) {
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$delete_info = sprintf(__('Belongs to %s'), postLink('>>' . $post['id']));
|
||||
$delete_info = __('Belongs to ' . postLink('>>' . $post['id']) . '.');
|
||||
}
|
||||
|
||||
$sticky_html = "";
|
||||
@ -1381,7 +1381,7 @@ function manageModeratePost($post, $compact=false) {
|
||||
<tr><td>
|
||||
<form method="get" action="?">
|
||||
<input type="hidden" name="manage" value="">
|
||||
<input type="hidden" name="sticky" value="{$post['id']}">
|
||||
<input type="hidden" name="sticky" value="${post['id']}">
|
||||
<input type="hidden" name="setsticky" value="$sticky_set">
|
||||
<input type="submit" value="$sticky_unsticky" class="managebutton">
|
||||
</form>
|
||||
@ -1395,7 +1395,7 @@ EOF;
|
||||
<tr><td>
|
||||
<form method="get" action="?">
|
||||
<input type="hidden" name="manage" value="">
|
||||
<input type="hidden" name="lock" value="{$post['id']}">
|
||||
<input type="hidden" name="lock" value="${post['id']}">
|
||||
<input type="hidden" name="setlock" value="$lock_set">
|
||||
<input type="submit" value="$lock_label" class="managebutton">
|
||||
</form>
|
||||
@ -1423,7 +1423,7 @@ EOF;
|
||||
|
||||
<form method="get" action="?">
|
||||
<input type="hidden" name="manage" value="">
|
||||
<input type="hidden" name="clearreports" value="{$post['id']}">
|
||||
<input type="hidden" name="clearreports" value="${post['id']}">
|
||||
<input type="submit" value="$txt_clear_reports" class="managebutton">
|
||||
</form>
|
||||
|
||||
@ -1452,7 +1452,7 @@ EOF;
|
||||
|
||||
<form method="get" action="?">
|
||||
<input type="hidden" name="manage" value="">
|
||||
<input type="hidden" name="delete" value="{$post['id']}">
|
||||
<input type="hidden" name="delete" value="${post['id']}">
|
||||
<input type="submit" value="$txt_delete" class="managebutton">
|
||||
</form>
|
||||
|
||||
@ -1461,8 +1461,8 @@ EOF;
|
||||
|
||||
<form method="get" action="?">
|
||||
<input type="hidden" name="manage" value="">
|
||||
<input type="hidden" name="bans" value="{$post['ip']}">
|
||||
<input type="hidden" name="posts" value="{$post['id']}">
|
||||
<input type="hidden" name="bans" value="${post['ip']}">
|
||||
<input type="hidden" name="posts" value="${post['id']}">
|
||||
<input type="submit" value="$txt_ban" class="managebutton" $ban_disabled>
|
||||
</form>
|
||||
|
||||
@ -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 = <<<EOF
|
||||
|
@ -1,851 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2023-01-15 18:48+0000\n"
|
||||
"Last-Translator: wawa2906 <sudanhate@gmail.com>\n"
|
||||
"Language-Team: Arabic <https://hosted.weblate.org/projects/tinyib/tinyib/ar/"
|
||||
">\n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
"X-Poedit-Basepath: ../..\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/functions.php\n"
|
||||
"X-Poedit-SearchPath-2: inc/html.php\n"
|
||||
|
||||
msgid "Click here to go back"
|
||||
msgstr "اضغط هنا للرجوع"
|
||||
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr "يجب تكوين TINYIB_HCAPTCHA_SITE و TINYIB_HCAPTCHA_SECRET"
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr "يجب تكوين TINYIB_RECAPTCHA_SITE و TINYIB_RECAPTCHA_SECRET"
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "يجب تكوين TINYIB_TRIPSEED"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "تم تحديد وضع قواعد البينات غير معروف"
|
||||
|
||||
#, php-format
|
||||
msgid "Directory '%s' can not be written to. Please modify its permissions."
|
||||
msgstr "لا يمكن كتابة الدليل %s . الرجاء تعديل اذوناته"
|
||||
|
||||
msgid "Posting is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr "النشر مغلق حالياً. الرجاء المحاولة مرة اخرى في وقتٍ لاحق."
|
||||
|
||||
msgid "Invalid parent thread ID supplied, unable to create post."
|
||||
msgstr "معرف الخيط الرئيسي غير صالح، لا يمكن النشر."
|
||||
|
||||
msgid "Replies are not allowed to locked threads."
|
||||
msgstr "لا يمكن الرد على منشورات مغلقة."
|
||||
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "منشورتك تحتوي كلمة محظورة."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "كلمة رئيسية"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "عنوان الIP الخاص بك (%1$s) محظور حتى %2$s"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "عنوان الIP الخاص بك محظور للابد"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "سبب"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr "لا يمكن تضوين عنوان URL و تحميل ملف في الوقت ذاته."
|
||||
|
||||
#, php-format
|
||||
msgid "Invalid embed URL. Only %s URLs are supported."
|
||||
msgstr "عنوان URL غير صالح. يتم دعم عناوين %s فقط."
|
||||
|
||||
#, php-format
|
||||
msgid "That file is larger than %s."
|
||||
msgstr "ذاك الملف اكبر من %s."
|
||||
|
||||
msgid "Failed to download file at specified URL."
|
||||
msgstr "فشل تحميل الملف على هذا العنوان."
|
||||
|
||||
msgid "Error while processing audio/video."
|
||||
msgstr "فشل معالجة الفيديو/الصوت."
|
||||
|
||||
msgid "Could not create thumbnail."
|
||||
msgstr "فشل تكوين الصورة."
|
||||
|
||||
msgid "upload a file or embed a URL"
|
||||
msgstr "حمِّل ملف أو ضمِّن عنوان URL"
|
||||
|
||||
msgid "upload a file"
|
||||
msgstr "تحميل ملف"
|
||||
|
||||
msgid "embed a URL"
|
||||
msgstr "تضمين عنوان URL"
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s to start a new thread."
|
||||
msgstr "الرجاء %s لتكوين منشورة جديدة."
|
||||
|
||||
#, php-format
|
||||
msgid "Please enter a message and/or %s."
|
||||
msgstr "الرجاء ادخال رسالة أو %s."
|
||||
|
||||
msgid "Please enter a message."
|
||||
msgstr "الرجاء ادخال رسالة."
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s."
|
||||
msgstr "الرجاء %s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your %s will be shown <b>once it has been approved</b>."
|
||||
msgstr "ال%s الخاص بك سوف يعرض </b> فور يتم الموافقة عليه </b>."
|
||||
|
||||
msgid "Updating thread..."
|
||||
msgstr "جاري الحديث..."
|
||||
|
||||
msgid "Updating index..."
|
||||
msgstr "جاري تحديث الفهرس..."
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr "تم نشر منشورة الموظفين"
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "تم حذف هذه المنشورة"
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr "يجب تعديل هذه المنشورة قبل اظهارها"
|
||||
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr "التحديث التلقائي مغلق."
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr "التقرير مغلق."
|
||||
|
||||
msgid ""
|
||||
"Sorry, an invalid post identifier was sent. Please go back, refresh the "
|
||||
"page, and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderators have determined that post does not break any rules."
|
||||
msgstr ""
|
||||
|
||||
msgid "You have already submitted a report for that post."
|
||||
msgstr ""
|
||||
|
||||
msgid "(enter the text below)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please complete a CAPTCHA to submit your report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post reported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Post deletion is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
msgid "Post deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid password."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuilt board."
|
||||
msgstr ""
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
msgid "Account not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr ""
|
||||
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr ""
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid role."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Added account"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Renamed account %1$s as %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed password of account %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Super-administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed role of account %s to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "until %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %d IP addresses"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Lifted ban on %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, that keyword has already been added."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Updated keyword %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword updated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword added."
|
||||
msgstr ""
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unstickied"
|
||||
msgstr ""
|
||||
|
||||
msgid "Form data was lost. Please go back and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Locked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the CAPTCHA text."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Incorrect CAPTCHA text entered. Please try again.<br>Click the image to "
|
||||
"retrieve a new CAPTCHA."
|
||||
msgstr ""
|
||||
|
||||
#, 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 ""
|
||||
|
||||
msgid "Invalid key."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid username or password."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive (%s) in php.ini."
|
||||
msgstr ""
|
||||
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
msgid "No file was uploaded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to write file to disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to save the uploaded file."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
|
||||
msgid "File transfer failure. Please retry the submission."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Failed to read the MIME type and size of the uploaded file. Please retry the "
|
||||
"submission."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not copy uploaded file."
|
||||
msgstr ""
|
||||
|
||||
msgid "File transfer failure. Please go back and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, your video appears to be corrupt."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file type is %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
"applied."
|
||||
msgstr ""
|
||||
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Maximum file size allowed is %s."
|
||||
msgstr ""
|
||||
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
|
||||
msgid "(paste a YouTube URL)"
|
||||
msgstr ""
|
||||
|
||||
msgid "All posts are moderated before being shown."
|
||||
msgstr ""
|
||||
|
||||
msgid "All posts with a file attached are moderated before being shown."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Images greater than %s will be thumbnailed."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Currently %s unique user posts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgid "E-mail"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "(for post and file deletion)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post truncated. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 post omitted. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d posts omitted. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return"
|
||||
msgstr ""
|
||||
|
||||
msgid "Posting mode: Reply"
|
||||
msgstr ""
|
||||
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bans"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr ""
|
||||
|
||||
msgid "Manage mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enter a username and password"
|
||||
msgstr ""
|
||||
|
||||
msgid "No logs."
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reported posts"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d report by %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d reports by %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d reports"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Reported by %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are currently no reported posts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leave blank to maintain current password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose a role"
|
||||
msgstr ""
|
||||
|
||||
msgid "Last active"
|
||||
msgstr ""
|
||||
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
msgid "update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add a ban"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Multiple IP addresses may be banned at once by separating each address with "
|
||||
"a comma."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 day"
|
||||
msgstr ""
|
||||
|
||||
msgid "2 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 week"
|
||||
msgstr ""
|
||||
|
||||
msgid "2 weeks"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
msgid "Does not expire"
|
||||
msgstr ""
|
||||
|
||||
msgid "lift"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate a post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
"logged in."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Tick the box next to a post and click \"Delete\" at the bottom of the page "
|
||||
"with a blank password."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderate %d posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban all"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 thread and 1 reply will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "1 thread and %d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d threads and 1 reply will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d threads and %2$d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 IP address will be banned."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d IP addresses will be banned."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid " A ban record already exists for %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Only an administrator may ban an IP address."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 reply will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sticky"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return this thread to a normal state."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keep this thread at the top of the board."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unlock"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lock"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow replying to this thread."
|
||||
msgstr ""
|
||||
|
||||
msgid "Disallow replying to this thread."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderating No.%d"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete reply"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban poster"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgid "report"
|
||||
msgstr ""
|
||||
|
||||
msgid "reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hide until approved"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 hour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 day"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 week"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 weeks"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban permanently"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
msgid "thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "threads"
|
||||
msgstr ""
|
||||
|
||||
msgid "ban"
|
||||
msgstr ""
|
||||
|
||||
msgid "bans"
|
||||
msgstr ""
|
||||
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pending posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Recent posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Info"
|
||||
msgstr ""
|
@ -1,892 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2022-05-11 11:15+0000\n"
|
||||
"Last-Translator: Charlie Towers <xtowersx@protonmail.com>\n"
|
||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/tinyib/tinyib/ca/"
|
||||
">\n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.12.1\n"
|
||||
"X-Poedit-Basepath: ../..\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/functions.php\n"
|
||||
"X-Poedit-SearchPath-2: inc/html.php\n"
|
||||
|
||||
msgid "Click here to go back"
|
||||
msgstr "Prem ací per tornar enrere"
|
||||
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET ha d'ésser configurat."
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET ha d'ésser configurat."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "TINYIB_TRIPSEED ha d'ésser configurat."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Mode de base de dades desconegut."
|
||||
|
||||
#, php-format
|
||||
msgid "Directory '%s' can not be written to. Please modify its permissions."
|
||||
msgstr ""
|
||||
"Al directori '%s' no s'hi pot escriure. Si us play modifica'n els permisos."
|
||||
|
||||
msgid "Posting is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
"La publicació actualment es troba desactivada.<br>Si us plau, torna a provar-"
|
||||
"ho d'aquí uns instants."
|
||||
|
||||
msgid "Invalid parent thread ID supplied, unable to create post."
|
||||
msgstr "L'ID del fil pare és invàlid i no es pot crear la publicació."
|
||||
|
||||
msgid "Replies are not allowed to locked threads."
|
||||
msgstr "Les respostes als fils blocats no són permeses."
|
||||
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "La teva publicació conté un mot blocat."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Mot"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "La teva adreça IP (%1$s) es troba blocada fins %2$s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "La teva adreça IP (%s) es troba permanentment blocada."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Raó"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr "Inserir una URL i, alhora, pujar un fitxer no és suportat."
|
||||
|
||||
#, php-format
|
||||
msgid "Invalid embed URL. Only %s URLs are supported."
|
||||
msgstr "URL invàlida per a inserir. Només es suporten %s URLs."
|
||||
|
||||
#, php-format
|
||||
msgid "That file is larger than %s."
|
||||
msgstr "Aquest fitxer és més gran de %s."
|
||||
|
||||
msgid "Failed to download file at specified URL."
|
||||
msgstr "La baixada del fitxer a l'URL especificat ha fallat."
|
||||
|
||||
msgid "Error while processing audio/video."
|
||||
msgstr "Error mentre es processava àudio/vídeo."
|
||||
|
||||
msgid "Could not create thumbnail."
|
||||
msgstr "No es pot crear la miniatura."
|
||||
|
||||
msgid "upload a file or embed a URL"
|
||||
msgstr "puja un fitxer o insereix una URL"
|
||||
|
||||
msgid "upload a file"
|
||||
msgstr "puja un fitxer"
|
||||
|
||||
msgid "embed a URL"
|
||||
msgstr "insereix un URL"
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s to start a new thread."
|
||||
msgstr "Si us plau %s per a començar un nou fil."
|
||||
|
||||
#, php-format
|
||||
msgid "Please enter a message and/or %s."
|
||||
msgstr "Si us plau, introdueix un missatge i/o %s."
|
||||
|
||||
msgid "Please enter a message."
|
||||
msgstr "Si us plau, introdueix un missatge."
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s."
|
||||
msgstr "Si us plau %s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your %s will be shown <b>once it has been approved</b>."
|
||||
msgstr "El teu %s serà mostrat <b>després d'ésser aprovat</b>."
|
||||
|
||||
msgid "Updating thread..."
|
||||
msgstr "Actualitzant el fil..."
|
||||
|
||||
msgid "Updating index..."
|
||||
msgstr "Actualitzant l'índex..."
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr "Publicació del personal creada"
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "Aquesta publicació ha estat eliminada"
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr "Aquesta publicació requereix moderació abans d'ésser mostrada"
|
||||
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr "El refresc automàtic és desactivat."
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr "El report és desactivat."
|
||||
|
||||
msgid ""
|
||||
"Sorry, an invalid post identifier was sent. Please go back, refresh the "
|
||||
"page, and try again."
|
||||
msgstr ""
|
||||
"Discupleu, s'ha enviat un identificador de publicació incorrecte. Si us "
|
||||
"plau, torneu enrere, recarregueu la plana i torneu a intentar-ho."
|
||||
|
||||
msgid "Moderators have determined that post does not break any rules."
|
||||
msgstr "Els moderadors han decidit que aquesta publicació no trenca cap regla."
|
||||
|
||||
msgid "You have already submitted a report for that post."
|
||||
msgstr "Ja has enviat un report per a aquesta publicació."
|
||||
|
||||
msgid "(enter the text below)"
|
||||
msgstr "(introdueix el text de sota)"
|
||||
|
||||
msgid "Please complete a CAPTCHA to submit your report"
|
||||
msgstr "Si us plau, completa el CAPTCHA per a poder enviar el teu report"
|
||||
|
||||
msgid "Submit"
|
||||
msgstr "Envia"
|
||||
|
||||
msgid "Post reported."
|
||||
msgstr "Publicació reportada."
|
||||
|
||||
msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
msgstr ""
|
||||
"Marca la caixeta del costat de la publicació i prem \"Esborrar\" per a "
|
||||
"eliminar-la."
|
||||
|
||||
msgid ""
|
||||
"Post deletion is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
"L'eliminació de publicacions és desactivada.<br>Si us plau, torna a intentar-"
|
||||
"ho d'aquí uns instants."
|
||||
|
||||
msgid "Post deleted."
|
||||
msgstr "Publicació eliminada."
|
||||
|
||||
msgid "Invalid password."
|
||||
msgstr "Contrasenya invàlida."
|
||||
|
||||
msgid "Rebuilt board."
|
||||
msgstr "Reconstruir l'imageboard."
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr "Accés denegat"
|
||||
|
||||
msgid "Account not found."
|
||||
msgstr "No s'ha trobat el compte."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr ""
|
||||
"Aquest compte no ha d'ésser modificat mentre la variable TINYIB_ADMINPASS es "
|
||||
"trobi definida."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr ""
|
||||
"Aquest compte no hauria d'ésser actualitzat mentre la variable "
|
||||
"TINYIB_MODPASS es trobi definida."
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr "Es requereix una contrasenya."
|
||||
|
||||
msgid "Invalid role."
|
||||
msgstr "Rol invàlid."
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
msgstr "El compte %s ha estat afegit"
|
||||
|
||||
msgid "Added account"
|
||||
msgstr "Compte afegit"
|
||||
|
||||
#, php-format
|
||||
msgid "Renamed account %1$s as %2$s"
|
||||
msgstr "El compte %1$s ha estat reanomenat a %2$s"
|
||||
|
||||
#, php-format
|
||||
msgid "Changed password of account %s"
|
||||
msgstr "La contrasenya per al compte %s ha estat canviada"
|
||||
|
||||
msgid "Super-administrator"
|
||||
msgstr "Súper-administrador"
|
||||
|
||||
msgid "Administrator"
|
||||
msgstr "Administrador"
|
||||
|
||||
msgid "Moderator"
|
||||
msgstr "Moderador"
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Desactivat"
|
||||
|
||||
#, php-format
|
||||
msgid "Changed role of account %s to %s"
|
||||
msgstr "El rol del compte %s ha estat canviat a %s"
|
||||
|
||||
msgid "Updated account"
|
||||
msgstr "Compte actualitzat"
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "permanentment"
|
||||
|
||||
#, php-format
|
||||
msgid "until %s"
|
||||
msgstr "fins %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s"
|
||||
msgstr "Blocat %s %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr "Blocat %s %s: %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "Missatge per blocatge afegit a %s"
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr "1 adreça IP blocada"
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %d IP addresses"
|
||||
msgstr "%d adreces IP blocades"
|
||||
|
||||
#, php-format
|
||||
msgid "Lifted ban on %s"
|
||||
msgstr "S'ha llevat el blocatge a %s"
|
||||
|
||||
msgid "Sorry, that keyword has already been added."
|
||||
msgstr "Disculpeu, aquest mot ja havia estat afegit."
|
||||
|
||||
#, php-format
|
||||
msgid "Updated keyword %s"
|
||||
msgstr "Mot %s actualitzat"
|
||||
|
||||
msgid "Keyword updated."
|
||||
msgstr "Mot actualitzat."
|
||||
|
||||
msgid "Keyword added."
|
||||
msgstr "Mot afegit."
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr "Aquest mot no existeix."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
msgstr "Mot eliminat %s"
|
||||
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Mot eliminat."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr "%s eliminat"
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr "1 publicació eliminada"
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr "%d publicacions eliminades"
|
||||
|
||||
msgid "Approved"
|
||||
msgstr "Aprovat"
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "La publicació número %d ha estat aprovada."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Disculpeu, no sembla que hi hagi cap publicació amb aquest ID."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "Fixat"
|
||||
|
||||
msgid "Unstickied"
|
||||
msgstr "Alliberat"
|
||||
|
||||
msgid "Form data was lost. Please go back and try again."
|
||||
msgstr ""
|
||||
"La informació del formulari s'ha perdut. Si us plau, torna enrere i prova-ho "
|
||||
"una altra vegada."
|
||||
|
||||
msgid "Locked"
|
||||
msgstr "Blocat"
|
||||
|
||||
msgid "Unlocked"
|
||||
msgstr "Desblocat"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Les contrasenyes no coincideixen."
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "La contrasenya ha estat actualitzada"
|
||||
|
||||
msgid "Please enter the CAPTCHA text."
|
||||
msgstr "Si us plau, introdueix el text del CAPTCHA."
|
||||
|
||||
msgid ""
|
||||
"Incorrect CAPTCHA text entered. Please try again.<br>Click the image to "
|
||||
"retrieve a new CAPTCHA."
|
||||
msgstr ""
|
||||
"El text del CAPTCHA introduït és incorrecte. Si us plau, torna a intentar-"
|
||||
"ho.<br>Prem sobre la imatge per a obtenir un nou CAPTCHA."
|
||||
|
||||
#, 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 ""
|
||||
"Si us plau, escurça el teu missatge o bé publica'l en múltiples parts. El "
|
||||
"teu missatge conté %1$d caràcters i el màxim permès és %2$d."
|
||||
|
||||
msgid "Invalid key."
|
||||
msgstr "Clau invàlida."
|
||||
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Usuari o contrasenya invàlids."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive (%s) in php.ini."
|
||||
msgstr ""
|
||||
"El fitxer pujat excedeix la directiva upload_max_filesize (%s) de php.ini."
|
||||
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "El fitxer ha estat parcialment pujat."
|
||||
|
||||
msgid "No file was uploaded."
|
||||
msgstr "No s'ha pujat cap fitxer."
|
||||
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Hi manca una carpeta temporal."
|
||||
|
||||
msgid "Failed to write file to disk"
|
||||
msgstr "Ha fallat l'escriptura del fitxer al disc"
|
||||
|
||||
msgid "Unable to save the uploaded file."
|
||||
msgstr "No s'ha pogut desar el fitxer pujat."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
msgstr ""
|
||||
"S'ha pujat un fitxer duplicat. Aquest fitxer ja havia estat publicat <a "
|
||||
"href=\"%s\">ací</a>."
|
||||
|
||||
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 ""
|
||||
"Ha estat impossible llegir el fitxer pujat mentre es creava la seva "
|
||||
"miniatura. Una causa habitual sol ser que contingui una extensió incorrecta "
|
||||
"per al tipus de fitxer."
|
||||
|
||||
msgid "File transfer failure. Please retry the submission."
|
||||
msgstr ""
|
||||
"Ha fallat la transferència del fitxer. Si us plau, reintenta l'enviament."
|
||||
|
||||
msgid ""
|
||||
"Failed to read the MIME type and size of the uploaded file. Please retry the "
|
||||
"submission."
|
||||
msgstr ""
|
||||
"Ha fallat la lectura del tipus MIME i de la mida del fitxer pujat. Si us "
|
||||
"plau, reintenta l'enviament."
|
||||
|
||||
msgid "Could not copy uploaded file."
|
||||
msgstr "No s'ha pogut copiar el fitxer pujat."
|
||||
|
||||
msgid "File transfer failure. Please go back and try again."
|
||||
msgstr ""
|
||||
"Ha fallat la transferència del fitxer. Si us plau, torna enrere i intenta-ho "
|
||||
"novament."
|
||||
|
||||
msgid "Sorry, your video appears to be corrupt."
|
||||
msgstr "Disculpa, el teu vídeo sembla corromput."
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file type is %s"
|
||||
msgstr "El tipus de fitxer suportat és %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "Els tipus de fitxers suportats són %1$s i %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr "HTML cru"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "Activa"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
"applied."
|
||||
msgstr ""
|
||||
"El text introduït en el camp Missatge serà publicat tal comés i sense cap "
|
||||
"formatació aplicada."
|
||||
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Els salts de línia s'han d'especificar amb \"<br>\"."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Respon a"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 per a començar un nou fil"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
#, php-format
|
||||
msgid "Maximum file size allowed is %s."
|
||||
msgstr "La mida màxima de fitxer autoritzada és %s."
|
||||
|
||||
msgid "File"
|
||||
msgstr "Fitxer"
|
||||
|
||||
msgid "Embed"
|
||||
msgstr "Insereix"
|
||||
|
||||
msgid "(paste a YouTube URL)"
|
||||
msgstr "(enganxa un URL de YouTube)"
|
||||
|
||||
msgid "All posts are moderated before being shown."
|
||||
msgstr "Totes les publicacions són moderades abans d'ésser mostrades."
|
||||
|
||||
msgid "All posts with a file attached are moderated before being shown."
|
||||
msgstr ""
|
||||
"Totes les publicacions amb fitxer adjunt són moderades abans d'ésser "
|
||||
"mostrades."
|
||||
|
||||
#, php-format
|
||||
msgid "Images greater than %s will be thumbnailed."
|
||||
msgstr "Les imatges més grans de %s seran miniaturitzades."
|
||||
|
||||
#, php-format
|
||||
msgid "Currently %s unique user posts."
|
||||
msgstr "Actualment %s publicacions úniques."
|
||||
|
||||
msgid "Name"
|
||||
msgstr "Nom"
|
||||
|
||||
msgid "E-mail"
|
||||
msgstr "E-mail"
|
||||
|
||||
msgid "Subject"
|
||||
msgstr "Assumpte"
|
||||
|
||||
msgid "Message"
|
||||
msgstr "Missatge"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
msgid "(for post and file deletion)"
|
||||
msgstr "(per a l'eliminació de publicació i fitxer)"
|
||||
|
||||
msgid "Report"
|
||||
msgstr "Reporta"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Respon"
|
||||
|
||||
msgid "Post truncated. Click Reply to view."
|
||||
msgstr "La publicació ha estat truncada. Prem Respon per a veure-la."
|
||||
|
||||
msgid "1 post omitted. Click Reply to view."
|
||||
msgstr "S'ha omès 1 publicació. Prem Respon per a veure-ho."
|
||||
|
||||
#, php-format
|
||||
msgid "%d posts omitted. Click Reply to view."
|
||||
msgstr "%d publicacions omeses. Prem Respon per a veure-ho."
|
||||
|
||||
msgid "Catalog"
|
||||
msgstr "Catàleg"
|
||||
|
||||
msgid "Manage"
|
||||
msgstr "Administra"
|
||||
|
||||
msgid "Previous"
|
||||
msgstr "Previ"
|
||||
|
||||
msgid "Next"
|
||||
msgstr "Següent"
|
||||
|
||||
msgid "Return"
|
||||
msgstr "Recula"
|
||||
|
||||
msgid "Posting mode: Reply"
|
||||
msgstr "Mode de publicació: Resposta"
|
||||
|
||||
msgid "Style"
|
||||
msgstr "Estil"
|
||||
|
||||
msgid "Delete"
|
||||
msgstr "Esborra"
|
||||
|
||||
msgid "Delete Post"
|
||||
msgstr "Esborra la publicació"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Comptes"
|
||||
|
||||
msgid "Bans"
|
||||
msgstr "Bloquejos"
|
||||
|
||||
msgid "Keywords"
|
||||
msgstr "Mots"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migrar Base de Dades"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Moderar Publicació"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr "Històric de Moderació"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "Reconstrueix-ho tot"
|
||||
|
||||
msgid "Reports"
|
||||
msgstr "Reports"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr "Publicació del Personal"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Estat"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Actualitza"
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr "Canvia la Contrasenya"
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr "Ix"
|
||||
|
||||
msgid "Manage mode"
|
||||
msgstr "Mode d'Administració"
|
||||
|
||||
msgid "Log In"
|
||||
msgstr "Identifica't"
|
||||
|
||||
msgid "Enter a username and password"
|
||||
msgstr "Introdueix un nom d'usuari i una contrasenya"
|
||||
|
||||
msgid "No logs."
|
||||
msgstr "Sense històrics."
|
||||
|
||||
msgid "Moderation log"
|
||||
msgstr "Històric de moderació"
|
||||
|
||||
msgid "Reported posts"
|
||||
msgstr "Publicacions reportades"
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d report by %2$s"
|
||||
msgstr "%1$d report per %2$s"
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d reports by %2$s"
|
||||
msgstr "%1$d reports per %2$s"
|
||||
|
||||
#, php-format
|
||||
msgid "%d reports"
|
||||
msgstr "%d reports"
|
||||
|
||||
#, php-format
|
||||
msgid "Reported by %s"
|
||||
msgstr "Reportat per %s"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr "Modera"
|
||||
|
||||
msgid "There are currently no reported posts."
|
||||
msgstr "Actualment no hi ha cap publicació reportada."
|
||||
|
||||
msgid "Add an account"
|
||||
msgstr "Afegeix un compte"
|
||||
|
||||
msgid "Update an account"
|
||||
msgstr "Actualitza un compte"
|
||||
|
||||
msgid "Leave blank to maintain current password"
|
||||
msgstr "Deixa-ho en blanc per a conservar la contrasenya actual"
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nom d'usuari"
|
||||
|
||||
msgid "Role"
|
||||
msgstr "Rol"
|
||||
|
||||
msgid "Choose a role"
|
||||
msgstr "Tria un rol"
|
||||
|
||||
msgid "Last active"
|
||||
msgstr "Darrer actiu"
|
||||
|
||||
msgid "Never"
|
||||
msgstr "Mai"
|
||||
|
||||
msgid "update"
|
||||
msgstr "actualitza"
|
||||
|
||||
msgid "Add a ban"
|
||||
msgstr "Afegeix un blocatge"
|
||||
|
||||
msgid ""
|
||||
"Multiple IP addresses may be banned at once by separating each address with "
|
||||
"a comma."
|
||||
msgstr "Per a blocar múltiples adreces IP cal separar-les amb una coma."
|
||||
|
||||
msgid "IP Address"
|
||||
msgstr "Adreça IP"
|
||||
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Expira(seg)"
|
||||
|
||||
msgid "never"
|
||||
msgstr "mai"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr "Opcional."
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 hora"
|
||||
|
||||
msgid "1 day"
|
||||
msgstr "1 dia"
|
||||
|
||||
msgid "2 days"
|
||||
msgstr "2 dies"
|
||||
|
||||
msgid "1 week"
|
||||
msgstr "1 setmana"
|
||||
|
||||
msgid "2 weeks"
|
||||
msgstr "2 setmanes"
|
||||
|
||||
msgid "1 month"
|
||||
msgstr "1 mes"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr "Afegeix un missatge a la publicació. Opcional."
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "Estableix A"
|
||||
|
||||
msgid "Expires"
|
||||
msgstr "Expira"
|
||||
|
||||
msgid "Does not expire"
|
||||
msgstr "No expira"
|
||||
|
||||
msgid "lift"
|
||||
msgstr "lleva"
|
||||
|
||||
msgid "Moderate a post"
|
||||
msgstr "Modera una publicació"
|
||||
|
||||
msgid "Post ID"
|
||||
msgstr "ID de publicació"
|
||||
|
||||
msgid "Tip"
|
||||
msgstr "Consell"
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
"logged in."
|
||||
msgstr ""
|
||||
"Mentre consultes l'imageboard, pots moderar fàcilment les publicacions si et "
|
||||
"trobes identificat."
|
||||
|
||||
msgid ""
|
||||
"Tick the box next to a post and click \"Delete\" at the bottom of the page "
|
||||
"with a blank password."
|
||||
msgstr ""
|
||||
"Marca la caixeta al costat d'una publicació i prem \"Esborra\" al peu de la "
|
||||
"plana amb la contrasenya en blanc."
|
||||
|
||||
#, php-format
|
||||
msgid "Moderate %d posts"
|
||||
msgstr "Modera %d publicacions"
|
||||
|
||||
msgid "Delete all"
|
||||
msgstr "Esborra-ho tot"
|
||||
|
||||
msgid "Ban all"
|
||||
msgstr "Bloca a tothom"
|
||||
|
||||
msgid "1 thread and 1 reply will be deleted."
|
||||
msgstr "1 fil i 1 resposta seran esborrades."
|
||||
|
||||
#, php-format
|
||||
msgid "1 thread and %d replies will be deleted."
|
||||
msgstr "1 fil i %d respostes seran esborrades."
|
||||
|
||||
#, php-format
|
||||
msgid "%d threads and 1 reply will be deleted."
|
||||
msgstr "%d fils i 1 resposta seran esborrats."
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d threads and %2$d replies will be deleted."
|
||||
msgstr "%1$d fils i %2$d respostes seran esborrats."
|
||||
|
||||
msgid "1 IP address will be banned."
|
||||
msgstr "1 adreça IP serà blocada."
|
||||
|
||||
#, php-format
|
||||
msgid "%d IP addresses will be banned."
|
||||
msgstr "%d adreces IP seran blocades."
|
||||
|
||||
#, php-format
|
||||
msgid " A ban record already exists for %s"
|
||||
msgstr " %s ja es troba blocat"
|
||||
|
||||
msgid "Only an administrator may ban an IP address."
|
||||
msgstr "Només els administradors poden blocar una adreça IP."
|
||||
|
||||
#, php-format
|
||||
msgid "IP address: %s"
|
||||
msgstr "Adreça IP: %s"
|
||||
|
||||
msgid "Thread"
|
||||
msgstr "Fil"
|
||||
|
||||
msgid "1 reply will be deleted."
|
||||
msgstr "1 reposta serà esborrada."
|
||||
|
||||
#, php-format
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr "%d respostes seran esborrades."
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr "Allibera"
|
||||
|
||||
msgid "Sticky"
|
||||
msgstr "Fixa"
|
||||
|
||||
msgid "Return this thread to a normal state."
|
||||
msgstr "Retorna aquest fil a un estat normal."
|
||||
|
||||
msgid "Keep this thread at the top of the board."
|
||||
msgstr "Mantingues aquest fil al principi de l'imageboard."
|
||||
|
||||
msgid "Unlock"
|
||||
msgstr "Desprotegeix"
|
||||
|
||||
msgid "Lock"
|
||||
msgstr "Protegeix"
|
||||
|
||||
msgid "Allow replying to this thread."
|
||||
msgstr "Permet les respostes en aquest fil."
|
||||
|
||||
msgid "Disallow replying to this thread."
|
||||
msgstr "Prohibeix les respostes en aquest fil."
|
||||
|
||||
#, php-format
|
||||
msgid "Moderating No.%d"
|
||||
msgstr "Moderació No.%d"
|
||||
|
||||
msgid "Action"
|
||||
msgstr "Acció"
|
||||
|
||||
msgid "Delete thread"
|
||||
msgstr "Esborra fil"
|
||||
|
||||
msgid "Delete reply"
|
||||
msgstr "Esborra resposta"
|
||||
|
||||
msgid "Ban poster"
|
||||
msgstr "Bloca publicador"
|
||||
|
||||
msgid "Approve"
|
||||
msgstr "Aprova"
|
||||
|
||||
msgid "report"
|
||||
msgstr "reporta"
|
||||
|
||||
msgid "reports"
|
||||
msgstr "reports"
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Disculpa, sembla que no hi ha cap mot amb aquest ID."
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Afegeix"
|
||||
|
||||
msgid "Hide until approved"
|
||||
msgstr "Amaga fins que sigui aprovat"
|
||||
|
||||
msgid "Delete and ban for 1 hour"
|
||||
msgstr "Esborra i bloca per 1 hora"
|
||||
|
||||
msgid "Delete and ban for 1 day"
|
||||
msgstr "Esborra i bloca per 1 dia"
|
||||
|
||||
msgid "Delete and ban for 2 days"
|
||||
msgstr "Esborra i bloca per 2 dies"
|
||||
|
||||
msgid "Delete and ban for 1 week"
|
||||
msgstr "Esborra i bloca per 1 setmana"
|
||||
|
||||
msgid "Delete and ban for 2 weeks"
|
||||
msgstr "Esborra i bloca per 2 setmanes"
|
||||
|
||||
msgid "Delete and ban for 1 month"
|
||||
msgstr "Esborra i bloca per 1 mes"
|
||||
|
||||
msgid "Delete and ban permanently"
|
||||
msgstr "Esborra i bloca permanentment"
|
||||
|
||||
msgid "Edit"
|
||||
msgstr "Edita"
|
||||
|
||||
msgid "thread"
|
||||
msgstr "fil"
|
||||
|
||||
msgid "threads"
|
||||
msgstr "fils"
|
||||
|
||||
msgid "ban"
|
||||
msgstr "bloca"
|
||||
|
||||
msgid "bans"
|
||||
msgstr "bloquejos"
|
||||
|
||||
msgid "More Info"
|
||||
msgstr "Més Info"
|
||||
|
||||
msgid "Pending posts"
|
||||
msgstr "Publicacions pendents"
|
||||
|
||||
msgid "Recent posts"
|
||||
msgstr "Publicacions recents"
|
||||
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#~ msgid "Belongs to "
|
||||
#~ msgstr "Pertany a "
|
@ -2,9 +2,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2023-05-04 14:25+0000\n"
|
||||
"Last-Translator: Christian Wissel <christian.wissel@gfk.com>\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2021-01-29 23:32+0000\n"
|
||||
"Last-Translator: Trevor Slocum <trevor@rocketnine.space>\n"
|
||||
"Language-Team: German <https://hosted.weblate.org/projects/tinyib/tinyib/de/"
|
||||
">\n"
|
||||
"Language: de\n"
|
||||
@ -12,29 +12,30 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.18-dev\n"
|
||||
"X-Generator: Weblate 4.5-dev\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/html.php\n"
|
||||
"X-Poedit-SearchPath-2: inc/functions.php\n"
|
||||
|
||||
msgid "Click here to go back"
|
||||
msgstr "Zurück"
|
||||
msgstr "Klicke hier, um zurückzugehen"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"TINYIB_HCAPTCHA_SITE und TINYIB_HCAPTCHA_SECRET müssen konfiguriert werden."
|
||||
"TINYIB_RECAPTCHA_SITE und TINYIB_RECAPTCHA_SECRET müssen konfiguriert "
|
||||
"werden."
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"TINYIB_RECAPTCHA_SITE und TINYIB_RECAPTCHA_SECRET müssen konfiguriert "
|
||||
"werden."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "TINYIB_TRIPSEED muss konfiguriert werden."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Unbekannter Datenbankmodus spezifiziert."
|
||||
msgstr "Unbekannten Datenbankmodus spezifiziert."
|
||||
|
||||
#, php-format
|
||||
msgid "Directory '%s' can not be written to. Please modify its permissions."
|
||||
@ -44,31 +45,19 @@ msgstr ""
|
||||
|
||||
msgid "Posting is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
"Neue Beiträge sind derzeit nicht möglich.<br>Bitte versuche es in ein paar "
|
||||
"Momenten erneut."
|
||||
"Das Veröffentlichen ist derzeit nicht möglich.<br>Bitte versuche es in ein "
|
||||
"paar Momenten erneut."
|
||||
|
||||
msgid "Invalid parent thread ID supplied, unable to create post."
|
||||
msgstr "Ungültige Beitrags-ID; der Beitrag konnte nicht erstellt werden."
|
||||
msgstr ""
|
||||
"Ungültige Ursprungsbeitragsstrang-ID; der Beitrag konnte nicht erstellt "
|
||||
"werden."
|
||||
|
||||
msgid "Replies are not allowed to locked threads."
|
||||
msgstr "Antworten sind bei geschlossenen Beiträgen nicht erlaubt."
|
||||
msgstr "Antworten sind bei geschlossenen Beitragssträngen nicht erlaubt."
|
||||
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Dein Beitrag enthält ein gesperrtes Schlagwort."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Schlagwort"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "Deine IP-Adresse (%1$s) ist gesperrt bis %2$s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "Deine IP-Adresse (%s) ist permanent gesperrt."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Grund"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
@ -103,7 +92,7 @@ msgstr "eine URL einbetten"
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s to start a new thread."
|
||||
msgstr "Bitte %s um einen neuen Beitrag zu starten."
|
||||
msgstr "Bitte %s um einen neuen Diskussionsfaden zu starten."
|
||||
|
||||
#, php-format
|
||||
msgid "Please enter a message and/or %s."
|
||||
@ -118,57 +107,55 @@ msgstr "Bitte %s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your %s will be shown <b>once it has been approved</b>."
|
||||
msgstr "Dein %s wir angezeigt <b>sobald die Freigabe erfolgt ist</b>."
|
||||
msgstr "Dein %s wir angezeigt <b>sobald die Genehmingung erteilt wurde</b>."
|
||||
|
||||
msgid "Updating thread..."
|
||||
msgstr "Aktualisiere den Beitrag …"
|
||||
msgstr "Aktualisierung des Beitragsstrang …"
|
||||
|
||||
msgid "Updating index..."
|
||||
msgstr "Aktualisiere den Index …"
|
||||
msgstr "Aktualisierung des Index …"
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr "Team-Beitrag erzeugt"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "Dieser Beitrag wurde gelöscht"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr ""
|
||||
"Dieser Beitrag erfordert eine Freigabe durch einen Moderator, bevor er "
|
||||
"angezeigt werden kann"
|
||||
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr "Automatische Aktualisierung ist deaktiviert."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr "Meldungen sind deaktiviert."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sorry, an invalid post identifier was sent. Please go back, refresh the "
|
||||
"page, and try again."
|
||||
msgstr ""
|
||||
"Entschuldigung, eine ungültige Beitragsnummer wurde gesendet. Bitte gehe "
|
||||
"zurück, aktualisiere die Seite und versuche es erneut."
|
||||
"Entschuldigung, eine ungültige Beitragidentifizierung wurde gesendet. Bitte "
|
||||
"gehe zurück, aktualisiere die Seite und versuche es erneut."
|
||||
|
||||
msgid "Moderators have determined that post does not break any rules."
|
||||
msgstr ""
|
||||
"Moderatoren haben festgestellt, dass dieser Beitrag nicht gegen die Regeln "
|
||||
"verstößt."
|
||||
|
||||
msgid "You have already submitted a report for that post."
|
||||
msgstr "Du hast diesen Beitrag bereits gemeldet."
|
||||
msgstr ""
|
||||
|
||||
msgid "(enter the text below)"
|
||||
msgstr "(Gib den Text unten ein)"
|
||||
|
||||
msgid "Please complete a CAPTCHA to submit your report"
|
||||
msgstr "Bitte löse das CAPTCHA um deine Meldung abzuschicken"
|
||||
msgstr ""
|
||||
|
||||
msgid "Submit"
|
||||
msgstr "Absenden"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Post deleted."
|
||||
msgid "Post reported."
|
||||
msgstr "Beitrag gemeldet."
|
||||
msgstr "Beitrag gelöscht."
|
||||
|
||||
msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
msgstr ""
|
||||
@ -188,160 +175,153 @@ msgid "Invalid password."
|
||||
msgstr "Ungültiges Passwort."
|
||||
|
||||
msgid "Rebuilt board."
|
||||
msgstr "Board neu erzeugt."
|
||||
msgstr "Board umstrukturiert."
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr "Zugriff verweigert"
|
||||
msgstr ""
|
||||
|
||||
msgid "Account not found."
|
||||
msgstr "Account nicht gefunden."
|
||||
msgstr ""
|
||||
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr ""
|
||||
"Dieser Account kann nicht aktualisiert werden, so lange TINYIB_ADMINPASS "
|
||||
"gesetzt ist."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr ""
|
||||
"Dieser Account kann nicht aktualisiert werden, so lange TINYIB_MODPASS "
|
||||
"gesetzt ist."
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr "Ein Passwort ist erforderlich."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid role."
|
||||
msgstr "Ungültige Rolle."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
msgstr "Account %s hinzugefügt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Added account"
|
||||
msgstr "Account hinzugefügt"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Renamed account %1$s as %2$s"
|
||||
msgstr "Account %1$s in %2$s umbenannt"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed password of account %s"
|
||||
msgstr "Passwort von Account %s geändert"
|
||||
msgstr ""
|
||||
|
||||
msgid "Super-administrator"
|
||||
msgstr "Super-Administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderator"
|
||||
msgstr "Moderator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Deaktiviert"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed role of account %s to %s"
|
||||
msgstr "Rolle von Account %s auf %s geändert"
|
||||
msgstr ""
|
||||
|
||||
msgid "Updated account"
|
||||
msgstr "Account aktualisiert"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr "Entschuldigung, auf dieser IP-Adresse existiert schon ein Ban vermerk."
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "permanent"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "until %s"
|
||||
msgstr "bis %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s"
|
||||
msgstr "%s %s gesperrt"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr "%s %s gesperrt: %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "Sperrnachricht zu %s hinzugefügt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr "1 IP-Adresse gesperrt"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %d IP addresses"
|
||||
msgstr "%d IP-Adressen gesperrt"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Lifted ban on %s"
|
||||
msgstr "Sperre für %s aufgehoben"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, that keyword has already been added."
|
||||
msgstr "Entschuldigung, dieses Schlagwort wurde bereits hinzugefügt."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Updated keyword %s"
|
||||
msgstr "Schlagwort %s aktualisiert"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword updated."
|
||||
msgstr "Schlagwort aktualisiert."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword added."
|
||||
msgstr "Schlagwort hinzugefügt."
|
||||
msgstr ""
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr "Dieses Schlagwort existiert nicht."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
msgstr "Schlagwort %s gelöscht"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Post deleted."
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Schlagwort gelöscht."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr "%s gelöscht"
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr "1 Beitrag gelöscht"
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr "%d Beiträge gelöscht"
|
||||
|
||||
msgid "Approved"
|
||||
msgstr "Freigegeben"
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "Beitrag Nr. %d freigegeben."
|
||||
msgstr "Beitrag gelöscht."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Entschuldigung, es scheint kein Beitrag mit dieser ID zu existieren."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "Beitrag Nr. %d genehmigt."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "Angepinnt"
|
||||
msgstr "Aufgeklebt"
|
||||
|
||||
msgid "Unstickied"
|
||||
msgstr "Abgepinnt"
|
||||
msgstr ""
|
||||
|
||||
msgid "Form data was lost. Please go back and try again."
|
||||
msgstr ""
|
||||
"Formulardaten sind verloren gegangen. Bitte gehe zurück und versuch es "
|
||||
"erneut."
|
||||
"Formulardaten gingen verloren. Bitte gehe zurück und versuch es erneut."
|
||||
|
||||
msgid "Locked"
|
||||
msgstr "Gesperrt"
|
||||
|
||||
msgid "Unlocked"
|
||||
msgstr "Entsperrt"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Passwörter stimmen nicht überein."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "Passwort aktualisiert"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the CAPTCHA text."
|
||||
msgstr "Bitte den CAPTCHA Text eingeben."
|
||||
@ -359,13 +339,15 @@ msgid ""
|
||||
"%1$d characters long, and the maximum allowed is %2$d."
|
||||
msgstr ""
|
||||
"Bitte kürze deine Nachricht, oder veröffentliche sie in mehreren Teilen. "
|
||||
"Deine Nachricht ist %1$d Zeichen lang, maximal zulässig sind %2$d."
|
||||
"Deine Nachricht ist %1$d Zeichen lang, die Maximal zulässig sind %2$d."
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Invalid password."
|
||||
msgid "Invalid key."
|
||||
msgstr "Ungültiger Schlüssel."
|
||||
msgstr "Ungültiges Passwort."
|
||||
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Ungültiger Benutzername oder Passwort."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
@ -391,8 +373,8 @@ msgstr "Die hochgeladene Datei konnte nicht gespeichert werden."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
"Duplikatdatei hochgeladen. Diese Datei wurde bereits <a href=\"%s\">hier</a> "
|
||||
"veröffentlicht."
|
||||
@ -413,7 +395,7 @@ msgid ""
|
||||
"Failed to read the MIME type and size of the uploaded file. Please retry the "
|
||||
"submission."
|
||||
msgstr ""
|
||||
"Fehler beim Auslesen des MIME-Typs und Größe der hochgeladenen Datei. Bitte "
|
||||
"Fehler beim auslesen des MIME-typs und größe der hochgeladenen Datei. Bitte "
|
||||
"versuche es erneut."
|
||||
|
||||
msgid "Could not copy uploaded file."
|
||||
@ -434,28 +416,22 @@ msgstr "Unterstützter Dateityp ist %s"
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "Unterstützte Dateitypen sind %1$s und %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr "HTML"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "Aktivieren"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
"applied."
|
||||
msgstr ""
|
||||
"In das Nachrichtenfeld eingegebener Text wird unverändert und ohne "
|
||||
"Formatierung veröffentlicht."
|
||||
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Zeilen-umbrüche müssen mit \"<br>\" spezifiziert werden."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Antwort an"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 um ein neues Thema zu beginnen"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
"applied."
|
||||
msgstr ""
|
||||
"Text, der in das Nachrichtenfeld eingegeben wird, wird unverändert und ohne "
|
||||
"Formatierung veröffentlicht."
|
||||
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Zeilen-umbrüche müssen mit \"<br>\" spezifiziert werden."
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
@ -507,20 +483,26 @@ msgid "(for post and file deletion)"
|
||||
msgstr "(für Beitrag- und Dateilöschung)"
|
||||
|
||||
msgid "Report"
|
||||
msgstr "Melden"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr "Einbetten:"
|
||||
|
||||
msgid "File:"
|
||||
msgstr "Datei:"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Antworten"
|
||||
|
||||
msgid "Post truncated. Click Reply to view."
|
||||
msgstr "Beitrag gekürzt. Klicke „Antworten“ um ihn Anzuzeigen."
|
||||
msgstr "Beitrag gekürzt. Klicke Antworten um ihn Anzuzeigen."
|
||||
|
||||
msgid "1 post omitted. Click Reply to view."
|
||||
msgstr "1 Beitrag ausgeblendet. Klicke „Antworten“ um ihn Anzuzeigen."
|
||||
msgstr "1 Beitrag weggelassen. Klicke Antworten um ihn Anzuzeigen."
|
||||
|
||||
#, php-format
|
||||
msgid "%d posts omitted. Click Reply to view."
|
||||
msgstr "%d Beiträge ausgeblendet. Klicke „Antworten“ um sie anzuzeigen."
|
||||
msgstr "%d Beiträge weggelassen. Klicke Antworten um sie Anzuzeigen."
|
||||
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
@ -549,41 +531,43 @@ msgstr "Löschen"
|
||||
msgid "Delete Post"
|
||||
msgstr "Beitrag löschen"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Benutzer"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bans"
|
||||
msgstr "Sperren"
|
||||
msgstr "Verbannungen"
|
||||
|
||||
msgid "Keywords"
|
||||
msgstr "Schlagwörter"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Datenbank migrieren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Beitrag moderieren"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr "Moderationsprotokoll"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "Unbearbeiteter Beitrag"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "Alles neu erzeugen"
|
||||
msgstr "Alles neu Strukturieren"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Recent posts"
|
||||
msgid "Reports"
|
||||
msgstr "Meldungen"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr "Team-Beitrag"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
msgstr "Neue Beiträge"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Aktualisieren"
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr "Passwort ändern"
|
||||
msgid "Migrate Database"
|
||||
msgstr "Datenbank migrieren"
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr "Abmelden"
|
||||
@ -595,87 +579,91 @@ msgid "Log In"
|
||||
msgstr "Anmelden"
|
||||
|
||||
msgid "Enter a username and password"
|
||||
msgstr "Gib einen Benutzernamen und ein Passwort ein"
|
||||
msgstr ""
|
||||
|
||||
msgid "No logs."
|
||||
msgstr "Keine Protokolle."
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation log"
|
||||
msgstr "Moderationsprotokoll"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Recent posts"
|
||||
msgid "Reported posts"
|
||||
msgstr "Gemeldete Beiträge"
|
||||
msgstr "Neue Beiträge"
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d report by %2$s"
|
||||
msgstr "%1$d Meldung von %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d reports by %2$s"
|
||||
msgstr "%1$d Meldungen von %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d reports"
|
||||
msgstr "%d Meldungen"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Recent posts"
|
||||
msgid "Reported by %s"
|
||||
msgstr "Gemeldet von %s"
|
||||
msgstr "Neue Beiträge"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr "Moderieren"
|
||||
|
||||
msgid "There are currently no reported posts."
|
||||
msgstr "Es gibt derzeit keine gemeldeten Beiträge."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add an account"
|
||||
msgstr "Einen Benutzer hinzufügen"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update an account"
|
||||
msgstr "Einen Benutzer aktualisieren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leave blank to maintain current password"
|
||||
msgstr "Leer lassen um das aktuelle Passwort beizubehalten"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Benutzername"
|
||||
msgstr ""
|
||||
|
||||
msgid "Role"
|
||||
msgstr "Rolle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose a role"
|
||||
msgstr "Wähle eine Rolle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Last active"
|
||||
msgstr "Zuletzt aktiv"
|
||||
msgstr ""
|
||||
|
||||
msgid "Never"
|
||||
msgstr "Nie"
|
||||
msgstr ""
|
||||
|
||||
msgid "update"
|
||||
msgstr "aktualisieren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add a ban"
|
||||
msgstr "Sperre hinzufügen"
|
||||
msgstr "Verbannen"
|
||||
|
||||
msgid ""
|
||||
"Multiple IP addresses may be banned at once by separating each address with "
|
||||
"a comma."
|
||||
msgstr ""
|
||||
"Mehrere IP-Adressen mit Komma getrennt angeben um sie gleichzeitig zu "
|
||||
"sperren."
|
||||
|
||||
msgid "IP Address"
|
||||
msgstr "IP-Adresse"
|
||||
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Ablaufen (Sekunden)"
|
||||
msgstr "Ablaufen(Sek)"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Grund"
|
||||
|
||||
msgid "never"
|
||||
msgstr "nie"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr "Optional."
|
||||
msgid "optional"
|
||||
msgstr "optional"
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 Stunde"
|
||||
@ -695,11 +683,8 @@ msgstr "2 Wochen"
|
||||
msgid "1 month"
|
||||
msgstr "1 Monat"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr "Dem Beitrag eine Nachricht anfügen. Optional."
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "Gesetzt am"
|
||||
msgstr "Setzen bei"
|
||||
|
||||
msgid "Expires"
|
||||
msgstr "Läuft ab"
|
||||
@ -716,15 +701,15 @@ msgstr "Beitrag moderieren"
|
||||
msgid "Post ID"
|
||||
msgstr "Beitrags-ID"
|
||||
|
||||
msgid "Tip"
|
||||
msgstr "Tipp"
|
||||
msgid "Tip:"
|
||||
msgstr "Tipp:"
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
"logged in."
|
||||
msgstr ""
|
||||
"Beim Besuchen des Boards kannst du einen Beitrag leicht moderieren, wenn du "
|
||||
"angemeldet bist."
|
||||
"Beim Durchsuchen der Bildplatine kannst du einen Beitrag leicht moderieren, "
|
||||
"wenn du angemeldet bist."
|
||||
|
||||
msgid ""
|
||||
"Tick the box next to a post and click \"Delete\" at the bottom of the page "
|
||||
@ -735,72 +720,71 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderate %d posts"
|
||||
msgstr "%d Beiträge moderieren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete all"
|
||||
msgstr "Alle löschen"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban all"
|
||||
msgstr "Alle sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 thread and 1 reply will be deleted."
|
||||
msgstr "1 Beitrag und 1 Antwort werden gelöscht."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "1 thread and %d replies will be deleted."
|
||||
msgstr "1 Beitrag und %d Antworten werden gelöscht."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d threads and 1 reply will be deleted."
|
||||
msgstr "%d Beiträge und 1 Antwort wird gelöscht."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d threads and %2$d replies will be deleted."
|
||||
msgstr "%1$d Beiträge und %2$d Antworten werden gelöscht."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 IP address will be banned."
|
||||
msgstr "1 IP-Adresse wird gesperrt."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d IP addresses will be banned."
|
||||
msgstr "%d IP-Adressen werden gesperrt."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid " A ban record already exists for %s"
|
||||
msgstr " Eine Sperre existiert bereits für %s"
|
||||
msgstr " Ein Verbannungsdatensatz existiert bereits für %s"
|
||||
|
||||
msgid "Only an administrator may ban an IP address."
|
||||
msgstr "Nur Administratoren dürfen eine IP-Adresse sperren."
|
||||
msgstr "Nur ein Administrator darf eine IP-Adresse sperren."
|
||||
|
||||
#, php-format
|
||||
msgid "IP address: %s"
|
||||
msgstr "IP-Adresse: %s"
|
||||
|
||||
msgid "Thread"
|
||||
msgstr "Beitrag"
|
||||
msgstr "Beitragsstrang"
|
||||
|
||||
msgid "1 reply will be deleted."
|
||||
msgstr "1 Antwort wird gelöscht."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr "%d Antworten werden gelöscht."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr "Gehört %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr "Abpinnen"
|
||||
msgstr "Nicht mehr Sticky"
|
||||
|
||||
msgid "Sticky"
|
||||
msgstr "Anpinnen"
|
||||
msgstr "Klebrig"
|
||||
|
||||
msgid "Return this thread to a normal state."
|
||||
msgstr "Diesen Beitrag auf Normalzustand zurücksetzen."
|
||||
msgstr "Dieses Thema auf Normalzustand zurücksetzen."
|
||||
|
||||
msgid "Keep this thread at the top of the board."
|
||||
msgstr "Diesen Beitrag oben am Board behalten."
|
||||
msgstr "Dieses Thema am Anfang des Boards behalten."
|
||||
|
||||
msgid "Unlock"
|
||||
msgstr "Entsperren"
|
||||
@ -812,72 +796,79 @@ msgid "Allow replying to this thread."
|
||||
msgstr "Antworten zu diesem Thema erlauben."
|
||||
|
||||
msgid "Disallow replying to this thread."
|
||||
msgstr "Antworten zu diesem Thema verbieten."
|
||||
msgstr "Antworten zu diesem Thema verweigern."
|
||||
|
||||
#, php-format
|
||||
msgid "Moderating No.%d"
|
||||
msgstr "Moderiere Beitrag Nr. %d"
|
||||
msgstr "Moderierende Nr. %d"
|
||||
|
||||
msgid "Action"
|
||||
msgstr "Aktion"
|
||||
|
||||
msgid "Delete thread"
|
||||
msgstr "Beitrag löschen"
|
||||
msgstr "Beitragsstrang löschen"
|
||||
|
||||
msgid "Delete reply"
|
||||
msgstr "Antwort löschen"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban poster"
|
||||
msgstr "Autor sperren"
|
||||
msgstr "Autor verbannen"
|
||||
|
||||
msgid "Approve"
|
||||
msgstr "Freigeben"
|
||||
msgstr "Genehmigen"
|
||||
|
||||
msgid "report"
|
||||
msgstr "Meldung"
|
||||
msgstr ""
|
||||
|
||||
msgid "reports"
|
||||
msgstr "Meldungen"
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
"Entschuldigung, es scheint kein Schlagwort mit dieser ID zu existieren."
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Entschuldigung, es scheint kein Beitrag mit dieser ID zu existieren."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr "Aktion:"
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Hinzufügen"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hide until approved"
|
||||
msgstr "Ausblenden bis freigegeben"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 hour"
|
||||
msgstr "Löschen und für 1 Stunde sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 day"
|
||||
msgstr "Löschen und für 1 Tag sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 days"
|
||||
msgstr "Löschen und für 2 Tage sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 week"
|
||||
msgstr "Löschen und für 1 Woche sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 weeks"
|
||||
msgstr "Löschen und für 2 Wochen sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 month"
|
||||
msgstr "Löschen und für 1 Monat sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban permanently"
|
||||
msgstr "Löschen und dauerhaft sperren"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit"
|
||||
msgstr "Bearbeiten"
|
||||
msgstr ""
|
||||
|
||||
msgid "thread"
|
||||
msgstr "Beitrag"
|
||||
msgstr "Thema"
|
||||
|
||||
msgid "threads"
|
||||
msgstr "Beiträge"
|
||||
msgstr "Themen"
|
||||
|
||||
msgid "ban"
|
||||
msgstr "Ban"
|
||||
@ -889,7 +880,7 @@ msgid "More Info"
|
||||
msgstr "Mehr Information"
|
||||
|
||||
msgid "Pending posts"
|
||||
msgstr "Wartende Beiträge"
|
||||
msgstr "Vorbehaltene Beiträge"
|
||||
|
||||
msgid "Recent posts"
|
||||
msgstr "Neue Beiträge"
|
||||
@ -897,28 +888,6 @@ msgstr "Neue Beiträge"
|
||||
msgid "Info"
|
||||
msgstr "Information"
|
||||
|
||||
#~ msgid "Sorry, there is already a ban on record for that IP address."
|
||||
#~ msgstr ""
|
||||
#~ "Entschuldigung, auf dieser IP-Adresse existiert schon ein Ban vermerk."
|
||||
|
||||
#~ msgid "Embed:"
|
||||
#~ msgstr "Einbetten:"
|
||||
|
||||
#~ msgid "File:"
|
||||
#~ msgstr "Datei:"
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "Unbearbeiteter Beitrag"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "optional"
|
||||
|
||||
#~ msgid "Tip:"
|
||||
#~ msgstr "Tipp:"
|
||||
|
||||
#~ msgid "Action:"
|
||||
#~ msgstr "Aktion:"
|
||||
|
||||
#~ msgid "TINYIB_TRIPSEED and TINYIB_ADMINPASS must be configured."
|
||||
#~ msgstr "TINYIB_TRIPSEED und TINYIB_ADMINPASS müssen konfiguriert werden."
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,10 +1,10 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocket9labs.com\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2023-11-05 18:33+0000\n"
|
||||
"Last-Translator: CANIBAL <rikrdofrancisco@gmail.com>\n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2021-05-22 04:33+0000\n"
|
||||
"Last-Translator: Yngvar Skjaldulfsson <irrorate_browns@slmail.me>\n"
|
||||
"Language-Team: Spanish (Mexico) <https://hosted.weblate.org/projects/tinyib/"
|
||||
"tinyib/es_MX/>\n"
|
||||
"Language: es_MX\n"
|
||||
@ -12,27 +12,21 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.2-dev\n"
|
||||
"X-Generator: Weblate 4.7-dev\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/html.php\n"
|
||||
"X-Poedit-SearchPath-2: inc/functions.php\n"
|
||||
|
||||
msgid "Click here to go back"
|
||||
msgstr "Haz click para regresar"
|
||||
msgstr "Click aquí para regresar"
|
||||
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"Las variables TINYIB_HCAPTCHA_SITE y TINYIB_HCAPTCHA_SECRET deben ser "
|
||||
"configuradas."
|
||||
msgstr "TINYIB_HCAPTCHA_SITE y TINYIB_HCAPTCHA_SECRET deben ser configurados."
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"Las variables TINYIB_RECAPTCHA_SITE y TINYIB_RECAPTCHA_SECRET deben ser "
|
||||
"configuradas."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "La variable TINYIB_TRIPSEED debe ser configurada."
|
||||
"TINYIB_RECAPTCHA_SITE y TINYIB_RECAPTCHA_SECRET deben ser configurados."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Modo de base de datos especificado desconocido."
|
||||
@ -54,21 +48,7 @@ msgid "Replies are not allowed to locked threads."
|
||||
msgstr "Las respuestas no estan permitidas en hilos bloqueados."
|
||||
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Tu post contiene una palabra prohibida."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Palabra prohibida"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "Tu dirección IP (%1$s) ha sido baneada hasta el %2$s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "Tu dirección IP (%s) ha sido permanentemente baneada."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Razón"
|
||||
msgstr "Tu post contiene una palabra bloqueada."
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
@ -76,7 +56,7 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Invalid embed URL. Only %s URLs are supported."
|
||||
msgstr "La URL adjuntada no es valida. Solo %s URLs son soportadas."
|
||||
msgstr "La URL incrustada no es valida. Solo %s URLs son soportadas."
|
||||
|
||||
#, php-format
|
||||
msgid "That file is larger than %s."
|
||||
@ -89,16 +69,16 @@ msgid "Error while processing audio/video."
|
||||
msgstr "Error al procesar audio/video."
|
||||
|
||||
msgid "Could not create thumbnail."
|
||||
msgstr "No ha sido posible crear la miniatura."
|
||||
msgstr "No a sido posible crear la miniatura."
|
||||
|
||||
msgid "upload a file or embed a URL"
|
||||
msgstr "sube un archivo o adjunta una URL"
|
||||
msgstr "sube un archivo o incrusta una URL"
|
||||
|
||||
msgid "upload a file"
|
||||
msgstr "sube un archivo"
|
||||
|
||||
msgid "embed a URL"
|
||||
msgstr "adjunta una URL"
|
||||
msgstr "incrusta una URL"
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s to start a new thread."
|
||||
@ -117,7 +97,7 @@ msgstr "Por favor %s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your %s will be shown <b>once it has been approved</b>."
|
||||
msgstr "Tu %s va a ser publicado <b>una vez sea aprobado</b>."
|
||||
msgstr "Tu %s va a ser mostrado <b>una vez aprovado</b>."
|
||||
|
||||
msgid "Updating thread..."
|
||||
msgstr "Actualizando hilo..."
|
||||
@ -125,17 +105,17 @@ msgstr "Actualizando hilo..."
|
||||
msgid "Updating index..."
|
||||
msgstr "Actualizando índice..."
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr "Post de personal creado"
|
||||
msgid "Created raw post"
|
||||
msgstr "Crear publicación bruta"
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "Este post ha sido eliminado"
|
||||
msgstr "Esta publicación ha sido eliminada"
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr "Este post requiere moderación antes de que se pueda publicar"
|
||||
msgstr "Esta publicación requiere moderación antes de que se pueda mostrar"
|
||||
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr "Refrescar automáticamente está deshabilitado."
|
||||
msgstr "Refresco automatico está deshabilitado."
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr "Reportar está deshabilitado."
|
||||
@ -145,13 +125,14 @@ msgid ""
|
||||
"page, and try again."
|
||||
msgstr ""
|
||||
"Perdón, un indentificador de post invalido a sido enviado. Por favor "
|
||||
"regrese, actualice la pagina, e intentelo de nuevo."
|
||||
"regrese, actualize la pagina, e intentelo de nuevo."
|
||||
|
||||
msgid "Moderators have determined that post does not break any rules."
|
||||
msgstr "Los moderadores han determinado que este post no rompe ninguna regla."
|
||||
msgstr ""
|
||||
"Los moderadores han determinado que la publicación no rompe ninguna regla."
|
||||
|
||||
msgid "You have already submitted a report for that post."
|
||||
msgstr "Ya has subido un reporte para ese post."
|
||||
msgstr "Ya haz subido un reporte para ese post."
|
||||
|
||||
msgid "(enter the text below)"
|
||||
msgstr "(Introduzca el texto a continuación)"
|
||||
@ -163,11 +144,11 @@ msgid "Submit"
|
||||
msgstr "Enviar"
|
||||
|
||||
msgid "Post reported."
|
||||
msgstr "Post reportado."
|
||||
msgstr "Publicación reportada."
|
||||
|
||||
msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
msgstr ""
|
||||
"Selecciona la caja al lado de un post y da click en \"Eliminar\" para "
|
||||
"Selecciona la caja al lado de una publicación y da clic en \"Eliminar\" para "
|
||||
"eliminarlo."
|
||||
|
||||
msgid ""
|
||||
@ -182,7 +163,7 @@ msgid "Invalid password."
|
||||
msgstr "Contraseña invalida."
|
||||
|
||||
msgid "Rebuilt board."
|
||||
msgstr "Tablón reconstruido."
|
||||
msgstr "Tabla reconstruida."
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr "Acceso denegado"
|
||||
@ -192,19 +173,19 @@ msgstr "Cuenta no encontrada."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr ""
|
||||
"Esta cuenta no puede ser actualizada mientras que la variable "
|
||||
"TINYIB_ADMINPASS este activada."
|
||||
"Esta cuenta puede no ser actualizada mientras que TINYIB_ADMINPASS es "
|
||||
"establecido."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr ""
|
||||
"Esta cuenta no puede ser actualizada mientras que la variable TINYIB_MODPASS "
|
||||
"este activada."
|
||||
"Esta cuenta puede no ser actualizada mientras que TINYIB_MODPASS es "
|
||||
"establecido."
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr "Se requiere una contraseña."
|
||||
|
||||
msgid "Invalid role."
|
||||
msgstr "Rol invalido."
|
||||
msgstr "Rol nulo."
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
@ -231,7 +212,7 @@ msgid "Moderator"
|
||||
msgstr "Moderador"
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Deshabilitado"
|
||||
msgstr "Desabilitado"
|
||||
|
||||
#, php-format
|
||||
msgid "Changed role of account %s to %s"
|
||||
@ -240,6 +221,9 @@ msgstr "El rol de la cuenta %s fue cambiado a %s"
|
||||
msgid "Updated account"
|
||||
msgstr "Cuenta actualizada"
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr "Lo sentimos, ya hay una prohibición de registro para esa dirección IP."
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "permanentemente"
|
||||
|
||||
@ -255,70 +239,66 @@ msgstr "Baneado %s %s"
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr "Baneado %s %s: %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "Mensaje de ban agregado a %s"
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr "1 dirección IP baneada"
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %d IP addresses"
|
||||
msgstr "Dirección IP %d baneada"
|
||||
msgstr "Dirección IP %d vetada"
|
||||
|
||||
#, php-format
|
||||
msgid "Lifted ban on %s"
|
||||
msgstr "Baneo retirado para %s"
|
||||
|
||||
msgid "Sorry, that keyword has already been added."
|
||||
msgstr "Lo siento, esa palabra prohibida ya se ha agregado."
|
||||
msgstr "Lo siento, esa palabra clave ya se ha agregado."
|
||||
|
||||
#, php-format
|
||||
msgid "Updated keyword %s"
|
||||
msgstr "Palabra prohibida %s actualizada"
|
||||
msgstr "Palabra clave %s actualizada"
|
||||
|
||||
msgid "Keyword updated."
|
||||
msgstr "Palabra prohibida actualizada."
|
||||
msgstr "Palabra clave actualizada."
|
||||
|
||||
msgid "Keyword added."
|
||||
msgstr "Palabra prohibida añadida."
|
||||
msgstr "Palabra clave añadida."
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr "Esa palabra prohibida no existe."
|
||||
msgstr "Esa palabra clave no existe."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
msgstr "Palabra prohibida %s eliminada"
|
||||
msgstr "Palabra clave %s eliminada"
|
||||
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Palabra prohibida eliminada."
|
||||
msgstr "Palabra clave eliminada."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Lo siento, no parece haber una publicación con esa ID."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr "%s eliminado"
|
||||
msgstr "%s borrado"
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr "1 post eliminado"
|
||||
msgstr "1 publicación borrada"
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr "%d publicaciones eliminadas"
|
||||
msgstr "%d publicaciones borradas"
|
||||
|
||||
msgid "Approved"
|
||||
msgstr "Aprobado"
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "El post No.%d fue aprobado."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Lo siento, no parece haber un post con esa ID."
|
||||
msgstr "La publicación No.%d fue aprovada."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "Fijado"
|
||||
msgstr "Pegado"
|
||||
|
||||
msgid "Unstickied"
|
||||
msgstr "Desfijado"
|
||||
msgstr "Despegado"
|
||||
|
||||
msgid "Form data was lost. Please go back and try again."
|
||||
msgstr ""
|
||||
@ -331,11 +311,8 @@ msgstr "Bloqueado"
|
||||
msgid "Unlocked"
|
||||
msgstr "Desbloqueado"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Las contraseñas no coinciden."
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "Contraseña actualizada"
|
||||
msgstr "Contraseña actualiza"
|
||||
|
||||
msgid "Please enter the CAPTCHA text."
|
||||
msgstr "Por favor ingrese el texto del CAPTCHA."
|
||||
@ -344,8 +321,8 @@ msgid ""
|
||||
"Incorrect CAPTCHA text entered. Please try again.<br>Click the image to "
|
||||
"retrieve a new CAPTCHA."
|
||||
msgstr ""
|
||||
"El texto ingresado del CAPTCHA es incorrecto. Por favor inténtelo de nuevo."
|
||||
"<br>Haga click en la imagen para obtener un nuevo CAPTCHA."
|
||||
"El texto ingresado del CAPTCHA es incorrecto. Por favor intentelo de "
|
||||
"nuevo.<br>Haga clic en la imagen para obtener un nuevo CAPTCHA."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
@ -384,11 +361,11 @@ msgstr "No se pudo guardar el archivo subido."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
"Se ha subido un archivo duplicado. Ese archivo ya ha sido publicado <a "
|
||||
"href=\"%s\">aquí</a>."
|
||||
"Se ha subido un archivo duplicado. Ese archivo ya ha sido publicado <a href="
|
||||
"\"%s\">aquí</a>."
|
||||
|
||||
msgid ""
|
||||
"Unable to read the uploaded file while creating its thumbnail. A common "
|
||||
@ -396,7 +373,7 @@ msgid ""
|
||||
"different type."
|
||||
msgstr ""
|
||||
"No se pudo leer el archivo cargado mientras se creaba su miniatura. Una "
|
||||
"causa común de esto es una extensión incorrecta cuando el archivo es en "
|
||||
"causa común para esto es una extensión incorrecta cuando el archivo es en "
|
||||
"realidad de un tipo diferente."
|
||||
|
||||
msgid "File transfer failure. Please retry the submission."
|
||||
@ -427,11 +404,11 @@ msgstr "El tipo de archivo soportado es %s"
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "Los tipos de archivo admitidos son %1$s y %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr "HTML crudo"
|
||||
msgid "Reply to"
|
||||
msgstr "Responder a"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "Activar"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 para iniciar un nuevo hilo"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
@ -443,12 +420,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Los saltos de línea deben ser especificados con \"<br>\"."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Responder a"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 para iniciar un nuevo hilo"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
@ -466,11 +437,11 @@ msgid "(paste a YouTube URL)"
|
||||
msgstr "(pegue una URL de YouTube)"
|
||||
|
||||
msgid "All posts are moderated before being shown."
|
||||
msgstr "Todos los posts son moderados antes de ser publicados."
|
||||
msgstr "Todos los post son moderados antes de mostrarse."
|
||||
|
||||
msgid "All posts with a file attached are moderated before being shown."
|
||||
msgstr ""
|
||||
"Todos los posts con un archivo adjunto son moderados antes de ser publicados."
|
||||
"Todos los post con un archivo adjunto son moderados antes de ser mostrados."
|
||||
|
||||
#, php-format
|
||||
msgid "Images greater than %s will be thumbnailed."
|
||||
@ -501,18 +472,24 @@ msgstr "(para eliminación de post y archivo)"
|
||||
msgid "Report"
|
||||
msgstr "Reportar"
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr "Incrustar:"
|
||||
|
||||
msgid "File:"
|
||||
msgstr "Archivo:"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
|
||||
msgid "Post truncated. Click Reply to view."
|
||||
msgstr "Post truncado. Haz click en Responder para verlo."
|
||||
msgstr "Post truncado. Click en Responder para verlo."
|
||||
|
||||
msgid "1 post omitted. Click Reply to view."
|
||||
msgstr "1 Post omitido. Haz click en Responder para verlo."
|
||||
msgstr "1 Post omitido. Click en Responder para verlo."
|
||||
|
||||
#, php-format
|
||||
msgid "%d posts omitted. Click Reply to view."
|
||||
msgstr "%d posts omitidos. Haz click en Responder para verlos."
|
||||
msgstr "%d posts omitidos. Click en Responder para verlos."
|
||||
|
||||
msgid "Catalog"
|
||||
msgstr "Catálogo"
|
||||
@ -541,6 +518,9 @@ msgstr "Eliminar"
|
||||
msgid "Delete Post"
|
||||
msgstr "Eliminar Post"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Estátus"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Cuentas"
|
||||
|
||||
@ -548,16 +528,16 @@ msgid "Bans"
|
||||
msgstr "Baneos"
|
||||
|
||||
msgid "Keywords"
|
||||
msgstr "Palabras prohibidas"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migrar base de datos"
|
||||
msgstr "Palabras clave"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Moderar Post"
|
||||
msgstr "Moderar publicación"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr "Registro de Moderación"
|
||||
msgstr "Registro de moderación"
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "Post bruto"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "Reconstruir todo"
|
||||
@ -565,23 +545,20 @@ msgstr "Reconstruir todo"
|
||||
msgid "Reports"
|
||||
msgstr "Reportes"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr "Publicar como personal"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Estátus"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Actualizar"
|
||||
msgstr "Actualización"
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr "Cambiar Contraseña"
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migrar base de datos"
|
||||
|
||||
msgid "Change password"
|
||||
msgstr "Cambiar contraseña"
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr "Cerrar sesión"
|
||||
|
||||
msgid "Manage mode"
|
||||
msgstr "Modo administración"
|
||||
msgstr "Administrar modo"
|
||||
|
||||
msgid "Log In"
|
||||
msgstr "Ingresar"
|
||||
@ -604,93 +581,95 @@ msgstr "reporte No. %1$d por %2$s"
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d reports by %2$s"
|
||||
msgstr "%1$d reportes por %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d reports"
|
||||
msgstr "%d reportes"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Delete Post"
|
||||
msgid "Reported by %s"
|
||||
msgstr "Reportado por %s"
|
||||
msgstr "Eliminar Post"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr "Moderar"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are currently no reported posts."
|
||||
msgstr "Actualmente no hay posts reportados."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add an account"
|
||||
msgstr "Añadir una cuenta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update an account"
|
||||
msgstr "Actualizar una cuenta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leave blank to maintain current password"
|
||||
msgstr "Dejar en blanco para mantener la contraseña actual"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nombre de usuario"
|
||||
msgstr ""
|
||||
|
||||
msgid "Role"
|
||||
msgstr "Rol"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose a role"
|
||||
msgstr "Escoge un rol"
|
||||
msgstr ""
|
||||
|
||||
msgid "Last active"
|
||||
msgstr "Última vez activo"
|
||||
msgstr ""
|
||||
|
||||
msgid "Never"
|
||||
msgstr "Nunca"
|
||||
msgstr ""
|
||||
|
||||
msgid "update"
|
||||
msgstr "actualizar"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add a ban"
|
||||
msgstr "Añadir un ban"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Multiple IP addresses may be banned at once by separating each address with "
|
||||
"a comma."
|
||||
msgstr ""
|
||||
"Se pueden banear múltiples direcciones IP separando cada una con una coma."
|
||||
|
||||
msgid "IP Address"
|
||||
msgstr "Dirección IP"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Expire(sec):"
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Expiración(seg)"
|
||||
msgstr "Expirar(seg):"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Razón"
|
||||
|
||||
msgid "never"
|
||||
msgstr "nunca"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr "Opcional."
|
||||
msgid "optional"
|
||||
msgstr "opcional"
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 hora"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 day"
|
||||
msgstr "1 día"
|
||||
msgstr ""
|
||||
|
||||
msgid "2 days"
|
||||
msgstr "2 días"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 week"
|
||||
msgstr "1 semana"
|
||||
msgstr ""
|
||||
|
||||
msgid "2 weeks"
|
||||
msgstr "2 semanas"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 month"
|
||||
msgstr "1 mes"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr "Adjunta un mensaje al post. Opcional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "Creado"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expires"
|
||||
msgstr "Expira"
|
||||
@ -698,219 +677,205 @@ msgstr "Expira"
|
||||
msgid "Does not expire"
|
||||
msgstr "No expira"
|
||||
|
||||
#, fuzzy
|
||||
msgid "lift"
|
||||
msgstr "retirar"
|
||||
msgstr "levantar"
|
||||
|
||||
msgid "Moderate a post"
|
||||
msgstr "Moderar un post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post ID"
|
||||
msgstr "ID del post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgstr "Consejo"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
"logged in."
|
||||
msgstr ""
|
||||
"Mientras navegas el tablón de imágenes, puedes moderar un post fácilmente si "
|
||||
"estás logueado."
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
msgid ""
|
||||
"Tick the box next to a post and click \"Delete\" at the bottom of the page "
|
||||
"with a blank password."
|
||||
msgstr ""
|
||||
"Selecciona la caja al lado de un post y haz click en \"Eliminar\" al final "
|
||||
"de la página con el campo de contraseña vacío."
|
||||
"Selecciona la caja al lado de un post y clickea \"Eliminar\" para eliminarlo."
|
||||
|
||||
#, php-format
|
||||
msgid "Moderate %d posts"
|
||||
msgstr "Moderar %d posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete all"
|
||||
msgstr "Eliminar todos"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban all"
|
||||
msgstr "Banear todos"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 thread and 1 reply will be deleted."
|
||||
msgstr "1 hilo y 1 respuesta serán eliminados."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "1 thread and %d replies will be deleted."
|
||||
msgstr "1 hilo y %d respuestas serán eliminados."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d threads and 1 reply will be deleted."
|
||||
msgstr "%d hilos y 1 respuesta serán eliminados."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d threads and %2$d replies will be deleted."
|
||||
msgstr "%1$d hilos y %2$d respuestas serán eliminadas."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 IP address will be banned."
|
||||
msgstr "1 dirección IP será baneada."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d IP addresses will be banned."
|
||||
msgstr "%d direcciones IP serán baneadas."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Ban record added for %s"
|
||||
msgid " A ban record already exists for %s"
|
||||
msgstr " Ya existe un registro de ban para %s"
|
||||
msgstr "Registro de ban añadido para %s"
|
||||
|
||||
msgid "Only an administrator may ban an IP address."
|
||||
msgstr "Solamente los administradores pueden banear una dirección IP."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
#| msgid "IP Address:"
|
||||
msgid "IP address: %s"
|
||||
msgstr "Dirección IP: %s"
|
||||
msgstr "Dirección IP:"
|
||||
|
||||
msgid "Thread"
|
||||
msgstr "Hilo"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 reply will be deleted."
|
||||
msgstr "1 respuesta será eliminada."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr "%d respuestas serán eliminadas."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr "Pertenece a %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr "Dejar de fijar"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sticky"
|
||||
msgstr "Fijar"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return this thread to a normal state."
|
||||
msgstr "Retornar este hilo a su estado normal."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keep this thread at the top of the board."
|
||||
msgstr "Mantener este hilo en la parte superior del tablón."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unlock"
|
||||
msgstr "Desbloquear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lock"
|
||||
msgstr "Bloquear"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow replying to this thread."
|
||||
msgstr "Permitir respuestas en este hilo."
|
||||
msgstr ""
|
||||
|
||||
msgid "Disallow replying to this thread."
|
||||
msgstr "Inhabilitar respuestas en este hilo."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderating No.%d"
|
||||
msgstr "Moderando hilo No.%d"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action"
|
||||
msgstr "Acción"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Delete Post"
|
||||
msgid "Delete thread"
|
||||
msgstr "Eliminar hilo"
|
||||
msgstr "Eliminar Post"
|
||||
|
||||
msgid "Delete reply"
|
||||
msgstr "Eliminar respuesta"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban poster"
|
||||
msgstr "Banear usuario"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approve"
|
||||
msgstr "Aprobar"
|
||||
msgstr ""
|
||||
|
||||
msgid "report"
|
||||
msgstr "reportar"
|
||||
msgstr ""
|
||||
|
||||
msgid "reports"
|
||||
msgstr "reportes"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Perdón, pero no parece haber una palabra prohibida con esa ID."
|
||||
msgstr "Perdón, pero no parece haber un post con esa ID."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Agregar"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hide until approved"
|
||||
msgstr "Ocultar hasta que sea aprobado"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 hour"
|
||||
msgstr "Eliminar y banear por 1 hora"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 day"
|
||||
msgstr "Eliminar y banear por 1 día"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 days"
|
||||
msgstr "Eliminar y banear por 2 días"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 week"
|
||||
msgstr "Eliminar y banear por 1 semana"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 weeks"
|
||||
msgstr "Eliminar y banear por 2 semanas"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 month"
|
||||
msgstr "Eliminar y banear por 1 mes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban permanently"
|
||||
msgstr "Eliminar y banear permanentemente"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit"
|
||||
msgstr "Editar"
|
||||
msgstr ""
|
||||
|
||||
msgid "thread"
|
||||
msgstr "hilo"
|
||||
msgstr ""
|
||||
|
||||
msgid "threads"
|
||||
msgstr "hilos"
|
||||
msgstr ""
|
||||
|
||||
msgid "ban"
|
||||
msgstr "ban"
|
||||
msgstr ""
|
||||
|
||||
msgid "bans"
|
||||
msgstr "baneos"
|
||||
msgstr ""
|
||||
|
||||
msgid "More Info"
|
||||
msgstr "Más información"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pending posts"
|
||||
msgstr "Posts pendientes por aprobar"
|
||||
msgstr ""
|
||||
|
||||
msgid "Recent posts"
|
||||
msgstr "Posts recientes"
|
||||
msgstr ""
|
||||
|
||||
msgid "Info"
|
||||
msgstr "Información"
|
||||
|
||||
#~ msgid "Belongs to "
|
||||
#~ msgstr "Pertenece a "
|
||||
|
||||
#~ msgid "Created raw post"
|
||||
#~ msgstr "Crear publicación bruta"
|
||||
|
||||
#~ msgid "Sorry, there is already a ban on record for that IP address."
|
||||
#~ msgstr ""
|
||||
#~ "Lo sentimos, ya hay una prohibición de registro para esa dirección IP."
|
||||
|
||||
#~ msgid "Embed:"
|
||||
#~ msgstr "Incrustar:"
|
||||
|
||||
#~ msgid "File:"
|
||||
#~ msgstr "Archivo:"
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "Post bruto"
|
||||
|
||||
#~ msgid "Change password"
|
||||
#~ msgstr "Cambiar contraseña"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "opcional"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "TINYIB_TRIPSEED and TINYIB_ADMINPASS must be configured."
|
||||
#~ msgstr "TinyIB_TRIPSEED y TINYIB_ADMINPASS deben ser configurados."
|
||||
|
@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-10-08 23:26+0000\n"
|
||||
"Last-Translator: tei zerg <teizerg@airmail.cc>\n"
|
||||
"Language-Team: Spanish (American) <https://hosted.weblate.org/projects/"
|
||||
@ -29,9 +29,6 @@ msgstr "TINYIB_TRIPSEED y TINYIB_ADMINPASS deben ser configurados."
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -51,20 +48,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -119,7 +102,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -225,6 +208,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -240,10 +226,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -278,6 +260,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -296,9 +281,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -314,9 +296,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -362,8 +341,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -397,10 +376,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -411,12 +390,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -468,6 +441,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -508,6 +487,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -517,31 +499,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -628,10 +607,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -652,9 +634,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -673,7 +652,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -739,8 +718,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -795,6 +773,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -26,9 +26,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -48,20 +45,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -116,7 +99,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -222,6 +205,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -237,10 +223,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -275,6 +257,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -293,9 +278,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -311,9 +293,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -359,8 +338,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -394,10 +373,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -408,12 +387,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -465,6 +438,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -505,6 +484,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -514,31 +496,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -625,10 +604,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -649,9 +631,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -670,7 +649,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -736,8 +715,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -792,6 +770,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2021-04-07 14:27+0000\n"
|
||||
"Last-Translator: Nathan <bonnemainsnathan@gmail.com>\n"
|
||||
"Language-Team: French <https://hosted.weblate.org/projects/tinyib/tinyib/fr/"
|
||||
@ -29,9 +29,6 @@ msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"TINYIB_RECAPTCHA_SITE et TINYIB_RECAPTCHA_SECRET doivent être configurés."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Type de base de données spécifié inconnu."
|
||||
|
||||
@ -57,20 +54,6 @@ msgstr "Les réponses ne sont pas autorisées sur les fils verrouillés."
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Votre publication contient un mot bloqué."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Mot-clé"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Motif"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
"Intégrer une URL et mettre en ligne un fichier au même moment n'est pas pris "
|
||||
@ -127,7 +110,7 @@ msgstr "Mise à jour du fil de discussion…"
|
||||
msgid "Updating index..."
|
||||
msgstr "Mise à jour de l’index…"
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -241,6 +224,10 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr "Compte mis à jour"
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
"Désolé, il y a déjà une interdiction enregistrée pour cette adresse IP."
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -256,10 +243,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -294,6 +277,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Mot-clé supprimé."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Désolé, il ne semble pas y avoir de publication avec cet identifiant."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -312,9 +298,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "Publication nº %d approuvée."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Désolé, il ne semble pas y avoir de publication avec cet identifiant."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "Épinglé"
|
||||
|
||||
@ -332,9 +315,6 @@ msgstr "Verrouillé"
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "Mot de passe mis à jour"
|
||||
|
||||
@ -386,11 +366,11 @@ msgstr "Impossible d’enregistrer le fichier téléversé."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
"Fichier en double téléversé. Ce fichier a déjà été publié <a "
|
||||
"href=\"%s\">ici</a>."
|
||||
"Fichier en double téléversé. Ce fichier a déjà été publié <a href=\"%s"
|
||||
"\">ici</a>."
|
||||
|
||||
msgid ""
|
||||
"Unable to read the uploaded file while creating its thumbnail. A common "
|
||||
@ -429,11 +409,11 @@ msgstr "Le type de fichier pris en charge est %s"
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "Les types de fichier pris en charge sont %1$s et %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr ""
|
||||
msgid "Reply to"
|
||||
msgstr "Répondre à"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 pour démarrer un nouveau fil"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
@ -445,12 +425,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Les sauts de ligne doivent être spécifiés avec « <br> »."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Répondre à"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 pour démarrer un nouveau fil"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
@ -503,6 +477,12 @@ msgstr "(pour la suppression de publications et de fichiers)"
|
||||
msgid "Report"
|
||||
msgstr "Signaler"
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr "Incorporer :"
|
||||
|
||||
msgid "File:"
|
||||
msgstr "Fichier :"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Répondre"
|
||||
|
||||
@ -543,6 +523,9 @@ msgstr "Supprimer"
|
||||
msgid "Delete Post"
|
||||
msgstr "Supprimer la publication"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "État"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Comptes"
|
||||
|
||||
@ -552,32 +535,29 @@ msgstr "Interdictions"
|
||||
msgid "Keywords"
|
||||
msgstr "Mots-clés"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migrer la base de données"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Modérer la publication"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "Publication brute"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "Tout reconstruire"
|
||||
|
||||
msgid "Reports"
|
||||
msgstr "Signalements"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr "État"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Mettre à jour"
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migrer la base de données"
|
||||
|
||||
msgid "Change password"
|
||||
msgstr "Modifier le mot de passe"
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr "Se déconnecter"
|
||||
@ -663,11 +643,14 @@ msgstr "Adresse IP"
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Bannir pour"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Motif"
|
||||
|
||||
msgid "never"
|
||||
msgstr "jamais"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr ""
|
||||
msgid "optional"
|
||||
msgstr "facultatif"
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 heure"
|
||||
@ -687,9 +670,6 @@ msgstr "2 semaines"
|
||||
msgid "1 month"
|
||||
msgstr "1 mois"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "Définir à"
|
||||
|
||||
@ -708,8 +688,8 @@ msgstr "Modérer une publication"
|
||||
msgid "Post ID"
|
||||
msgstr "Identifiant de publication"
|
||||
|
||||
msgid "Tip"
|
||||
msgstr ""
|
||||
msgid "Tip:"
|
||||
msgstr "Astuce :"
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
@ -777,8 +757,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -833,6 +812,12 @@ msgstr "signalements"
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Désolé, il ne semble pas y avoir de mot-clé avec cet identifiant."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Mot-clé"
|
||||
|
||||
msgid "Action:"
|
||||
msgstr "Action :"
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Ajouter"
|
||||
|
||||
@ -887,31 +872,6 @@ msgstr "Publications récentes"
|
||||
msgid "Info"
|
||||
msgstr "Informations"
|
||||
|
||||
#~ msgid "Sorry, there is already a ban on record for that IP address."
|
||||
#~ msgstr ""
|
||||
#~ "Désolé, il y a déjà une interdiction enregistrée pour cette adresse IP."
|
||||
|
||||
#~ msgid "Embed:"
|
||||
#~ msgstr "Incorporer :"
|
||||
|
||||
#~ msgid "File:"
|
||||
#~ msgstr "Fichier :"
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "Publication brute"
|
||||
|
||||
#~ msgid "Change password"
|
||||
#~ msgstr "Modifier le mot de passe"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "facultatif"
|
||||
|
||||
#~ msgid "Tip:"
|
||||
#~ msgstr "Astuce :"
|
||||
|
||||
#~ msgid "Action:"
|
||||
#~ msgstr "Action :"
|
||||
|
||||
#~ msgid "TINYIB_TRIPSEED and TINYIB_ADMINPASS must be configured."
|
||||
#~ msgstr "TINYIB_TRIPSEED et TINYIB_ADMINPASS doivent être configurés."
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -26,9 +26,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -48,20 +45,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -116,7 +99,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -222,6 +205,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -237,10 +223,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -275,6 +257,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -293,9 +278,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -311,9 +293,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -359,8 +338,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -394,10 +373,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -408,12 +387,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -465,6 +438,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -505,6 +484,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -514,31 +496,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -625,10 +604,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -649,9 +631,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -670,7 +649,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -736,8 +715,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -792,6 +770,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1,876 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2022-12-18 03:51+0000\n"
|
||||
"Last-Translator: Neko Nekowazarashi <kodra@nekoweb.my.id>\n"
|
||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/tinyib/tinyib/"
|
||||
"id/>\n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
"X-Poedit-Basepath: ../..\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/functions.php\n"
|
||||
"X-Poedit-SearchPath-2: inc/html.php\n"
|
||||
|
||||
msgid "Click here to go back"
|
||||
msgstr "Klik ini untuk kembali"
|
||||
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"Pengaturan TINYIB_HCAPTCHA_SITE dan TINYIB_HCAPTCHA_SECRET harus diisi."
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
"Pengaturan TINYIB_RECAPTCHA_SITE dan TINYIB_RECAPTCHA_SECRET harus diisi."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "Pengaturan TINYIB_TRIPSEED wajib diisi."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Mode database tidak ditemukan atau tidak tersedia."
|
||||
|
||||
#, php-format
|
||||
msgid "Directory '%s' can not be written to. Please modify its permissions."
|
||||
msgstr ""
|
||||
"Direktori '%s' tidak dapat ditulis. Harap ubah izin direktori tersebut "
|
||||
"menjadi tertulis (write access permission)."
|
||||
|
||||
msgid "Posting is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
"Posting saat ini dinonaktifkan.<br>Silakan coba lagi dalam beberapa saat "
|
||||
"lagi."
|
||||
|
||||
msgid "Invalid parent thread ID supplied, unable to create post."
|
||||
msgstr "ID thread induk yang diberikan tidak valid, tidak dapat membuat post."
|
||||
|
||||
msgid "Replies are not allowed to locked threads."
|
||||
msgstr "Post balasan pada thread yang dikunci tidak diizinkan."
|
||||
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Posting Anda berisikan kata kunci yang diblokir."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Kata kunci"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "Alamat IP anda (%1$s) diblokir sampai %2$s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "Alamat IP Anda (%s) diblokir permanen."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Alasan"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
"Operasi menyematkan URL dan mengunggah file pada waktu yang sama tidak "
|
||||
"didukung."
|
||||
|
||||
#, php-format
|
||||
msgid "Invalid embed URL. Only %s URLs are supported."
|
||||
msgstr "URL sematan tidak valid. Hanya URL %s yang didukung."
|
||||
|
||||
#, php-format
|
||||
msgid "That file is larger than %s."
|
||||
msgstr "File yang diunggah lebih besar dari %s."
|
||||
|
||||
msgid "Failed to download file at specified URL."
|
||||
msgstr "Gagal mengunduh file pada URL yang rujuk."
|
||||
|
||||
msgid "Error while processing audio/video."
|
||||
msgstr "Terjadi kesalahan pada pemrosesan audio/video."
|
||||
|
||||
msgid "Could not create thumbnail."
|
||||
msgstr "Tidak dapat membuat thumbnail."
|
||||
|
||||
msgid "upload a file or embed a URL"
|
||||
msgstr "unggah file atau sematkan URL"
|
||||
|
||||
msgid "upload a file"
|
||||
msgstr "unggah file"
|
||||
|
||||
msgid "embed a URL"
|
||||
msgstr "sematkan URL"
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s to start a new thread."
|
||||
msgstr "Harap %s untuk memulai thread baru."
|
||||
|
||||
#, php-format
|
||||
msgid "Please enter a message and/or %s."
|
||||
msgstr "Harap masukkan pesan dan/atau %s."
|
||||
|
||||
msgid "Please enter a message."
|
||||
msgstr "Harap masukkan pesan."
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s."
|
||||
msgstr "Harap %s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your %s will be shown <b>once it has been approved</b>."
|
||||
msgstr "%s Anda akan ditampilkan <b>jika disetujui</b>."
|
||||
|
||||
msgid "Updating thread..."
|
||||
msgstr "Memperbarui thread..."
|
||||
|
||||
msgid "Updating index..."
|
||||
msgstr "Memperbarui index..."
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr "Membuat postingan staf"
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "Postingan ini telah dihapus"
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr "Postingan ini memerlukan moderasi sebelum bisa ditampilkan"
|
||||
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr "Refresh halaman otomatis dinonaktifkan."
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr "Pelaporan dinonaktifkan."
|
||||
|
||||
msgid ""
|
||||
"Sorry, an invalid post identifier was sent. Please go back, refresh the "
|
||||
"page, and try again."
|
||||
msgstr ""
|
||||
"Maaf, identifier post yang dirujuk tidak valid. Harap kembali, refresh "
|
||||
"halaman, dan coba lagi."
|
||||
|
||||
msgid "Moderators have determined that post does not break any rules."
|
||||
msgstr ""
|
||||
"Moderator telah menetapkan bahwa postingan tersebut tidak melanggar aturan "
|
||||
"apa pun."
|
||||
|
||||
msgid "You have already submitted a report for that post."
|
||||
msgstr "Anda telah mengirimkan laporan untuk posting itu."
|
||||
|
||||
msgid "(enter the text below)"
|
||||
msgstr "(masukkan teks di bawah ini)"
|
||||
|
||||
msgid "Please complete a CAPTCHA to submit your report"
|
||||
msgstr "Harap lengkapi CAPTCHA untuk mengirimkan laporan Anda"
|
||||
|
||||
msgid "Submit"
|
||||
msgstr "Kirim"
|
||||
|
||||
msgid "Post reported."
|
||||
msgstr "Postingan telah dilaporkan."
|
||||
|
||||
msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
msgstr "Centang kotak di samping postingan dan klik \"Hapus\" untuk menghapus."
|
||||
|
||||
msgid ""
|
||||
"Post deletion is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
"Penghapusan postingan saat ini dinonaktifkan.<br>Silakan coba lagi dalam "
|
||||
"beberapa saat."
|
||||
|
||||
msgid "Post deleted."
|
||||
msgstr "Postingan dihapus."
|
||||
|
||||
msgid "Invalid password."
|
||||
msgstr "Kata sandi salah."
|
||||
|
||||
msgid "Rebuilt board."
|
||||
msgstr "<i>Rebuilt</i> board."
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr "Akses ditolak"
|
||||
|
||||
msgid "Account not found."
|
||||
msgstr "Akun tidak ditemukan."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr "Akun ini tidak dapat diperbarui selama TINYIB_ADMINPASS diset."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr "Akun ini tidak dapat diperbarui selama TINYIB_MODPASS diset."
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr "Kata sandi diperlukan."
|
||||
|
||||
msgid "Invalid role."
|
||||
msgstr "Peran tidak valid."
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
msgstr "Membuat akun %s"
|
||||
|
||||
msgid "Added account"
|
||||
msgstr "Akun dibuat"
|
||||
|
||||
#, php-format
|
||||
msgid "Renamed account %1$s as %2$s"
|
||||
msgstr "Mengganti nama akun %1$s menjadi %2$s"
|
||||
|
||||
#, php-format
|
||||
msgid "Changed password of account %s"
|
||||
msgstr "Mengubah kata sandi akun %s"
|
||||
|
||||
msgid "Super-administrator"
|
||||
msgstr "Super-administrator"
|
||||
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
|
||||
msgid "Moderator"
|
||||
msgstr "Moderator"
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Dinonaktifkan"
|
||||
|
||||
#, php-format
|
||||
msgid "Changed role of account %s to %s"
|
||||
msgstr "Mengubah role akun %s menjadi %s"
|
||||
|
||||
msgid "Updated account"
|
||||
msgstr "Akun diperbarui"
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "permanen"
|
||||
|
||||
#, php-format
|
||||
msgid "until %s"
|
||||
msgstr "sampai %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s"
|
||||
msgstr "Alamat IP %s diblokir %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr "Alamat IP %s diblokir %s: %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "Pesan blokiran ke %s dibuat"
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr "1 alamat IP diblokir"
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %d IP addresses"
|
||||
msgstr "%d alamat IP diblokir"
|
||||
|
||||
#, php-format
|
||||
msgid "Lifted ban on %s"
|
||||
msgstr "Blokir pada %s dicabut"
|
||||
|
||||
msgid "Sorry, that keyword has already been added."
|
||||
msgstr "Maaf, kata kunci itu sudah ditambahkan."
|
||||
|
||||
#, php-format
|
||||
msgid "Updated keyword %s"
|
||||
msgstr "Perbarui kata kunci %s"
|
||||
|
||||
msgid "Keyword updated."
|
||||
msgstr "Kata kunci diperbarui."
|
||||
|
||||
msgid "Keyword added."
|
||||
msgstr "Kata kunci ditambahkan."
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr "Kata kunci disebut tidak ditemukan."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
msgstr "Hapus kata kunci %s"
|
||||
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Kata kunci dihapus."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr "Hapus %s"
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr "1 posting dihapus"
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr "%d posting dihapus"
|
||||
|
||||
msgid "Approved"
|
||||
msgstr "Disetujui"
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "Postingan No.%d disetujui."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
"Maaf, tampaknya postingan dengan ID tersebut tidak ada atau tidak ditemukan."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "Rekat"
|
||||
|
||||
msgid "Unstickied"
|
||||
msgstr "Tidak rekat"
|
||||
|
||||
msgid "Form data was lost. Please go back and try again."
|
||||
msgstr "Data formulir hilang. Silakan kembali dan coba lagi."
|
||||
|
||||
msgid "Locked"
|
||||
msgstr "Dikunci"
|
||||
|
||||
msgid "Unlocked"
|
||||
msgstr "Tidak dikunci"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Kata sandi tidak cocok."
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "Kata sandi diperbarui"
|
||||
|
||||
msgid "Please enter the CAPTCHA text."
|
||||
msgstr "Harap masukkan teks CAPTCHA."
|
||||
|
||||
msgid ""
|
||||
"Incorrect CAPTCHA text entered. Please try again.<br>Click the image to "
|
||||
"retrieve a new CAPTCHA."
|
||||
msgstr ""
|
||||
"Teks CAPTCHA yang dimasukkan salah. Harap coba lagi.<br>Klik gambar untuk "
|
||||
"memuat CAPTCHA baru."
|
||||
|
||||
#, 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 ""
|
||||
"Harap persingkat pesan Anda, atau pecah posting jadi beberapa bagian. "
|
||||
"Panjang pesan anda adalah %1$d karakter, dan maksimum karakter yang "
|
||||
"diizinkan adalah %2$d."
|
||||
|
||||
msgid "Invalid key."
|
||||
msgstr "Kunci login salah."
|
||||
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Username dan password salah."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive (%s) in php.ini."
|
||||
msgstr ""
|
||||
"File yang diunggah melebihi aturan upload_max_filesize (%s) di php.ini."
|
||||
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "File yang diunggah hanya diunggah sebagian."
|
||||
|
||||
msgid "No file was uploaded."
|
||||
msgstr "Tidak ada file yang diunggah."
|
||||
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr "Directory sementara (temporary directory) tidak ditemukan."
|
||||
|
||||
msgid "Failed to write file to disk"
|
||||
msgstr "Gagal menulis file ke diska"
|
||||
|
||||
msgid "Unable to save the uploaded file."
|
||||
msgstr "Tidak dapat menyimpan file yang diunggah."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
msgstr ""
|
||||
"File unggahan duplikat. File tersebut telah diposting <a href=\"%s\">di "
|
||||
"sini</a>."
|
||||
|
||||
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 ""
|
||||
"Gagal membuat thumbnail: file yang diunggah tidak dapat dibaca. Ini umumnya "
|
||||
"terjadi karena penamaan extensi file dengan jenis file berbeda atau salah."
|
||||
|
||||
msgid "File transfer failure. Please retry the submission."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Failed to read the MIME type and size of the uploaded file. Please retry the "
|
||||
"submission."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not copy uploaded file."
|
||||
msgstr "Tidak dapat menyalin berkas yang diunggah."
|
||||
|
||||
msgid "File transfer failure. Please go back and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, your video appears to be corrupt."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file type is %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
"applied."
|
||||
msgstr ""
|
||||
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Membalas ke"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
#, php-format
|
||||
msgid "Maximum file size allowed is %s."
|
||||
msgstr ""
|
||||
|
||||
msgid "File"
|
||||
msgstr "Berkas"
|
||||
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
|
||||
msgid "(paste a YouTube URL)"
|
||||
msgstr "(tempel URL YouTube)"
|
||||
|
||||
msgid "All posts are moderated before being shown."
|
||||
msgstr ""
|
||||
|
||||
msgid "All posts with a file attached are moderated before being shown."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Images greater than %s will be thumbnailed."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Currently %s unique user posts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Name"
|
||||
msgstr "Nama"
|
||||
|
||||
msgid "E-mail"
|
||||
msgstr "Surel"
|
||||
|
||||
msgid "Subject"
|
||||
msgstr "Subjek"
|
||||
|
||||
msgid "Message"
|
||||
msgstr "Pesan"
|
||||
|
||||
msgid "Password"
|
||||
msgstr "Kata Sandi"
|
||||
|
||||
msgid "(for post and file deletion)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Report"
|
||||
msgstr "Laporan"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Balasan"
|
||||
|
||||
msgid "Post truncated. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 post omitted. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d posts omitted. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
msgid "Catalog"
|
||||
msgstr "Katalog"
|
||||
|
||||
msgid "Manage"
|
||||
msgstr "Kelola"
|
||||
|
||||
msgid "Previous"
|
||||
msgstr "Sebelumnya"
|
||||
|
||||
msgid "Next"
|
||||
msgstr "Selanjutnya"
|
||||
|
||||
msgid "Return"
|
||||
msgstr "Kembali"
|
||||
|
||||
msgid "Posting mode: Reply"
|
||||
msgstr ""
|
||||
|
||||
msgid "Style"
|
||||
msgstr "Gaya"
|
||||
|
||||
msgid "Delete"
|
||||
msgstr "Hapus"
|
||||
|
||||
msgid "Delete Post"
|
||||
msgstr "Hapus pos"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Akun"
|
||||
|
||||
msgid "Bans"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keywords"
|
||||
msgstr "Kata Kunci"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migrasi Basis Data"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr "Laporan"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Perbarui"
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr "Ubah Kata Sandi"
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr "Keluar"
|
||||
|
||||
msgid "Manage mode"
|
||||
msgstr "Mode kelola"
|
||||
|
||||
msgid "Log In"
|
||||
msgstr "Masuk"
|
||||
|
||||
msgid "Enter a username and password"
|
||||
msgstr "Masukkan nama pengguna dan kata sandi"
|
||||
|
||||
msgid "No logs."
|
||||
msgstr "Tidak ada log."
|
||||
|
||||
msgid "Moderation log"
|
||||
msgstr "Log moderasi"
|
||||
|
||||
msgid "Reported posts"
|
||||
msgstr "Pos yang dilaporkan"
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d report by %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d reports by %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d reports"
|
||||
msgstr "%d laporan"
|
||||
|
||||
#, php-format
|
||||
msgid "Reported by %s"
|
||||
msgstr "Dilaporkan oleh %s"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are currently no reported posts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add an account"
|
||||
msgstr "Tambahkan akun"
|
||||
|
||||
msgid "Update an account"
|
||||
msgstr "Perbarui akun"
|
||||
|
||||
msgid "Leave blank to maintain current password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Nama Pengguna"
|
||||
|
||||
msgid "Role"
|
||||
msgstr "Peran"
|
||||
|
||||
msgid "Choose a role"
|
||||
msgstr "Pilih peran"
|
||||
|
||||
msgid "Last active"
|
||||
msgstr "Terakhir aktif"
|
||||
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
msgid "update"
|
||||
msgstr "perbarui"
|
||||
|
||||
msgid "Add a ban"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Multiple IP addresses may be banned at once by separating each address with "
|
||||
"a comma."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP Address"
|
||||
msgstr "Alamat IP"
|
||||
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Kedaluwarsa(detik)"
|
||||
|
||||
msgid "never"
|
||||
msgstr "tidak pernah"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr "Opsional."
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 jam"
|
||||
|
||||
msgid "1 day"
|
||||
msgstr "1 hari"
|
||||
|
||||
msgid "2 days"
|
||||
msgstr "2 hari"
|
||||
|
||||
msgid "1 week"
|
||||
msgstr "1 pekan"
|
||||
|
||||
msgid "2 weeks"
|
||||
msgstr "2 pekan"
|
||||
|
||||
msgid "1 month"
|
||||
msgstr "1 bulan"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "Diatur pada"
|
||||
|
||||
msgid "Expires"
|
||||
msgstr "Kedaluwarsa"
|
||||
|
||||
msgid "Does not expire"
|
||||
msgstr "Tidak akan kedaluwarsa"
|
||||
|
||||
msgid "lift"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate a post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post ID"
|
||||
msgstr "ID pos"
|
||||
|
||||
msgid "Tip"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
"logged in."
|
||||
msgstr ""
|
||||
"Ketika menjelajah, Anda bisa dengan mudah memoderasi pos jika Anda telah "
|
||||
"masuk."
|
||||
|
||||
msgid ""
|
||||
"Tick the box next to a post and click \"Delete\" at the bottom of the page "
|
||||
"with a blank password."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderate %d posts"
|
||||
msgstr "Moderasi %d pos"
|
||||
|
||||
msgid "Delete all"
|
||||
msgstr "Hapus semua"
|
||||
|
||||
msgid "Ban all"
|
||||
msgstr "Blokir semua"
|
||||
|
||||
msgid "1 thread and 1 reply will be deleted."
|
||||
msgstr "1 utas dan 1 balasan akan dihapus."
|
||||
|
||||
#, php-format
|
||||
msgid "1 thread and %d replies will be deleted."
|
||||
msgstr "1 utas dan %d balasan akan dihapus."
|
||||
|
||||
#, php-format
|
||||
msgid "%d threads and 1 reply will be deleted."
|
||||
msgstr "%d utas dan 1 balasan akan dihapus."
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d threads and %2$d replies will be deleted."
|
||||
msgstr "%1$d utas dan %2$d balasan akan dihapus."
|
||||
|
||||
msgid "1 IP address will be banned."
|
||||
msgstr "1 alamat IP akan diblokir."
|
||||
|
||||
#, php-format
|
||||
msgid "%d IP addresses will be banned."
|
||||
msgstr "%d alamat IP akan diblokir."
|
||||
|
||||
#, php-format
|
||||
msgid " A ban record already exists for %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Only an administrator may ban an IP address."
|
||||
msgstr "Hanya administrator yang bisa memblokir alamat IP."
|
||||
|
||||
#, php-format
|
||||
msgid "IP address: %s"
|
||||
msgstr "Alamat IP: %s"
|
||||
|
||||
msgid "Thread"
|
||||
msgstr "Utas"
|
||||
|
||||
msgid "1 reply will be deleted."
|
||||
msgstr "1 balasan akan dihapus."
|
||||
|
||||
#, php-format
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr "%d balasan akan dihapus."
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sticky"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return this thread to a normal state."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keep this thread at the top of the board."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unlock"
|
||||
msgstr "Buka kunci"
|
||||
|
||||
msgid "Lock"
|
||||
msgstr "Kunci"
|
||||
|
||||
msgid "Allow replying to this thread."
|
||||
msgstr "Perbolehkan membalas ke utas ini."
|
||||
|
||||
msgid "Disallow replying to this thread."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderating No.%d"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action"
|
||||
msgstr "Aksi"
|
||||
|
||||
msgid "Delete thread"
|
||||
msgstr "Hapus utas"
|
||||
|
||||
msgid "Delete reply"
|
||||
msgstr "Hapus balasan"
|
||||
|
||||
msgid "Ban poster"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approve"
|
||||
msgstr "Setujui"
|
||||
|
||||
msgid "report"
|
||||
msgstr "laporan"
|
||||
|
||||
msgid "reports"
|
||||
msgstr "laporan"
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Tambah"
|
||||
|
||||
msgid "Hide until approved"
|
||||
msgstr "Sembunyikan sampai disetujui"
|
||||
|
||||
msgid "Delete and ban for 1 hour"
|
||||
msgstr "Hapus dan banned untuk 1 jam"
|
||||
|
||||
msgid "Delete and ban for 1 day"
|
||||
msgstr "Hapus dan banned untuk 1 hari"
|
||||
|
||||
msgid "Delete and ban for 2 days"
|
||||
msgstr "Hapus dan banned untuk 2 hari"
|
||||
|
||||
msgid "Delete and ban for 1 week"
|
||||
msgstr "Hapus dan banned untuk 1 minggu"
|
||||
|
||||
msgid "Delete and ban for 2 weeks"
|
||||
msgstr "Hapus dan banned untuk 2 minggu"
|
||||
|
||||
msgid "Delete and ban for 1 month"
|
||||
msgstr "Hapus dan banned untuk 1 bulan"
|
||||
|
||||
msgid "Delete and ban permanently"
|
||||
msgstr "Hapus dan banned permanen"
|
||||
|
||||
msgid "Edit"
|
||||
msgstr "Ubah"
|
||||
|
||||
msgid "thread"
|
||||
msgstr "utas"
|
||||
|
||||
msgid "threads"
|
||||
msgstr "utas"
|
||||
|
||||
msgid "ban"
|
||||
msgstr "banned"
|
||||
|
||||
msgid "bans"
|
||||
msgstr "banned"
|
||||
|
||||
msgid "More Info"
|
||||
msgstr "Info lengkap"
|
||||
|
||||
msgid "Pending posts"
|
||||
msgstr "Postingan tertunda"
|
||||
|
||||
msgid "Recent posts"
|
||||
msgstr "Posting terbaru"
|
||||
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-11-14 21:28+0000\n"
|
||||
"Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n"
|
||||
"Language-Team: Italian <https://hosted.weblate.org/projects/tinyib/tinyib/it/"
|
||||
@ -27,9 +27,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -52,20 +49,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -120,7 +103,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -234,6 +217,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -249,10 +235,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -289,6 +271,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Pubblicazione eliminata."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Spiacenti, non sembra esserci una pubblicazione con quell'ID."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -307,9 +292,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "Pubblicazione nº %d approvata."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Spiacenti, non sembra esserci una pubblicazione con quell'ID."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -325,9 +307,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -373,8 +352,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -408,11 +387,11 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "I tipi di file supportati sono %1$s e %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 per iniziare un nuovo argomento"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
@ -422,12 +401,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 per iniziare un nuovo argomento"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -479,6 +452,12 @@ msgstr "(per il post e la rimozione file)"
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Rispondi"
|
||||
|
||||
@ -519,6 +498,9 @@ msgstr "Cancella"
|
||||
msgid "Delete Post"
|
||||
msgstr "Cancella post"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -528,15 +510,15 @@ msgstr "Bloccati"
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Modera post"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "Post grezzo"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "Ricompila tutto"
|
||||
|
||||
@ -545,16 +527,13 @@ msgstr "Ricompila tutto"
|
||||
msgid "Reports"
|
||||
msgstr "Post recenti"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Stato"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Aggiorna"
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -644,10 +623,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -668,9 +650,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -689,7 +668,7 @@ msgstr "Modera un post"
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -755,8 +734,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -813,6 +791,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Spiacenti, non sembra esserci una pubblicazione con quell'ID."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
@ -867,9 +851,6 @@ msgstr "Post recenti"
|
||||
msgid "Info"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "Post grezzo"
|
||||
|
||||
#~ msgid "Post No.%d deleted."
|
||||
#~ msgstr "Pubblicazione nº %d eliminata."
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2,9 +2,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2022-02-24 16:58+0000\n"
|
||||
"Last-Translator: Lee Minhak <minarihak@gmail.com>\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-11-28 08:29+0000\n"
|
||||
"Last-Translator: hmi45 <hmi45@naver.com>\n"
|
||||
"Language-Team: Korean <https://hosted.weblate.org/projects/tinyib/tinyib/ko/"
|
||||
">\n"
|
||||
"Language: ko\n"
|
||||
@ -12,7 +12,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 4.11-dev\n"
|
||||
"X-Generator: Weblate 4.4-dev\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/html.php\n"
|
||||
@ -21,14 +21,16 @@ msgstr ""
|
||||
msgid "Click here to go back"
|
||||
msgstr "딸깍하면 돌아갑니다"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr "TINYIB_HCAPTCHA_SITE 와 TINYIB_HCAPTCHA_SECRET 를 설정해야 합니다."
|
||||
msgstr ""
|
||||
"TINYIB_RECAPTCHA_SITE 와 TINYIB_RECAPTCHA_SECRET 는 반드시 설정해야 합니다."
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr "TINYIB_RECAPTCHA_SITE 와 TINYIB_RECAPTCHA_SECRET 를 설정해야 합니다."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "TINYIB_TRIPSEED 를 설정해야 합니다."
|
||||
msgstr ""
|
||||
"TINYIB_RECAPTCHA_SITE 와 TINYIB_RECAPTCHA_SECRET 는 반드시 설정해야 합니다."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "알 수 없는 자료 뭉치 방식이 지정되었습니다."
|
||||
@ -50,20 +52,6 @@ msgstr "이 글타래는 잠겨서 답글이 허용되지 않습니다."
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "당신의 게시물은 차단된 핵심어를 포함하고 있습니다."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "핵심어"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "당신의 IP 주소(%1$s)가 %2$s까지 차단되었습니다."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "당신의 IP 주소(%s)가 영구적으로 차단되었습니다."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "사유"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr "누리망 주소 끼워 넣기와 철 올리기는 동시에 지원되지 않습니다."
|
||||
|
||||
@ -118,17 +106,19 @@ msgstr "글타래 갱신 중..."
|
||||
msgid "Updating index..."
|
||||
msgstr "색인 갱신 중..."
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "이 게시물은 삭제되었습니다"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr "이 게시물은 표시되기 전에 검토가 필요합니다"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Reporting is disabled."
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr "자동 새로 고침이 비활성화되었습니다."
|
||||
msgstr "신고가 비활성화되었습니다."
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr "신고가 비활성화되었습니다."
|
||||
@ -150,7 +140,7 @@ msgid "(enter the text below)"
|
||||
msgstr "(아래의 문자를 입력하세요)"
|
||||
|
||||
msgid "Please complete a CAPTCHA to submit your report"
|
||||
msgstr "신고하려면 CAPTCHA를 완료하십시오"
|
||||
msgstr ""
|
||||
|
||||
msgid "Submit"
|
||||
msgstr "제출"
|
||||
@ -176,24 +166,22 @@ msgid "Rebuilt board."
|
||||
msgstr "판을 재건하였습니다."
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr "접근 불가"
|
||||
msgstr ""
|
||||
|
||||
msgid "Account not found."
|
||||
msgstr "계정을 찾지 못했습니다."
|
||||
msgstr ""
|
||||
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr ""
|
||||
"TINYIB_ADMINPASS 가 설정되어 있는 동안에는 이 계정을 업데이트할 수 없습니다."
|
||||
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr ""
|
||||
"TINYIB_MODPASS 가 설정되어 있는 동안에는 이 계정을 업데이트할 수 없습니다."
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr "비밀번호가 필요합니다."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid role."
|
||||
msgstr "잘못된 역할입니다."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
@ -211,13 +199,13 @@ msgid "Changed password of account %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Super-administrator"
|
||||
msgstr "최고 관리자"
|
||||
msgstr ""
|
||||
|
||||
msgid "Administrator"
|
||||
msgstr "관리자"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderator"
|
||||
msgstr "중재자"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
@ -229,12 +217,15 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr "죄송합니다, 해당 누리망 통신 규약 주소는 이미 차단 목록에 있습니다."
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "영구적으로"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "until %s"
|
||||
msgstr "%s까지"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s"
|
||||
@ -244,10 +235,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "%s에 차단 알림말을 추가했습니다"
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -273,7 +260,7 @@ msgid "Keyword added."
|
||||
msgstr "핵심어 추가됨."
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr "해당 핵심어가 존재하지 않습니다."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
@ -282,6 +269,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr "핵심어 삭제됨."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "죄송합니다. 해당 식별자의 게시물이 없는 것 같습니다."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -294,15 +284,12 @@ msgid "Deleted %d posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approved"
|
||||
msgstr "승인됨"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "게시물 번호 %d 가 승인되었습니다."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "죄송합니다. 해당 식별자의 게시물이 없는 것 같습니다."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "붙여짐"
|
||||
|
||||
@ -316,10 +303,7 @@ msgid "Locked"
|
||||
msgstr "잠겨짐"
|
||||
|
||||
msgid "Unlocked"
|
||||
msgstr "잠금 해제됨"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "비밀번호가 일치하지 않습니다."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
@ -372,8 +356,8 @@ msgstr "올리기 된 철을 저장할 수 없습니다."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
"중복된 철이 올리기 되었습니다. 그 철이 이미 <a href=\"%s\">이곳</a>에 게시되"
|
||||
"어 있습니다."
|
||||
@ -413,11 +397,11 @@ msgstr "지원되는 철 형식은 다음과 같습니다 %s"
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "지원되는 철 형식은 %1$s 그리고 %2$s 입니다."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr ""
|
||||
msgid "Reply to"
|
||||
msgstr "답글 하기"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0은 새 글타래를 시작합니다"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
@ -427,12 +411,6 @@ msgstr "알림말 구역에 입력 한 글자는 서식이 적용되지 않은
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "줄 바꿈은 \"<br>\"로 지정해야합니다."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "답글 하기"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0은 새 글타래를 시작합니다"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "자동입력 방지 문자"
|
||||
|
||||
@ -484,6 +462,12 @@ msgstr "(게시물, 철을 삭제하는데 필요합니다)"
|
||||
msgid "Report"
|
||||
msgstr "신고"
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr "끼워 넣기:"
|
||||
|
||||
msgid "File:"
|
||||
msgstr "철:"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "답글"
|
||||
|
||||
@ -524,6 +508,9 @@ msgstr "삭제"
|
||||
msgid "Delete Post"
|
||||
msgstr "게시물 삭제"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "상태"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -533,15 +520,15 @@ msgstr "차단"
|
||||
msgid "Keywords"
|
||||
msgstr "핵심어"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "자료 뭉치 이동"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "게시물 검토"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "날 게시물"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "모두 재구축"
|
||||
|
||||
@ -550,16 +537,13 @@ msgstr "모두 재구축"
|
||||
msgid "Reports"
|
||||
msgstr "신고"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr "상태"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "갱신"
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr "자료 뭉치 이동"
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -648,11 +632,14 @@ msgstr "누리망 통신 규약 주소"
|
||||
msgid "Expire(sec)"
|
||||
msgstr "기한(초)"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "사유"
|
||||
|
||||
msgid "never"
|
||||
msgstr "절대"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr ""
|
||||
msgid "optional"
|
||||
msgstr "(선택)"
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 시간"
|
||||
@ -672,9 +659,6 @@ msgstr "2 주"
|
||||
msgid "1 month"
|
||||
msgstr "1 달"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "시작"
|
||||
|
||||
@ -693,8 +677,8 @@ msgstr "게시물 검토하기"
|
||||
msgid "Post ID"
|
||||
msgstr "게시물 식별자"
|
||||
|
||||
msgid "Tip"
|
||||
msgstr ""
|
||||
msgid "Tip:"
|
||||
msgstr "귀띔:"
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
@ -760,8 +744,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -816,6 +799,12 @@ msgstr "신고들"
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "죄송합니다. 해당 식별자의 핵심어가 없는 것 같습니다."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "핵심어"
|
||||
|
||||
msgid "Action:"
|
||||
msgstr "동작:"
|
||||
|
||||
msgid "Add"
|
||||
msgstr "추가"
|
||||
|
||||
@ -870,27 +859,6 @@ msgstr "최근 게시물들"
|
||||
msgid "Info"
|
||||
msgstr "정보"
|
||||
|
||||
#~ msgid "Sorry, there is already a ban on record for that IP address."
|
||||
#~ msgstr "죄송합니다, 해당 누리망 통신 규약 주소는 이미 차단 목록에 있습니다."
|
||||
|
||||
#~ msgid "Embed:"
|
||||
#~ msgstr "끼워 넣기:"
|
||||
|
||||
#~ msgid "File:"
|
||||
#~ msgstr "철:"
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "날 게시물"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "(선택)"
|
||||
|
||||
#~ msgid "Tip:"
|
||||
#~ msgstr "귀띔:"
|
||||
|
||||
#~ msgid "Action:"
|
||||
#~ msgstr "동작:"
|
||||
|
||||
#~ msgid "TINYIB_TRIPSEED and TINYIB_ADMINPASS must be configured."
|
||||
#~ msgstr "TINYIB_TRIPSEED 와 TINYIB_ADMINPASS 는 반드시 설정해야 합니다."
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2,8 +2,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2022-01-01 22:54+0000\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2021-04-13 21:27+0000\n"
|
||||
"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n"
|
||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/tinyib/"
|
||||
"tinyib/nb_NO/>\n"
|
||||
@ -12,7 +12,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.10.1\n"
|
||||
"X-Generator: Weblate 4.6-dev\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/html.php\n"
|
||||
@ -21,19 +21,19 @@ msgstr ""
|
||||
msgid "Click here to go back"
|
||||
msgstr "Klikk her for å gå tilbake"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid ""
|
||||
#| "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr "TINYIB_HCAPTCHA_SITE og TINYIB_HCAPTCHA_SECRET må settes opp."
|
||||
msgstr "TINYIB_RECAPTCHA_SITE og TINYIB_RECAPTCHA_SECRET må settes opp."
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr "TINYIB_RECAPTCHA_SITE og TINYIB_RECAPTCHA_SECRET må settes opp."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "TINYIB_TRIPSEED må settes opp."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Ukjent databasemodus angitt."
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Directory '%s' can not be written to. Please modify its permissions."
|
||||
msgstr "Kan ikke skrive til mappen «%s». Endre filtilgangene."
|
||||
|
||||
@ -50,20 +50,6 @@ msgstr "Svar tillates ikke i låste tråder."
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Din post inneholder et blokkert nøkkelord."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Nøkkelord"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "Din IP-addresse (%1$s) er bannlyst til %2$s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "Din IP-addresse (%s) er permanent bannlyst."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Grunn"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr "Innebygging av nettadresse og opplasting av fil samtidig støttes ikke."
|
||||
@ -79,6 +65,7 @@ msgstr "Filen er større enn %s."
|
||||
msgid "Failed to download file at specified URL."
|
||||
msgstr "Klarte ikke å laste ned filen angitt i nettadressen."
|
||||
|
||||
#, fuzzy
|
||||
msgid "Error while processing audio/video."
|
||||
msgstr "Kunne ikke behandle lyd/video."
|
||||
|
||||
@ -96,14 +83,16 @@ msgstr "innebygg en nettadresse"
|
||||
|
||||
#, fuzzy, php-format
|
||||
msgid "Please %s to start a new thread."
|
||||
msgstr "%s for å starte ny tråd."
|
||||
msgstr "%s for å starte ny tråd"
|
||||
|
||||
#, php-format
|
||||
msgid "Please enter a message and/or %s."
|
||||
msgstr "Skriv inn en melding nedenfor/eller %s."
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Please enter the CAPTCHA text."
|
||||
msgid "Please enter a message."
|
||||
msgstr "Skriv inn en melding."
|
||||
msgstr "Skriv inn CAPTCHA-teksten."
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s."
|
||||
@ -113,24 +102,26 @@ msgstr "%s."
|
||||
msgid "Your %s will be shown <b>once it has been approved</b>."
|
||||
msgstr "Din %s vil bli vist <b>når den har blit godkjent</b>."
|
||||
|
||||
#, fuzzy
|
||||
msgid "Updating thread..."
|
||||
msgstr "Oppdaterer tråd…"
|
||||
|
||||
msgid "Updating index..."
|
||||
msgstr "Oppdaterer indeks…"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Created staff post"
|
||||
msgstr "Opprettet stabspost"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "Denne posten har blitt slettet"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr "Denne posten krever moderering før den kan vises"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Reporting is disabled."
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr "Automatisk oppdatering er avskrudd."
|
||||
msgstr "Rapportering er avskrudd."
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr "Rapportering er avskrudd."
|
||||
@ -144,7 +135,7 @@ msgstr ""
|
||||
"igjen."
|
||||
|
||||
msgid "Moderators have determined that post does not break any rules."
|
||||
msgstr "Moderatorene har bestemt at din post ikke bryter noen regler."
|
||||
msgstr ""
|
||||
|
||||
msgid "You have already submitted a report for that post."
|
||||
msgstr "Du har allerede sendt inn en rapport om denne posten."
|
||||
@ -153,13 +144,15 @@ msgid "(enter the text below)"
|
||||
msgstr "(skriv inn teksten nedenfor)"
|
||||
|
||||
msgid "Please complete a CAPTCHA to submit your report"
|
||||
msgstr "Fullfør en CAPTCHA for å sende inn rapporteringen"
|
||||
msgstr ""
|
||||
|
||||
msgid "Submit"
|
||||
msgstr "Send inn"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Post deleted."
|
||||
msgid "Post reported."
|
||||
msgstr "Post rapportert."
|
||||
msgstr "Post slettet."
|
||||
|
||||
#, fuzzy
|
||||
msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
@ -182,97 +175,92 @@ msgid "Rebuilt board."
|
||||
msgstr "Oppslagstavle gjenoppbygd."
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr "Tilgang nektet"
|
||||
msgstr ""
|
||||
|
||||
msgid "Account not found."
|
||||
msgstr "Fant ikke brukeren."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr "Denne brukeren kan ikke oppdateres når TINYIB_ADMINPASS er satt."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr "Denne brukeren kan ikke oppdateres når TINYIB_MODPASS er satt."
|
||||
msgstr ""
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr "Passord kreves."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Invalid role."
|
||||
msgstr "Ugyldig rolle."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
msgstr "Lagt til bruker %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Added account"
|
||||
msgstr "La til bruker"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Renamed account %1$s as %2$s"
|
||||
msgstr "Brukernavn %1$s er byttet til %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed password of account %s"
|
||||
msgstr "Byttet passord for brukeren %s"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Super-administrator"
|
||||
msgstr "Super-administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Administrator"
|
||||
msgstr "Administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderator"
|
||||
msgstr "Moderator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr "Avskrudd"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed role of account %s to %s"
|
||||
msgstr "Byttet rolle for brukeren %s til %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Updated account"
|
||||
msgstr "Oppdatert bruker"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr "Denne IP-adressen er allerede bannlyst."
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "permanent"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "until %s"
|
||||
msgstr "til %s"
|
||||
|
||||
#, fuzzy, php-format
|
||||
msgid "Banned %s %s"
|
||||
msgstr "Bannlyste %s %s"
|
||||
|
||||
#, fuzzy, php-format
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr "Bannlyste %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "La til bannlysningsmelding for %s"
|
||||
msgid "Banned %s %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr "Bannlyst 1 IP-addresse"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %d IP addresses"
|
||||
msgstr "Bannlyste %d IP-adresser"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Lifted ban on %s"
|
||||
msgstr "Opphevet bannlysning på %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, that keyword has already been added."
|
||||
msgstr "Nøkkelord allerede lagt til."
|
||||
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Updated keyword %s"
|
||||
msgstr "Oppdaterte nøkkelordet «%s»"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword updated."
|
||||
msgstr "Nøkkelord oppdatert."
|
||||
@ -281,60 +269,62 @@ msgid "Keyword added."
|
||||
msgstr "Nøkkelord lagt til."
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr "Det nøkkelordet eksisterer ikke."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
msgstr "Slettet nøkkelordet «%s»"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Nøkkelord slettet."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Ingen post har denne ID-en."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr "Slettet %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr "Slettet én post"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr "Slettet %d poster"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approved"
|
||||
msgstr "Godkjent"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "Post nummer %d godkjent."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Ingen post har denne ID-en."
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Sticky"
|
||||
msgid "Stickied"
|
||||
msgstr "Festet"
|
||||
msgstr "Fest"
|
||||
|
||||
msgid "Unstickied"
|
||||
msgstr "Løsnet"
|
||||
msgstr ""
|
||||
|
||||
msgid "Form data was lost. Please go back and try again."
|
||||
msgstr "Skjemadata gikk tapt. Gå tilbake og prøv igjen."
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Lock"
|
||||
msgid "Locked"
|
||||
msgstr "Låst"
|
||||
msgstr "Lås"
|
||||
|
||||
msgid "Unlocked"
|
||||
msgstr "Låst opp"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Passordene stemmer ikke overens."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "Passord oppdatert"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the CAPTCHA text."
|
||||
msgstr "Skriv inn CAPTCHA-teksten."
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Incorrect CAPTCHA text entered. Please try again.<br>Click the image to "
|
||||
"retrieve a new CAPTCHA."
|
||||
@ -342,25 +332,28 @@ msgstr ""
|
||||
"Ugyldig CAPTCHA-tekst innskrevet. Prøv igjen.<br>Klikk på bildet for å hente "
|
||||
"ny CAPTCHA."
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, 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 ""
|
||||
"Forkort meldingen din, eller post den i flere deler. Din melding er %1$d "
|
||||
"tegn for lang, av maksimalt %2$d."
|
||||
"Kort ned meldingen din, eller post den i flere deler. Din melding er %1$d "
|
||||
"tegn for lang, og høyeste tillatt er %2$d."
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Invalid password."
|
||||
msgid "Invalid key."
|
||||
msgstr "Ugyldig nøkkel."
|
||||
msgstr "Ugyldig passord."
|
||||
|
||||
msgid "Invalid username or password."
|
||||
msgstr "Ugyldig brukernavn eller passord."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive (%s) in php.ini."
|
||||
msgstr "Opplastet fil overskrider upload_max_filesize-verdien (%s) i php.ini."
|
||||
|
||||
#, fuzzy
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr "Opplastet fil ble kun delvis opplastet."
|
||||
|
||||
@ -378,20 +371,20 @@ msgstr "Kunne ikke lagre opplastet fil."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
"Opplastet fil finnes allerede. Filen har allerede blitt postet <a "
|
||||
"href=\"%s\">her</a>."
|
||||
"Opplastet fil finnes allerede. Filen har allerede blitt postet <a href=\"%s"
|
||||
"\">her</a>."
|
||||
|
||||
#, fuzzy
|
||||
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 ""
|
||||
"Kunne ikke lese opplastet fil under opprettelse av miniatyrbilde. Dette "
|
||||
"skjer vanligvis fordi filendelsen ikke stemmer med hva filen faktisk "
|
||||
"inneholder."
|
||||
"skjer vanligvis fordi dette er feil filendelse for en slik fil."
|
||||
|
||||
msgid "File transfer failure. Please retry the submission."
|
||||
msgstr "Klarte ikke å overføre fil. Forsøk å utføre innsendelsen igjen."
|
||||
@ -412,7 +405,7 @@ msgstr "Kunne ikke overføre fil. Gå tilbake og prøv igjen."
|
||||
msgid "Sorry, your video appears to be corrupt."
|
||||
msgstr "Beklager, videoen din ser ut til å være skadet."
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
msgid "Supported file type is %s"
|
||||
msgstr "Støttet filtype er %s"
|
||||
|
||||
@ -420,11 +413,12 @@ msgstr "Støttet filtype er %s"
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "Støttede filtyper er %1$s og %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr "Rå HTML"
|
||||
msgid "Reply to"
|
||||
msgstr "Besvar"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "Skru på"
|
||||
#, fuzzy
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 for å starte ny tråd"
|
||||
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
@ -436,13 +430,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Linjeskift må angis med «<br>\"."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Besvar"
|
||||
|
||||
#, fuzzy
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "«0» for å starte ny tråd"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
@ -491,15 +478,25 @@ msgstr "Passord"
|
||||
msgid "(for post and file deletion)"
|
||||
msgstr "(for post- og filsletting)"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Report"
|
||||
msgstr "Rapporter"
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr "Innebygg:"
|
||||
|
||||
msgid "File:"
|
||||
msgstr "Fil:"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Svar"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Post truncated. Click Reply to view."
|
||||
msgid "Post truncated. Click Reply to view."
|
||||
msgstr "Post forkortet. Trykk «Svar» for å vise."
|
||||
|
||||
#, fuzzy
|
||||
msgid "1 post omitted. Click Reply to view."
|
||||
msgstr "Én post er ikke tatt med. Tykk «Svar» for å vise den."
|
||||
|
||||
@ -534,8 +531,11 @@ msgstr "Slett"
|
||||
msgid "Delete Post"
|
||||
msgstr "Slett post"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Brukere"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bans"
|
||||
msgstr "Bannlysninger"
|
||||
@ -543,32 +543,32 @@ msgstr "Bannlysninger"
|
||||
msgid "Keywords"
|
||||
msgstr "Nøkkelord"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Flytt database"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Moderer post"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr "Modereringslogg"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "Rå post"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Rebuild All<"
|
||||
msgid "Rebuild All"
|
||||
msgstr "Gjenoppbygg alle"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Reports"
|
||||
msgstr "Rapporter"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr "Stabspost"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Oppdater"
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr "Bytt passord"
|
||||
msgid "Migrate Database"
|
||||
msgstr "Flytt database"
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr "Logg ut"
|
||||
@ -580,24 +580,24 @@ msgid "Log In"
|
||||
msgstr "Logg inn"
|
||||
|
||||
msgid "Enter a username and password"
|
||||
msgstr "Skriv inn brukernavn og passord"
|
||||
msgstr ""
|
||||
|
||||
msgid "No logs."
|
||||
msgstr "Ingen loggføringer."
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation log"
|
||||
msgstr "Modereringslogg"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reported posts"
|
||||
msgstr "Rapporterte poster"
|
||||
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%1$d report by %2$s"
|
||||
msgstr "%1$d rapportering fra %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d reports by %2$s"
|
||||
msgstr "%1$d rapporteringer fra %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d reports"
|
||||
@ -611,34 +611,34 @@ msgid "Moderate"
|
||||
msgstr "Moderer"
|
||||
|
||||
msgid "There are currently no reported posts."
|
||||
msgstr "Det er for øyeblikket ingen rapporterte poster."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add an account"
|
||||
msgstr "Legg til en bruker"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update an account"
|
||||
msgstr "Oppdater en bruker"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leave blank to maintain current password"
|
||||
msgstr "La stå tomt for å beholde gjeldene passord"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr "Brukernavn"
|
||||
msgstr ""
|
||||
|
||||
msgid "Role"
|
||||
msgstr "Rolle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose a role"
|
||||
msgstr "Velg en rolle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Last active"
|
||||
msgstr "Sist aktiv"
|
||||
msgstr ""
|
||||
|
||||
msgid "Never"
|
||||
msgstr "Aldri"
|
||||
msgstr ""
|
||||
|
||||
msgid "update"
|
||||
msgstr "Oppdater"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add a ban"
|
||||
msgstr "Legg til en bannlysning"
|
||||
@ -647,8 +647,8 @@ msgid ""
|
||||
"Multiple IP addresses may be banned at once by separating each address with "
|
||||
"a comma."
|
||||
msgstr ""
|
||||
"Flere IP-addresser kan bannlyses samtidig ved kommainndeling av hver av dem."
|
||||
|
||||
#, fuzzy
|
||||
msgid "IP Address"
|
||||
msgstr "IP-adresse"
|
||||
|
||||
@ -656,12 +656,15 @@ msgstr "IP-adresse"
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Utløp (sek.):"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Grunn"
|
||||
|
||||
msgid "never"
|
||||
msgstr "aldri"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Optional."
|
||||
msgstr "Valgfritt."
|
||||
msgid "optional"
|
||||
msgstr "valgfritt"
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "Én time"
|
||||
@ -681,9 +684,6 @@ msgstr "To uker"
|
||||
msgid "1 month"
|
||||
msgstr "Én måned"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr "Legg til en melding til posten. Valgfritt."
|
||||
|
||||
#, fuzzy
|
||||
msgid "Set At"
|
||||
msgstr "Satt"
|
||||
@ -706,9 +706,8 @@ msgstr "Moderer post"
|
||||
msgid "Post ID"
|
||||
msgstr "Post-ID"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Tip"
|
||||
msgstr "Tips"
|
||||
msgid "Tip:"
|
||||
msgstr "Tips:"
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
@ -726,39 +725,40 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderate %d posts"
|
||||
msgstr "Moderer %d poster"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete all"
|
||||
msgstr "Slett alle"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban all"
|
||||
msgstr "Bannlys alle"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 thread and 1 reply will be deleted."
|
||||
msgstr "Én tråd og ett svar vil bli slettet."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "1 thread and %d replies will be deleted."
|
||||
msgstr "Én tråd og %d svar vil bli slettet."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d threads and 1 reply will be deleted."
|
||||
msgstr "%d tråder og 1 svar vil bli slettet."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d threads and %2$d replies will be deleted."
|
||||
msgstr "%1$d tråder og %2$d svar vil bli slettet."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 IP address will be banned."
|
||||
msgstr "Én IP-addresse vil bli bannlyst."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d IP addresses will be banned."
|
||||
msgstr "%d IP-addresser vil bli bannlyst."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
#, fuzzy, php-format
|
||||
#| msgid "Ban record added for %s"
|
||||
msgid " A ban record already exists for %s"
|
||||
msgstr " %s er allerede bannlyst"
|
||||
msgstr "Bannlysning av %s utført"
|
||||
|
||||
msgid "Only an administrator may ban an IP address."
|
||||
msgstr "Kun en administrator kan bannlyse en IP-adresse."
|
||||
@ -771,14 +771,13 @@ msgid "Thread"
|
||||
msgstr "Tråd"
|
||||
|
||||
msgid "1 reply will be deleted."
|
||||
msgstr "Ett svar vil bli slettet."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr "%d svar vil bli slettet."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -816,7 +815,7 @@ msgid "Delete thread"
|
||||
msgstr "Slett tråd"
|
||||
|
||||
msgid "Delete reply"
|
||||
msgstr "Slett svar"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban poster"
|
||||
msgstr "Bannlyst poster"
|
||||
@ -830,14 +829,24 @@ msgstr "rapport"
|
||||
msgid "reports"
|
||||
msgstr "rapporter"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Ingen nøkkelord har denne ID-en."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Nøkkelord"
|
||||
|
||||
#, fuzzy
|
||||
#| msgid "Action"
|
||||
msgid "Action:"
|
||||
msgstr "Handling"
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Legg til"
|
||||
|
||||
msgid "Hide until approved"
|
||||
msgstr "Skjul til godkjent"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 hour"
|
||||
msgstr "Slett og bannlys i én time"
|
||||
@ -887,33 +896,6 @@ msgstr "Nylige poster"
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#~ msgid "Belongs to "
|
||||
#~ msgstr "Tilhører "
|
||||
|
||||
#~ msgid "Sorry, there is already a ban on record for that IP address."
|
||||
#~ msgstr "Denne IP-adressen er allerede bannlyst."
|
||||
|
||||
#~ msgid "Embed:"
|
||||
#~ msgstr "Innebygg:"
|
||||
|
||||
#~ msgid "File:"
|
||||
#~ msgstr "Fil:"
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "Rå post"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "valgfritt"
|
||||
|
||||
#~ msgid "Tip:"
|
||||
#~ msgstr "Tips:"
|
||||
|
||||
#, fuzzy
|
||||
#~| msgid "Action"
|
||||
#~ msgid "Action:"
|
||||
#~ msgstr "Handling"
|
||||
|
||||
#~ msgid "TINYIB_TRIPSEED and TINYIB_ADMINPASS must be configured."
|
||||
#~ msgstr "TINYIB_TRIPSEED og TINYIB_ADMINPASS må settes opp."
|
||||
|
||||
|
@ -2,17 +2,17 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2023-03-10 21:40+0000\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2021-05-12 11:33+0000\n"
|
||||
"Last-Translator: Domokun <domokun@asdasd.nl>\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/tinyib/tinyib/nl/"
|
||||
">\n"
|
||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/tinyib/tinyib/nl/>"
|
||||
"\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.16.2-dev\n"
|
||||
"X-Generator: Weblate 4.7-dev\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/html.php\n"
|
||||
@ -30,9 +30,6 @@ msgstr ""
|
||||
"TINYIB_RECAPTCHA_SITE en TINYIB_RECAPTCHA_SECRET moeten worden "
|
||||
"geconfigureerd."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "TINYIB_TRIPSEED moet worden geconfigureerd."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Onbekende databasemodus gespecificeerd."
|
||||
|
||||
@ -56,20 +53,6 @@ msgstr "Reacties zijn niet toegestaan op vergrendelde threads."
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Je post bevat een geblokkeerd trefwoord."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Trefwoord"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "Je IP-adres (%1$s) is verbannen tot %2$s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "Je IP-adres (%s) is permanent verbannen."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Reden"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
"Het is niet mogelijk zowel een URL te embedden als een bestand te uploaden."
|
||||
@ -125,8 +108,8 @@ msgstr "Thread updaten..."
|
||||
msgid "Updating index..."
|
||||
msgstr "Index updaten..."
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr "Stafpost aangemaakt"
|
||||
msgid "Created raw post"
|
||||
msgstr "Ruwe post gemaakt"
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "Deze post is verwijderd"
|
||||
@ -239,6 +222,9 @@ msgstr "Rol van account %s veranderd naar %s"
|
||||
msgid "Updated account"
|
||||
msgstr "Account bijgewerkt"
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr "Sorry, er is al een ban vastgelegd voor dat IP-adres."
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "permanent"
|
||||
|
||||
@ -254,10 +240,6 @@ msgstr "%s %s verbannen"
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr "%s %s: %s verbannen"
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "Banopmerking toegevoegd aan %s"
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr "1 IP-adres verbannen"
|
||||
|
||||
@ -292,6 +274,9 @@ msgstr "Trefwoord %s verwijderd"
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Trefwoord verwijderd."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Sorry, er is geen post met dat ID."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr "%s verwijderd"
|
||||
@ -310,9 +295,6 @@ msgstr "Goedgekeurd"
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "Postnr.%d goedgekeurd."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Sorry, er is geen post met dat ID."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "Vastgeplakt"
|
||||
|
||||
@ -329,9 +311,6 @@ msgstr "Vergrendeld"
|
||||
msgid "Unlocked"
|
||||
msgstr "Ontgrendeld"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Wachtwoorden komen niet overeen."
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "Wachtwoord bijgewerkt"
|
||||
|
||||
@ -383,8 +362,8 @@ msgstr "Kan het geüploade bestand niet opslaan."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
"Dubbel bestand geüpload. Dat bestand is <a href=\"%s\">hier</a> al gepost."
|
||||
|
||||
@ -424,11 +403,11 @@ msgstr "Ondersteund bestandstype is %s"
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "Ondersteunde bestandstypen zijn %1$s en %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr "Ruwe HTML"
|
||||
msgid "Reply to"
|
||||
msgstr "Antwoord aan"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "Inschakelen"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 om een nieuwe thread te starten"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
@ -440,12 +419,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Regelafbrekingen moeten worden opgegeven met \"<br>\"."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Antwoord aan"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "0 om een nieuwe thread te starten"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
@ -499,6 +472,12 @@ msgstr "(voor verwijdering van post en bestand)"
|
||||
msgid "Report"
|
||||
msgstr "Meld"
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr "Embed:"
|
||||
|
||||
msgid "File:"
|
||||
msgstr "Bestand:"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Beantwoorden"
|
||||
|
||||
@ -539,6 +518,9 @@ msgstr "Verwijder"
|
||||
msgid "Delete Post"
|
||||
msgstr "Verwijder post"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Accounts"
|
||||
|
||||
@ -548,31 +530,28 @@ msgstr "Bans"
|
||||
msgid "Keywords"
|
||||
msgstr "Trefwoorden"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migreer database"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Modereer post"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr "Moderatielogboek"
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "Ruwe post"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "Herbouw alles"
|
||||
|
||||
msgid "Reports"
|
||||
msgstr "Meldingen"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr "Stafpost"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Status"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Update"
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr "Migreer database"
|
||||
|
||||
msgid "Change password"
|
||||
msgstr "Verander wachtwoord"
|
||||
|
||||
msgid "Log Out"
|
||||
@ -661,11 +640,14 @@ msgstr "IP-adres"
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Vervallen(sec)"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Reden"
|
||||
|
||||
msgid "never"
|
||||
msgstr "nooit"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr "Optioneel."
|
||||
msgid "optional"
|
||||
msgstr "optioneel"
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 uur"
|
||||
@ -685,9 +667,6 @@ msgstr "2 weken"
|
||||
msgid "1 month"
|
||||
msgstr "1 maand"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr "Voeg een opmerking toe aan de post. Optioneel."
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "Ingesteld op"
|
||||
|
||||
@ -706,8 +685,8 @@ msgstr "Modereer een post"
|
||||
msgid "Post ID"
|
||||
msgstr "Post ID"
|
||||
|
||||
msgid "Tip"
|
||||
msgstr "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr "Tip:"
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
@ -776,9 +755,8 @@ msgstr "1 antwoord wordt verwijderd."
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr "%d antwoorden worden verwijderd."
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr "Hoort bij %s"
|
||||
msgid "Belongs to "
|
||||
msgstr "Behoort aan "
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr "Ontplak"
|
||||
@ -832,6 +810,12 @@ msgstr "meldingen"
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Sorry, er is geen trefwoord met dat ID."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Trefwoord"
|
||||
|
||||
msgid "Action:"
|
||||
msgstr "Actie:"
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Voeg toe"
|
||||
|
||||
@ -886,36 +870,6 @@ msgstr "Recente posts"
|
||||
msgid "Info"
|
||||
msgstr "Info"
|
||||
|
||||
#~ msgid "Belongs to "
|
||||
#~ msgstr "Behoort aan "
|
||||
|
||||
#~ msgid "Created raw post"
|
||||
#~ msgstr "Ruwe post gemaakt"
|
||||
|
||||
#~ msgid "Sorry, there is already a ban on record for that IP address."
|
||||
#~ msgstr "Sorry, er is al een ban vastgelegd voor dat IP-adres."
|
||||
|
||||
#~ msgid "Embed:"
|
||||
#~ msgstr "Embed:"
|
||||
|
||||
#~ msgid "File:"
|
||||
#~ msgstr "Bestand:"
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "Ruwe post"
|
||||
|
||||
#~ msgid "Change password"
|
||||
#~ msgstr "Verander wachtwoord"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "optioneel"
|
||||
|
||||
#~ msgid "Tip:"
|
||||
#~ msgstr "Tip:"
|
||||
|
||||
#~ msgid "Action:"
|
||||
#~ msgstr "Actie:"
|
||||
|
||||
#~ msgid "TINYIB_TRIPSEED and TINYIB_ADMINPASS must be configured."
|
||||
#~ msgstr "TINYIB_TRIPSEED en TINYIB_ADMINPASS moeten worden geconfigureerd."
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,856 +0,0 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2021-12-07 09:51+0000\n"
|
||||
"Last-Translator: methiu sigma <methiumeh@gmail.com>\n"
|
||||
"Language-Team: Romanian <https://hosted.weblate.org/projects/tinyib/tinyib/"
|
||||
"ro/>\n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||
"20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 4.10-dev\n"
|
||||
"X-Poedit-Basepath: ../..\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
"X-Poedit-SearchPath-1: inc/functions.php\n"
|
||||
"X-Poedit-SearchPath-2: inc/html.php\n"
|
||||
|
||||
msgid "Click here to go back"
|
||||
msgstr "Apăsați aici pentru a reveni"
|
||||
|
||||
msgid "TINYIB_HCAPTCHA_SITE and TINYIB_HCAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Baza de date aleasă este necunoscută."
|
||||
|
||||
#, php-format
|
||||
msgid "Directory '%s' can not be written to. Please modify its permissions."
|
||||
msgstr ""
|
||||
"Nu se poate scrie in locația '%s' . Vă rugăm să modificați permisiunile."
|
||||
|
||||
msgid "Posting is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
"Momentan, postarea este dezactivată.<br>Încercați din nou peste câteva "
|
||||
"momente."
|
||||
|
||||
msgid "Invalid parent thread ID supplied, unable to create post."
|
||||
msgstr ""
|
||||
|
||||
msgid "Replies are not allowed to locked threads."
|
||||
msgstr "Comentariile nu sunt permise la thread-urile blocate."
|
||||
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Postarea ta conține un cuvânt blocat."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Cuvânt cheie"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "Adresa dvs. IP (%1$s) este interzisă până la %2$s."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "Adresa dvs. IP (%s) este interzisă permanent."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Motiv"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
"Încorporarea unei adrese URL și încărcarea unui fișier în același timp nu "
|
||||
"este suportată."
|
||||
|
||||
#, php-format
|
||||
msgid "Invalid embed URL. Only %s URLs are supported."
|
||||
msgstr ""
|
||||
"Adresă URL de încorporare nevalidă. Numai %s adrese URL sunt acceptate."
|
||||
|
||||
#, php-format
|
||||
msgid "That file is larger than %s."
|
||||
msgstr "Fișierul este mai mare decât %s."
|
||||
|
||||
msgid "Failed to download file at specified URL."
|
||||
msgstr ""
|
||||
|
||||
msgid "Error while processing audio/video."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not create thumbnail."
|
||||
msgstr ""
|
||||
|
||||
msgid "upload a file or embed a URL"
|
||||
msgstr ""
|
||||
|
||||
msgid "upload a file"
|
||||
msgstr ""
|
||||
|
||||
msgid "embed a URL"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s to start a new thread."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Please enter a message and/or %s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter a message."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Please %s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your %s will be shown <b>once it has been approved</b>."
|
||||
msgstr ""
|
||||
|
||||
msgid "Updating thread..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post requires moderation before it can be displayed"
|
||||
msgstr ""
|
||||
|
||||
msgid "Automatic refreshing is disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reporting is disabled."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Sorry, an invalid post identifier was sent. Please go back, refresh the "
|
||||
"page, and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderators have determined that post does not break any rules."
|
||||
msgstr ""
|
||||
|
||||
msgid "You have already submitted a report for that post."
|
||||
msgstr ""
|
||||
|
||||
msgid "(enter the text below)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please complete a CAPTCHA to submit your report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Submit"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post reported."
|
||||
msgstr ""
|
||||
|
||||
msgid "Tick the box next to a post and click \"Delete\" to delete it."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Post deletion is currently disabled.<br>Please try again in a few moments."
|
||||
msgstr ""
|
||||
|
||||
msgid "Post deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid password."
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuilt board."
|
||||
msgstr ""
|
||||
|
||||
msgid "Access denied"
|
||||
msgstr ""
|
||||
|
||||
msgid "Account not found."
|
||||
msgstr ""
|
||||
|
||||
msgid "This account may not be updated while TINYIB_ADMINPASS is set."
|
||||
msgstr ""
|
||||
|
||||
msgid "This account may not be updated while TINYIB_MODPASS is set."
|
||||
msgstr ""
|
||||
|
||||
msgid "A password is required."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid role."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added account %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Added account"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Renamed account %1$s as %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed password of account %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Super-administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Administrator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderator"
|
||||
msgstr ""
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Changed role of account %s to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "until %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Banned %d IP addresses"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Lifted ban on %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, that keyword has already been added."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Updated keyword %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword updated."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword added."
|
||||
msgstr ""
|
||||
|
||||
msgid "That keyword does not exist."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted keyword %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Deleted 1 post"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %d posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approved"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unstickied"
|
||||
msgstr ""
|
||||
|
||||
msgid "Form data was lost. Please go back and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Locked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
msgid "Please enter the CAPTCHA text."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Incorrect CAPTCHA text entered. Please try again.<br>Click the image to "
|
||||
"retrieve a new CAPTCHA."
|
||||
msgstr ""
|
||||
|
||||
#, 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 ""
|
||||
|
||||
msgid "Invalid key."
|
||||
msgstr ""
|
||||
|
||||
msgid "Invalid username or password."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"The uploaded file exceeds the upload_max_filesize directive (%s) in php.ini."
|
||||
msgstr ""
|
||||
|
||||
msgid "The uploaded file was only partially uploaded."
|
||||
msgstr ""
|
||||
|
||||
msgid "No file was uploaded."
|
||||
msgstr ""
|
||||
|
||||
msgid "Missing a temporary folder."
|
||||
msgstr ""
|
||||
|
||||
msgid "Failed to write file to disk"
|
||||
msgstr ""
|
||||
|
||||
msgid "Unable to save the uploaded file."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
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 ""
|
||||
|
||||
msgid "File transfer failure. Please retry the submission."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Failed to read the MIME type and size of the uploaded file. Please retry the "
|
||||
"submission."
|
||||
msgstr ""
|
||||
|
||||
msgid "Could not copy uploaded file."
|
||||
msgstr ""
|
||||
|
||||
msgid "File transfer failure. Please go back and try again."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, your video appears to be corrupt."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file type is %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
"applied."
|
||||
msgstr ""
|
||||
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Maximum file size allowed is %s."
|
||||
msgstr ""
|
||||
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed"
|
||||
msgstr ""
|
||||
|
||||
msgid "(paste a YouTube URL)"
|
||||
msgstr ""
|
||||
|
||||
msgid "All posts are moderated before being shown."
|
||||
msgstr ""
|
||||
|
||||
msgid "All posts with a file attached are moderated before being shown."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Images greater than %s will be thumbnailed."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Currently %s unique user posts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
msgid "E-mail"
|
||||
msgstr ""
|
||||
|
||||
msgid "Subject"
|
||||
msgstr ""
|
||||
|
||||
msgid "Message"
|
||||
msgstr ""
|
||||
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "(for post and file deletion)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post truncated. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 post omitted. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d posts omitted. Click Reply to view."
|
||||
msgstr ""
|
||||
|
||||
msgid "Catalog"
|
||||
msgstr ""
|
||||
|
||||
msgid "Manage"
|
||||
msgstr ""
|
||||
|
||||
msgid "Previous"
|
||||
msgstr ""
|
||||
|
||||
msgid "Next"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return"
|
||||
msgstr ""
|
||||
|
||||
msgid "Posting mode: Reply"
|
||||
msgstr ""
|
||||
|
||||
msgid "Style"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Bans"
|
||||
msgstr ""
|
||||
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr ""
|
||||
|
||||
msgid "Manage mode"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log In"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enter a username and password"
|
||||
msgstr ""
|
||||
|
||||
msgid "No logs."
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reported posts"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d report by %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d reports by %2$s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d reports"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Reported by %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "There are currently no reported posts."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update an account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Leave blank to maintain current password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
msgid "Choose a role"
|
||||
msgstr ""
|
||||
|
||||
msgid "Last active"
|
||||
msgstr ""
|
||||
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
|
||||
msgid "update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add a ban"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Multiple IP addresses may be banned at once by separating each address with "
|
||||
"a comma."
|
||||
msgstr ""
|
||||
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 day"
|
||||
msgstr ""
|
||||
|
||||
msgid "2 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 week"
|
||||
msgstr ""
|
||||
|
||||
msgid "2 weeks"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
msgid "Expires"
|
||||
msgstr ""
|
||||
|
||||
msgid "Does not expire"
|
||||
msgstr ""
|
||||
|
||||
msgid "lift"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate a post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
"logged in."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Tick the box next to a post and click \"Delete\" at the bottom of the page "
|
||||
"with a blank password."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderate %d posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete all"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban all"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 thread and 1 reply will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "1 thread and %d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d threads and 1 reply will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%1$d threads and %2$d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "1 IP address will be banned."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d IP addresses will be banned."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid " A ban record already exists for %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Only an administrator may ban an IP address."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "IP address: %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 reply will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sticky"
|
||||
msgstr ""
|
||||
|
||||
msgid "Return this thread to a normal state."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keep this thread at the top of the board."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unlock"
|
||||
msgstr ""
|
||||
|
||||
msgid "Lock"
|
||||
msgstr ""
|
||||
|
||||
msgid "Allow replying to this thread."
|
||||
msgstr ""
|
||||
|
||||
msgid "Disallow replying to this thread."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Moderating No.%d"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete reply"
|
||||
msgstr ""
|
||||
|
||||
msgid "Ban poster"
|
||||
msgstr ""
|
||||
|
||||
msgid "Approve"
|
||||
msgstr ""
|
||||
|
||||
msgid "report"
|
||||
msgstr ""
|
||||
|
||||
msgid "reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
msgid "Hide until approved"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 hour"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 day"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 days"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 week"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 2 weeks"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban for 1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Delete and ban permanently"
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
|
||||
msgid "thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "threads"
|
||||
msgstr ""
|
||||
|
||||
msgid "ban"
|
||||
msgstr ""
|
||||
|
||||
msgid "bans"
|
||||
msgstr ""
|
||||
|
||||
msgid "More Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Pending posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Recent posts"
|
||||
msgstr ""
|
||||
|
||||
msgid "Info"
|
||||
msgstr ""
|
File diff suppressed because it is too large
Load Diff
@ -2,7 +2,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2021-03-28 16:52+0000\n"
|
||||
"Last-Translator: granit brovina <ibmhp1955@gmail.com>\n"
|
||||
"Language-Team: Albanian <https://hosted.weblate.org/projects/tinyib/tinyib/"
|
||||
@ -28,9 +28,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Zgjedhje e menyres se databazes e panjohur."
|
||||
|
||||
@ -50,20 +47,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -118,7 +101,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -224,6 +207,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -239,10 +225,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -277,6 +259,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -295,9 +280,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -313,9 +295,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -361,8 +340,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -396,10 +375,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -410,12 +389,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -467,6 +440,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -507,6 +486,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -516,31 +498,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -627,10 +606,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -651,9 +633,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -672,7 +651,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -738,8 +717,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -794,6 +772,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -25,9 +25,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -47,20 +44,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -115,7 +98,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -221,6 +204,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -236,10 +222,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -274,6 +256,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -292,9 +277,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -310,9 +292,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -358,8 +337,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -393,10 +372,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -407,12 +386,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -464,6 +437,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -504,6 +483,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -513,31 +495,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -624,10 +603,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -648,9 +630,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -669,7 +648,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -735,8 +714,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -791,6 +769,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
@ -2,9 +2,9 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: trevor@rocketnine.space\n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"PO-Revision-Date: 2023-01-06 18:49+0000\n"
|
||||
"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2021-05-12 11:33+0000\n"
|
||||
"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n"
|
||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/tinyib/tinyib/tr/"
|
||||
">\n"
|
||||
"Language: tr\n"
|
||||
@ -12,7 +12,7 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.15.1-dev\n"
|
||||
"X-Generator: Weblate 4.7-dev\n"
|
||||
"X-Poedit-Basepath: ../..\n"
|
||||
"X-Poedit-KeywordsList: __\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
@ -28,9 +28,6 @@ msgstr "TINYIB_HCAPTCHA_SITE ve TINYIB_HCAPTCHA_SECRET yapılandırılmalıdır
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr "TINYIB_RECAPTCHA_SITE ve TINYIB_RECAPTCHA_SECRET yapılandırılmalıdır."
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr "TINYIB_TRIPSEED yapılandırılmalıdır."
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr "Bilinmeyen veri tabanı modu belirtildi."
|
||||
|
||||
@ -51,20 +48,6 @@ msgstr "Kilitli mesaj dizilerini yanıtlamaya izin verilmiyor."
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr "Gönderiniz engellenen bir anahtar sözcük içeriyor."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Anahtar sözcük"
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr "IP adresiniz (%1$s), %2$s tarihine kadar yasaklandı."
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr "IP adresiniz (%s) kalıcı olarak yasaklandı."
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Neden"
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr "Aynı anda bir URL yerleştirmek ve bir dosya yüklemek desteklenmiyor."
|
||||
|
||||
@ -119,8 +102,8 @@ msgstr "Mesaj dizisi güncelleniyor..."
|
||||
msgid "Updating index..."
|
||||
msgstr "İndeks güncelleniyor..."
|
||||
|
||||
msgid "Created staff post"
|
||||
msgstr "Personel gönderisi oluşturuldu"
|
||||
msgid "Created raw post"
|
||||
msgstr "Ham gönderi oluşturuldu"
|
||||
|
||||
msgid "This post has been deleted"
|
||||
msgstr "Bu gönderi silindi"
|
||||
@ -231,6 +214,9 @@ msgstr "%s hesabının rolü %s olarak değiştirildi"
|
||||
msgid "Updated account"
|
||||
msgstr "Hesap güncellendi"
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr "Üzgünüm, bu IP adresi için zaten bir yasak kaydı var."
|
||||
|
||||
msgid "permanently"
|
||||
msgstr "kalıcı olarak"
|
||||
|
||||
@ -246,10 +232,6 @@ msgstr "Yasaklandı %s %s"
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr "Yasaklandı %s %s: %s"
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr "%s'e yasaklama mesajı eklendi"
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr "1 IP adresi yasaklandı"
|
||||
|
||||
@ -284,6 +266,9 @@ msgstr "%s anahtar sözcüğü silindi"
|
||||
msgid "Keyword deleted."
|
||||
msgstr "Anahtar sözcük silindi."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Üzgünüm, bu kimliğe sahip bir gönderi görünmüyor."
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr "%s silindi"
|
||||
@ -302,9 +287,6 @@ msgstr "Onaylandı"
|
||||
msgid "Post No.%d approved."
|
||||
msgstr "%d numaralı gönderi onaylandı."
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr "Üzgünüm, bu kimliğe sahip bir gönderi görünmüyor."
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr "Sabitlendi"
|
||||
|
||||
@ -320,9 +302,6 @@ msgstr "Kilitlendi"
|
||||
msgid "Unlocked"
|
||||
msgstr "Kilidi kaldırıldı"
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr "Parolalar eşleşmiyor."
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr "Parola güncellendi"
|
||||
|
||||
@ -374,8 +353,8 @@ msgstr "Yüklenen dosya kaydedilemedi."
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
"Yinelenen dosya yüklendi. Bu dosya zaten <a href=\"%s\">burada</a> "
|
||||
"gönderildi."
|
||||
@ -415,11 +394,11 @@ msgstr "Desteklenen dosya türü %s"
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr "Desteklenen dosya türleri %1$s ve %2$s."
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgstr "Ham HTML"
|
||||
msgid "Reply to"
|
||||
msgstr "Yanıtla"
|
||||
|
||||
msgid "Enable"
|
||||
msgstr "Etkinleştir"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "Yeni bir mesaj dizisi başlatmak için 0"
|
||||
|
||||
msgid ""
|
||||
"Text entered in the Message field will be posted as is with no formatting "
|
||||
@ -431,12 +410,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr "Satır sonları \"<br>\" ile belirtilmelidir."
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr "Yanıtla"
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr "Yeni bir mesaj dizisi başlatmak için 0"
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr "CAPTCHA"
|
||||
|
||||
@ -488,6 +461,12 @@ msgstr "(gönderi ve dosya silme için)"
|
||||
msgid "Report"
|
||||
msgstr "Bildir"
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr "Yerleştir:"
|
||||
|
||||
msgid "File:"
|
||||
msgstr "Dosya:"
|
||||
|
||||
msgid "Reply"
|
||||
msgstr "Yanıtla"
|
||||
|
||||
@ -530,6 +509,9 @@ msgstr "Sil"
|
||||
msgid "Delete Post"
|
||||
msgstr "Gönderiyi Sil"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Durum"
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr "Hesaplar"
|
||||
|
||||
@ -539,32 +521,29 @@ msgstr "Yasaklamalar"
|
||||
msgid "Keywords"
|
||||
msgstr "Anahtar Sözcükler"
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr "Veri Tabanını Taşı"
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr "Gönderiyi Denetle"
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr "Denetleme Günlüğü"
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr "Ham Gönderi"
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr "Tümünü Yeniden Oluştur"
|
||||
|
||||
msgid "Reports"
|
||||
msgstr "Bildiriler"
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr "Personel Gönderisi"
|
||||
|
||||
msgid "Status"
|
||||
msgstr "Durum"
|
||||
|
||||
msgid "Update"
|
||||
msgstr "Güncelle"
|
||||
|
||||
msgid "Change Password"
|
||||
msgstr "Parola Değiştir"
|
||||
msgid "Migrate Database"
|
||||
msgstr "Veri Tabanını Taşı"
|
||||
|
||||
msgid "Change password"
|
||||
msgstr "Parola değiştir"
|
||||
|
||||
msgid "Log Out"
|
||||
msgstr "Oturumu Kapat"
|
||||
@ -651,11 +630,14 @@ msgstr "IP Adresi"
|
||||
msgid "Expire(sec)"
|
||||
msgstr "Sona erme (sn)"
|
||||
|
||||
msgid "Reason"
|
||||
msgstr "Neden"
|
||||
|
||||
msgid "never"
|
||||
msgstr "asla"
|
||||
|
||||
msgid "Optional."
|
||||
msgstr "İsteğe bağlı."
|
||||
msgid "optional"
|
||||
msgstr "isteğe bağlı"
|
||||
|
||||
msgid "1 hour"
|
||||
msgstr "1 saat"
|
||||
@ -675,9 +657,6 @@ msgstr "2 hafta"
|
||||
msgid "1 month"
|
||||
msgstr "1 ay"
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr "Gönderiye bir mesaj ekleyin. İsteğe bağlı."
|
||||
|
||||
msgid "Set At"
|
||||
msgstr "Ekleme Tarihi"
|
||||
|
||||
@ -696,8 +675,8 @@ msgstr "Gönderi denetle"
|
||||
msgid "Post ID"
|
||||
msgstr "Gönderi kimliği"
|
||||
|
||||
msgid "Tip"
|
||||
msgstr "İpucu"
|
||||
msgid "Tip:"
|
||||
msgstr "İpucu:"
|
||||
|
||||
msgid ""
|
||||
"While browsing the image board, you can easily moderate a post if you are "
|
||||
@ -766,9 +745,8 @@ msgstr "1 yanıt silinecek."
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr "%d yanıt silinecek."
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgstr "%s'e ait"
|
||||
msgid "Belongs to "
|
||||
msgstr "Ait olduğu yer "
|
||||
|
||||
msgid "Un-sticky"
|
||||
msgstr "Sabitlemeyi kaldır"
|
||||
@ -822,6 +800,12 @@ msgstr "bildiri"
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr "Üzgünüm, bu kimliğe sahip bir anahtar sözcük görünmüyor."
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr "Anahtar sözcük"
|
||||
|
||||
msgid "Action:"
|
||||
msgstr "Eylem:"
|
||||
|
||||
msgid "Add"
|
||||
msgstr "Ekle"
|
||||
|
||||
@ -876,36 +860,6 @@ msgstr "Son gönderiler"
|
||||
msgid "Info"
|
||||
msgstr "Bilgi"
|
||||
|
||||
#~ msgid "Belongs to "
|
||||
#~ msgstr "Ait olduğu yer "
|
||||
|
||||
#~ msgid "Created raw post"
|
||||
#~ msgstr "Ham gönderi oluşturuldu"
|
||||
|
||||
#~ msgid "Sorry, there is already a ban on record for that IP address."
|
||||
#~ msgstr "Üzgünüm, bu IP adresi için zaten bir yasak kaydı var."
|
||||
|
||||
#~ msgid "Embed:"
|
||||
#~ msgstr "Yerleştir:"
|
||||
|
||||
#~ msgid "File:"
|
||||
#~ msgstr "Dosya:"
|
||||
|
||||
#~ msgid "Raw Post"
|
||||
#~ msgstr "Ham Gönderi"
|
||||
|
||||
#~ msgid "Change password"
|
||||
#~ msgstr "Parola değiştir"
|
||||
|
||||
#~ msgid "optional"
|
||||
#~ msgstr "isteğe bağlı"
|
||||
|
||||
#~ msgid "Tip:"
|
||||
#~ msgstr "İpucu:"
|
||||
|
||||
#~ msgid "Action:"
|
||||
#~ msgstr "Eylem:"
|
||||
|
||||
#~ msgid "TINYIB_TRIPSEED and TINYIB_ADMINPASS must be configured."
|
||||
#~ msgstr "TINYIB_TRIPSEED ve TINYIB_ADMINPASS yapılandırılmalıdır."
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: 2023-01-05 10:20-0800\n"
|
||||
"POT-Creation-Date: 2021-05-10 23:34-0700\n"
|
||||
"PO-Revision-Date: 2020-08-28 16:18-0700\n"
|
||||
"Last-Translator: Automatically generated\n"
|
||||
"Language-Team: none\n"
|
||||
@ -9,8 +9,8 @@ msgstr ""
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||
"X-Generator: Poedit 2.3.1\n"
|
||||
"X-Poedit-Basepath: ..\n"
|
||||
"X-Poedit-SearchPath-0: imgboard.php\n"
|
||||
@ -26,9 +26,6 @@ msgstr ""
|
||||
msgid "TINYIB_RECAPTCHA_SITE and TINYIB_RECAPTCHA_SECRET must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "TINYIB_TRIPSEED must be configured."
|
||||
msgstr ""
|
||||
|
||||
msgid "Unknown database mode specified."
|
||||
msgstr ""
|
||||
|
||||
@ -48,20 +45,6 @@ msgstr ""
|
||||
msgid "Your post contains a blocked keyword."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%1$s) is banned until %2$s."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Your IP address (%s) is permanently banned."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embedding a URL and uploading a file at the same time is not supported."
|
||||
msgstr ""
|
||||
|
||||
@ -116,7 +99,7 @@ msgstr ""
|
||||
msgid "Updating index..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Created staff post"
|
||||
msgid "Created raw post"
|
||||
msgstr ""
|
||||
|
||||
msgid "This post has been deleted"
|
||||
@ -222,6 +205,9 @@ msgstr ""
|
||||
msgid "Updated account"
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there is already a ban on record for that IP address."
|
||||
msgstr ""
|
||||
|
||||
msgid "permanently"
|
||||
msgstr ""
|
||||
|
||||
@ -237,10 +223,6 @@ msgstr ""
|
||||
msgid "Banned %s %s: %s"
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Added ban message to %s"
|
||||
msgstr ""
|
||||
|
||||
msgid "Banned 1 IP address"
|
||||
msgstr ""
|
||||
|
||||
@ -275,6 +257,9 @@ msgstr ""
|
||||
msgid "Keyword deleted."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Deleted %s"
|
||||
msgstr ""
|
||||
@ -293,9 +278,6 @@ msgstr ""
|
||||
msgid "Post No.%d approved."
|
||||
msgstr ""
|
||||
|
||||
msgid "Sorry, there doesn't appear to be a post with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Stickied"
|
||||
msgstr ""
|
||||
|
||||
@ -311,9 +293,6 @@ msgstr ""
|
||||
msgid "Unlocked"
|
||||
msgstr ""
|
||||
|
||||
msgid "Passwords do not match."
|
||||
msgstr ""
|
||||
|
||||
msgid "Password updated"
|
||||
msgstr ""
|
||||
|
||||
@ -359,8 +338,8 @@ msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Duplicate file uploaded. That file has already been posted <a "
|
||||
"href=\"%s\">here</a>."
|
||||
"Duplicate file uploaded. That file has already been posted <a href=\"%s"
|
||||
"\">here</a>."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -394,10 +373,10 @@ msgstr ""
|
||||
msgid "Supported file types are %1$s and %2$s."
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw HTML"
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "Enable"
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -408,12 +387,6 @@ msgstr ""
|
||||
msgid "Line-breaks must be specified with \"<br>\"."
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply to"
|
||||
msgstr ""
|
||||
|
||||
msgid "0 to start a new thread"
|
||||
msgstr ""
|
||||
|
||||
msgid "CAPTCHA"
|
||||
msgstr ""
|
||||
|
||||
@ -465,6 +438,12 @@ msgstr ""
|
||||
msgid "Report"
|
||||
msgstr ""
|
||||
|
||||
msgid "Embed:"
|
||||
msgstr ""
|
||||
|
||||
msgid "File:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
@ -505,6 +484,9 @@ msgstr ""
|
||||
msgid "Delete Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
@ -514,31 +496,28 @@ msgstr ""
|
||||
msgid "Keywords"
|
||||
msgstr ""
|
||||
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderation Log"
|
||||
msgstr ""
|
||||
|
||||
msgid "Raw Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Rebuild All"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reports"
|
||||
msgstr ""
|
||||
|
||||
msgid "Staff Post"
|
||||
msgstr ""
|
||||
|
||||
msgid "Status"
|
||||
msgstr ""
|
||||
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change Password"
|
||||
msgid "Migrate Database"
|
||||
msgstr ""
|
||||
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
msgid "Log Out"
|
||||
@ -625,10 +604,13 @@ msgstr ""
|
||||
msgid "Expire(sec)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Reason"
|
||||
msgstr ""
|
||||
|
||||
msgid "never"
|
||||
msgstr ""
|
||||
|
||||
msgid "Optional."
|
||||
msgid "optional"
|
||||
msgstr ""
|
||||
|
||||
msgid "1 hour"
|
||||
@ -649,9 +631,6 @@ msgstr ""
|
||||
msgid "1 month"
|
||||
msgstr ""
|
||||
|
||||
msgid "Append a message to the post. Optional."
|
||||
msgstr ""
|
||||
|
||||
msgid "Set At"
|
||||
msgstr ""
|
||||
|
||||
@ -670,7 +649,7 @@ msgstr ""
|
||||
msgid "Post ID"
|
||||
msgstr ""
|
||||
|
||||
msgid "Tip"
|
||||
msgid "Tip:"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
@ -736,8 +715,7 @@ msgstr ""
|
||||
msgid "%d replies will be deleted."
|
||||
msgstr ""
|
||||
|
||||
#, php-format
|
||||
msgid "Belongs to %s"
|
||||
msgid "Belongs to "
|
||||
msgstr ""
|
||||
|
||||
msgid "Un-sticky"
|
||||
@ -792,6 +770,12 @@ msgstr ""
|
||||
msgid "Sorry, there doesn't appear to be a keyword with that ID."
|
||||
msgstr ""
|
||||
|
||||
msgid "Keyword"
|
||||
msgstr ""
|
||||
|
||||
msgid "Action:"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add"
|
||||
msgstr ""
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,10 +1,10 @@
|
||||
<?php
|
||||
/*
|
||||
TinyIB
|
||||
https://codeberg.org/tslocum/tinyib
|
||||
https://code.rocketnine.space/tslocum/tinyib
|
||||
|
||||
Support:
|
||||
https://codeberg.org/tslocum/tinyib/issues
|
||||
https://code.rocketnine.space/tslocum/tinyib/issues
|
||||
|
||||
See README for instructions on configuring, moderating and upgrading your board.
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user